import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single FeatureGroup. */ export declare function getFeatureGroup(args: GetFeatureGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetFeatureGroupArgs { featureGroupId: string; location: string; project?: string; } export interface GetFeatureGroupResult { /** * Indicates that features for this group come from BigQuery Table/View. By default treats the source as a sparse time series source, which is required to have an entity_id and a feature_timestamp column in the source. */ readonly bigQuery: outputs.aiplatform.v1.GoogleCloudAiplatformV1FeatureGroupBigQueryResponse; /** * Timestamp when this FeatureGroup was created. */ readonly createTime: string; /** * Optional. Description of the FeatureGroup. */ readonly description: 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 FeatureGroup. 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 FeatureGroup(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 FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */ readonly name: string; /** * Timestamp when this FeatureGroup was last updated. */ readonly updateTime: string; } /** * Gets details of a single FeatureGroup. */ export declare function getFeatureGroupOutput(args: GetFeatureGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetFeatureGroupOutputArgs { featureGroupId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }