import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single FeatureView. */ export declare function getFeatureView(args: GetFeatureViewArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetFeatureViewArgs { featureOnlineStoreId: string; featureViewId: string; location: string; project?: string; } export interface GetFeatureViewResult { /** * Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */ readonly bigQuerySource: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureViewBigQuerySourceResponse; /** * Timestamp when this FeatureView was created. */ readonly createTime: string; /** * Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: string; /** * Optional. Configures the features from a Feature Registry source that need to be loaded onto the FeatureOnlineStore. */ readonly featureRegistrySource: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceResponse; /** * Optional. The labels with user-defined metadata to organize your FeatureViews. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one FeatureOnlineStore(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */ readonly labels: { [key: string]: string; }; /** * Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */ readonly name: string; /** * Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving. */ readonly syncConfig: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureViewSyncConfigResponse; /** * Timestamp when this FeatureView was last updated. */ readonly updateTime: string; /** * Optional. Configuration for vector search. It contains the required configurations to create an index from source data, so that approximate nearest neighbor (a.k.a ANN) algorithms search can be performed during online serving. */ readonly vectorSearchConfig: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigResponse; } /** * Gets details of a single FeatureView. */ export declare function getFeatureViewOutput(args: GetFeatureViewOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetFeatureViewOutputArgs { featureOnlineStoreId: pulumi.Input; featureViewId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }