import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SubnetConfig extends cdktf.TerraformMetaArguments { /** * The availability zone within which the subnet should be created. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#availability_zone Subnet#availability_zone} */ readonly availabilityZone: string; /** * ID of CDC instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#cdc_id Subnet#cdc_id} */ readonly cdcId?: string; /** * A network address block of the subnet. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#cidr_block Subnet#cidr_block} */ readonly cidrBlock: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#id Subnet#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; /** * Indicates whether multicast is enabled. The default value is 'true'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#is_multicast Subnet#is_multicast} */ readonly isMulticast?: boolean | cdktf.IResolvable; /** * The name of subnet to be created. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#name Subnet#name} */ readonly name: string; /** * ID of a routing table to which the subnet should be associated. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#route_table_id Subnet#route_table_id} */ readonly routeTableId?: string; /** * Tags of the subnet. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#tags Subnet#tags} */ readonly tags?: { [key: string]: string; }; /** * ID of the VPC to be associated. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#vpc_id Subnet#vpc_id} */ readonly vpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet tencentcloud_subnet} */ export declare class Subnet extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_subnet"; /** * Generates CDKTF code for importing a Subnet 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 Subnet to import * @param importFromId The id of the existing Subnet that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/subnet#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Subnet 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/subnet tencentcloud_subnet} 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 SubnetConfig */ constructor(scope: Construct, id: string, config: SubnetConfig); private _availabilityZone?; get availabilityZone(): string; set availabilityZone(value: string); get availabilityZoneInput(): string; get availableIpCount(): any; private _cdcId?; get cdcId(): string; set cdcId(value: string); resetCdcId(): void; get cdcIdInput(): string; private _cidrBlock?; get cidrBlock(): string; set cidrBlock(value: string); get cidrBlockInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get isDefault(): any; private _isMulticast?; get isMulticast(): boolean | cdktf.IResolvable; set isMulticast(value: boolean | cdktf.IResolvable); resetIsMulticast(): void; get isMulticastInput(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _routeTableId?; get routeTableId(): string; set routeTableId(value: string); resetRouteTableId(): void; get routeTableIdInput(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }