UNPKG

@cdktf/provider-google

Version:

Prebuilt google Provider for Terraform CDK (cdktf)

191 lines (190 loc) 9.32 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VertexAiFeatureGroupFeatureConfig extends cdktf.TerraformMetaArguments { /** * The description of the FeatureGroup. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#description VertexAiFeatureGroupFeature#description} */ readonly description?: string; /** * The name of the Feature Group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#feature_group VertexAiFeatureGroupFeature#feature_group} */ readonly featureGroup: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#id VertexAiFeatureGroupFeature#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * The labels with user-defined metadata to organize your FeatureGroup. * * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration. * Please refer to the field 'effective_labels' for all of the labels present on the resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#labels VertexAiFeatureGroupFeature#labels} */ readonly labels?: { [key: string]: string; }; /** * The resource name of the Feature Group Feature. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#name VertexAiFeatureGroupFeature#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#project VertexAiFeatureGroupFeature#project} */ readonly project?: string; /** * The region for the resource. It should be the same as the feature group's region. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#region VertexAiFeatureGroupFeature#region} */ readonly region: string; /** * The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#version_column_name VertexAiFeatureGroupFeature#version_column_name} */ readonly versionColumnName?: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#timeouts VertexAiFeatureGroupFeature#timeouts} */ readonly timeouts?: VertexAiFeatureGroupFeatureTimeouts; } export interface VertexAiFeatureGroupFeatureTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#create VertexAiFeatureGroupFeature#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#delete VertexAiFeatureGroupFeature#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#update VertexAiFeatureGroupFeature#update} */ readonly update?: string; } export declare function vertexAiFeatureGroupFeatureTimeoutsToTerraform(struct?: VertexAiFeatureGroupFeatureTimeouts | cdktf.IResolvable): any; export declare function vertexAiFeatureGroupFeatureTimeoutsToHclTerraform(struct?: VertexAiFeatureGroupFeatureTimeouts | cdktf.IResolvable): any; export declare class VertexAiFeatureGroupFeatureTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): VertexAiFeatureGroupFeatureTimeouts | cdktf.IResolvable | undefined; set internalValue(value: VertexAiFeatureGroupFeatureTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature google_vertex_ai_feature_group_feature} */ export declare class VertexAiFeatureGroupFeature extends cdktf.TerraformResource { static readonly tfResourceType = "google_vertex_ai_feature_group_feature"; /** * Generates CDKTF code for importing a VertexAiFeatureGroupFeature resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the VertexAiFeatureGroupFeature to import * @param importFromId The id of the existing VertexAiFeatureGroupFeature that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VertexAiFeatureGroupFeature to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/vertex_ai_feature_group_feature google_vertex_ai_feature_group_feature} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options VertexAiFeatureGroupFeatureConfig */ constructor(scope: Construct, id: string, config: VertexAiFeatureGroupFeatureConfig); get createTime(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _effectiveLabels; get effectiveLabels(): cdktf.StringMap; private _featureGroup?; get featureGroup(): string; set featureGroup(value: string); get featureGroupInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; } | undefined; private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _project?; get project(): string; set project(value: string); resetProject(): void; get projectInput(): string | undefined; private _region?; get region(): string; set region(value: string); get regionInput(): string | undefined; private _terraformLabels; get terraformLabels(): cdktf.StringMap; get updateTime(): string; private _versionColumnName?; get versionColumnName(): string; set versionColumnName(value: string); resetVersionColumnName(): void; get versionColumnNameInput(): string | undefined; private _timeouts; get timeouts(): VertexAiFeatureGroupFeatureTimeoutsOutputReference; putTimeouts(value: VertexAiFeatureGroupFeatureTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | VertexAiFeatureGroupFeatureTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }