import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new Feature in a given EntityType. */ export declare class FeatureStoreFeature extends pulumi.CustomResource { /** * Get an existing FeatureStoreFeature resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): FeatureStoreFeature; /** * Returns true if the given object is an instance of FeatureStoreFeature. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FeatureStoreFeature; /** * Only applicable for Vertex AI Feature Store (Legacy). Timestamp when this EntityType was created. */ readonly createTime: pulumi.Output; /** * Description of the Feature. */ readonly description: pulumi.Output; /** * Optional. Only applicable for Vertex AI Feature Store (Legacy). If not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If set to true, all types of data monitoring are disabled despite the config on EntityType. */ readonly disableMonitoring: pulumi.Output; readonly entityTypeId: pulumi.Output; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: pulumi.Output; /** * Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup. */ readonly featureId: pulumi.Output; readonly featurestoreId: pulumi.Output; /** * Optional. The labels with user-defined metadata to organize your Features. 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 Feature (System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Only applicable for Vertex AI Feature Store (Legacy). The list of historical stats and anomalies with specified objectives. */ readonly monitoringStatsAnomalies: pulumi.Output; /** * Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}` The last part feature is assigned by the client. The feature can be up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will be unique given an entity type. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Only applicable for Vertex AI Feature Store (Legacy). Timestamp when this EntityType was most recently updated. */ readonly updateTime: pulumi.Output; /** * Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. */ readonly valueType: pulumi.Output; /** * Only applicable for Vertex AI Feature Store. The name of the BigQuery Table/View columnn hosting data for this version. If no value is provided, will use feature_id. */ readonly versionColumnName: pulumi.Output; /** * Create a FeatureStoreFeature resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FeatureStoreFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FeatureStoreFeature resource. */ export interface FeatureStoreFeatureArgs { /** * Description of the Feature. */ description?: pulumi.Input; /** * Optional. Only applicable for Vertex AI Feature Store (Legacy). If not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If set to true, all types of data monitoring are disabled despite the config on EntityType. */ disableMonitoring?: pulumi.Input; entityTypeId: pulumi.Input; /** * Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ etag?: pulumi.Input; /** * Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup. */ featureId: pulumi.Input; featurestoreId: pulumi.Input; /** * Optional. The labels with user-defined metadata to organize your Features. 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 Feature (System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}` The last part feature is assigned by the client. The feature can be up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will be unique given an entity type. */ name?: pulumi.Input; project?: pulumi.Input; /** * Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. */ valueType?: pulumi.Input; /** * Only applicable for Vertex AI Feature Store. The name of the BigQuery Table/View columnn hosting data for this version. If no value is provided, will use feature_id. */ versionColumnName?: pulumi.Input; }