import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single FeatureOnlineStore. */ export declare function getFeatureOnlineStore(args: GetFeatureOnlineStoreArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetFeatureOnlineStoreArgs { featureOnlineStoreId: string; location: string; project?: string; } export interface GetFeatureOnlineStoreResult { /** * Contains settings for the Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore. */ readonly bigtable: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableResponse; /** * Timestamp when this FeatureOnlineStore was created. */ readonly createTime: string; /** * Optional. The dedicated serving endpoint for this FeatureOnlineStore, which is different from common Vertex service endpoint. */ readonly dedicatedServingEndpoint: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureOnlineStoreDedicatedServingEndpointResponse; /** * Optional. The settings for embedding management in FeatureOnlineStore. */ readonly embeddingManagement: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureOnlineStoreEmbeddingManagementResponse; /** * Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: string; /** * Optional. The labels with user-defined metadata to organize your FeatureOnlineStore. 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 FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */ readonly name: string; /** * Contains settings for the Optimized store that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore. When choose Optimized storage type, need to set PrivateServiceConnectConfig.enable_private_service_connect to use private endpoint. Otherwise will use public endpoint by default. */ readonly optimized: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1FeatureOnlineStoreOptimizedResponse; /** * State of the featureOnlineStore. */ readonly state: string; /** * Timestamp when this FeatureOnlineStore was last updated. */ readonly updateTime: string; } /** * Gets details of a single FeatureOnlineStore. */ export declare function getFeatureOnlineStoreOutput(args: GetFeatureOnlineStoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetFeatureOnlineStoreOutputArgs { featureOnlineStoreId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }