import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudNatsConfig extends cdktf.TerraformMetaArguments { /** * The maximum public network output bandwidth of the gateway (unit: Mbps), for example: `10`, `20`, `50`, `100`, `200`, `500`, `1000`, `2000`, `5000`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#bandwidth DataTencentcloudNats#bandwidth} */ readonly bandwidth?: number; /** * The ID for NAT Gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#id DataTencentcloudNats#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 upper limit of concurrent connection of NAT gateway, for example: `1000000`, `3000000`, `10000000`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#max_concurrent DataTencentcloudNats#max_concurrent} */ readonly maxConcurrent?: number; /** * The name for NAT Gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#name DataTencentcloudNats#name} */ readonly name?: string; /** * NAT gateway status. Valid values: 0, 1, 2. 0: Running, 1: Unavailable, 2: Be in arrears and out of service. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#state DataTencentcloudNats#state} */ readonly state?: number; /** * The VPC ID for NAT Gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#vpc_id DataTencentcloudNats#vpc_id} */ readonly vpcId?: string; } export interface DataTencentcloudNatsNats { } export declare function dataTencentcloudNatsNatsToTerraform(struct?: DataTencentcloudNatsNats): any; export declare function dataTencentcloudNatsNatsToHclTerraform(struct?: DataTencentcloudNatsNats): any; export declare class DataTencentcloudNatsNatsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataTencentcloudNatsNats | undefined; set internalValue(value: DataTencentcloudNatsNats | undefined); get assignedEipSet(): any; get bandwidth(): any; get createTime(): any; get id(): any; get maxConcurrent(): any; get name(): any; get state(): any; get vpcId(): any; } export declare class DataTencentcloudNatsNatsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataTencentcloudNatsNatsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats tencentcloud_nats} */ export declare class DataTencentcloudNats extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_nats"; /** * Generates CDKTF code for importing a DataTencentcloudNats 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 DataTencentcloudNats to import * @param importFromId The id of the existing DataTencentcloudNats that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/nats#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudNats 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/data-sources/nats tencentcloud_nats} Data Source * * @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 DataTencentcloudNatsConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudNatsConfig); private _bandwidth?; get bandwidth(): number; set bandwidth(value: number); resetBandwidth(): void; get bandwidthInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _maxConcurrent?; get maxConcurrent(): number; set maxConcurrent(value: number); resetMaxConcurrent(): void; get maxConcurrentInput(): number; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _nats; get nats(): DataTencentcloudNatsNatsList; private _state?; get state(): number; set state(value: number); resetState(): void; get stateInput(): number; private _vpcId?; get vpcId(): string; set vpcId(value: string); resetVpcId(): void; get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }