import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcrVpcAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Whether to enable public domain dns. Default value is `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#enable_public_domain_dns TcrVpcAttachment#enable_public_domain_dns} */ readonly enablePublicDomainDns?: boolean | cdktf.IResolvable; /** * Whether to enable vpc domain dns. Default value is `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#enable_vpc_domain_dns TcrVpcAttachment#enable_vpc_domain_dns} */ readonly enableVpcDomainDns?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#id TcrVpcAttachment#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; /** * ID of the TCR instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#instance_id TcrVpcAttachment#instance_id} */ readonly instanceId: string; /** * ID of region. Conflict with region_name, can not be set at the same time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#region_id TcrVpcAttachment#region_id} */ readonly regionId?: number; /** * Name of region. Conflict with region_id, can not be set at the same time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#region_name TcrVpcAttachment#region_name} */ readonly regionName?: string; /** * ID of subnet. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#subnet_id TcrVpcAttachment#subnet_id} */ readonly subnetId: string; /** * ID of VPC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#vpc_id TcrVpcAttachment#vpc_id} */ readonly vpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment tencentcloud_tcr_vpc_attachment} */ export declare class TcrVpcAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcr_vpc_attachment"; /** * Generates CDKTF code for importing a TcrVpcAttachment resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the TcrVpcAttachment to import * @param importFromId The id of the existing TcrVpcAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcrVpcAttachment to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_vpc_attachment tencentcloud_tcr_vpc_attachment} 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 TcrVpcAttachmentConfig */ constructor(scope: Construct, id: string, config: TcrVpcAttachmentConfig); get accessIp(): any; private _enablePublicDomainDns?; get enablePublicDomainDns(): boolean | cdktf.IResolvable; set enablePublicDomainDns(value: boolean | cdktf.IResolvable); resetEnablePublicDomainDns(): void; get enablePublicDomainDnsInput(): any; private _enableVpcDomainDns?; get enableVpcDomainDns(): boolean | cdktf.IResolvable; set enableVpcDomainDns(value: boolean | cdktf.IResolvable); resetEnableVpcDomainDns(): void; get enableVpcDomainDnsInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _regionId?; get regionId(): number; set regionId(value: number); resetRegionId(): void; get regionIdInput(): number; private _regionName?; get regionName(): string; set regionName(value: string); resetRegionName(): void; get regionNameInput(): string; get status(): any; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }