import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcIpv6SubnetCidrBlockConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block#id VpcIpv6SubnetCidrBlock#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 private network `ID` where the subnet is located. Such as:`vpc-f49l6u0z`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block#vpc_id VpcIpv6SubnetCidrBlock#vpc_id} */ readonly vpcId: string; /** * ipv6_subnet_cidr_blocks block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block#ipv6_subnet_cidr_blocks VpcIpv6SubnetCidrBlock#ipv6_subnet_cidr_blocks} */ readonly ipv6SubnetCidrBlocks: VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks; } export interface VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks { /** * `IPv6` subnet segment. Such as: `3402:4e00:20:1001::/64`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block#ipv6_cidr_block VpcIpv6SubnetCidrBlock#ipv6_cidr_block} */ readonly ipv6CidrBlock: string; /** * Subnet instance `ID`. Such as:`subnet-pxir56ns`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block#subnet_id VpcIpv6SubnetCidrBlock#subnet_id} */ readonly subnetId: string; } export declare function vpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocksToTerraform(struct?: VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocksOutputReference | VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks): any; export declare function vpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocksToHclTerraform(struct?: VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocksOutputReference | VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks): any; export declare class VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocksOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks | undefined; set internalValue(value: VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks | undefined); private _ipv6CidrBlock?; get ipv6CidrBlock(): string; set ipv6CidrBlock(value: string); get ipv6CidrBlockInput(): string; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block tencentcloud_vpc_ipv6_subnet_cidr_block} */ export declare class VpcIpv6SubnetCidrBlock extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpc_ipv6_subnet_cidr_block"; /** * Generates CDKTF code for importing a VpcIpv6SubnetCidrBlock 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 VpcIpv6SubnetCidrBlock to import * @param importFromId The id of the existing VpcIpv6SubnetCidrBlock that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_ipv6_subnet_cidr_block#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcIpv6SubnetCidrBlock 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/vpc_ipv6_subnet_cidr_block tencentcloud_vpc_ipv6_subnet_cidr_block} 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 VpcIpv6SubnetCidrBlockConfig */ constructor(scope: Construct, id: string, config: VpcIpv6SubnetCidrBlockConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; private _ipv6SubnetCidrBlocks; get ipv6SubnetCidrBlocks(): VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocksOutputReference; putIpv6SubnetCidrBlocks(value: VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks): void; get ipv6SubnetCidrBlocksInput(): VpcIpv6SubnetCidrBlockIpv6SubnetCidrBlocks; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }