import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudDnatsConfig extends cdktf.TerraformMetaArguments { /** * Description of the NAT forward. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#description DataTencentcloudDnats#description} */ readonly description?: string; /** * Network address of the EIP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#elastic_ip DataTencentcloudDnats#elastic_ip} */ readonly elasticIp?: string; /** * Port of the EIP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#elastic_port DataTencentcloudDnats#elastic_port} */ readonly elasticPort?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#id DataTencentcloudDnats#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 NAT gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#nat_id DataTencentcloudDnats#nat_id} */ readonly natId?: string; /** * Network address of the backend service. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#private_ip DataTencentcloudDnats#private_ip} */ readonly privateIp?: string; /** * Port of intranet. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#private_port DataTencentcloudDnats#private_port} */ readonly privatePort?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#result_output_file DataTencentcloudDnats#result_output_file} */ readonly resultOutputFile?: string; /** * ID of the VPC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#vpc_id DataTencentcloudDnats#vpc_id} */ readonly vpcId?: string; } export interface DataTencentcloudDnatsDnatListStruct { } export declare function dataTencentcloudDnatsDnatListStructToTerraform(struct?: DataTencentcloudDnatsDnatListStruct): any; export declare function dataTencentcloudDnatsDnatListStructToHclTerraform(struct?: DataTencentcloudDnatsDnatListStruct): any; export declare class DataTencentcloudDnatsDnatListStructOutputReference 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(): DataTencentcloudDnatsDnatListStruct | undefined; set internalValue(value: DataTencentcloudDnatsDnatListStruct | undefined); get description(): any; get elasticIp(): any; get elasticPort(): any; get natId(): any; get privateIp(): any; get privatePort(): any; get protocol(): any; get vpcId(): any; } export declare class DataTencentcloudDnatsDnatListStructList 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): DataTencentcloudDnatsDnatListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats tencentcloud_dnats} */ export declare class DataTencentcloudDnats extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_dnats"; /** * Generates CDKTF code for importing a DataTencentcloudDnats 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 DataTencentcloudDnats to import * @param importFromId The id of the existing DataTencentcloudDnats that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnats#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudDnats 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/dnats tencentcloud_dnats} 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 DataTencentcloudDnatsConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudDnatsConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _dnatList; get dnatList(): DataTencentcloudDnatsDnatListStructList; private _elasticIp?; get elasticIp(): string; set elasticIp(value: string); resetElasticIp(): void; get elasticIpInput(): string; private _elasticPort?; get elasticPort(): string; set elasticPort(value: string); resetElasticPort(): void; get elasticPortInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _natId?; get natId(): string; set natId(value: string); resetNatId(): void; get natIdInput(): string; private _privateIp?; get privateIp(): string; set privateIp(value: string); resetPrivateIp(): void; get privateIpInput(): string; private _privatePort?; get privatePort(): string; set privatePort(value: string); resetPrivatePort(): void; get privatePortInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); resetVpcId(): void; get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }