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.v1.GoogleCloudAiplatformV1FeatureOnlineStoreBigtableResponse; /** * Timestamp when this FeatureOnlineStore 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. 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; /** * 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; }