import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudVpnGatewaysConfig extends cdktf.TerraformMetaArguments { /** * ID of the VPN gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#id DataTencentcloudVpnGateways#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; /** * Name of the VPN gateway. The length of character is limited to 1-60. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#name DataTencentcloudVpnGateways#name} */ readonly name?: string; /** * Public ip address of the VPN gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#public_ip_address DataTencentcloudVpnGateways#public_ip_address} */ readonly publicIpAddress?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#result_output_file DataTencentcloudVpnGateways#result_output_file} */ readonly resultOutputFile?: string; /** * Tags of the VPN gateway to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#tags DataTencentcloudVpnGateways#tags} */ readonly tags?: { [key: string]: string; }; /** * ID of the VPC. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#vpc_id DataTencentcloudVpnGateways#vpc_id} */ readonly vpcId?: string; /** * Zone of the VPN gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#zone DataTencentcloudVpnGateways#zone} */ readonly zone?: string; } export interface DataTencentcloudVpnGatewaysGatewayListStruct { } export declare function dataTencentcloudVpnGatewaysGatewayListStructToTerraform(struct?: DataTencentcloudVpnGatewaysGatewayListStruct): any; export declare function dataTencentcloudVpnGatewaysGatewayListStructToHclTerraform(struct?: DataTencentcloudVpnGatewaysGatewayListStruct): any; export declare class DataTencentcloudVpnGatewaysGatewayListStructOutputReference 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(): DataTencentcloudVpnGatewaysGatewayListStruct | undefined; set internalValue(value: DataTencentcloudVpnGatewaysGatewayListStruct | undefined); get bandwidth(): any; get chargeType(): any; get createTime(): any; get expiredTime(): any; get id(): any; get isAddressBlocked(): any; get name(): any; get newPurchasePlan(): any; get prepaidRenewFlag(): any; get publicIpAddress(): any; get restrictState(): any; get state(): any; private _tags; get tags(): any; get type(): any; get vpcId(): any; get zone(): any; } export declare class DataTencentcloudVpnGatewaysGatewayListStructList 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): DataTencentcloudVpnGatewaysGatewayListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways tencentcloud_vpn_gateways} */ export declare class DataTencentcloudVpnGateways extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_vpn_gateways"; /** * Generates CDKTF code for importing a DataTencentcloudVpnGateways 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 DataTencentcloudVpnGateways to import * @param importFromId The id of the existing DataTencentcloudVpnGateways that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/vpn_gateways#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudVpnGateways 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/vpn_gateways tencentcloud_vpn_gateways} 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 DataTencentcloudVpnGatewaysConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudVpnGatewaysConfig); private _gatewayList; get gatewayList(): DataTencentcloudVpnGatewaysGatewayListStructList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _publicIpAddress?; get publicIpAddress(): string; set publicIpAddress(value: string); resetPublicIpAddress(): void; get publicIpAddressInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): 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); resetVpcId(): void; get vpcIdInput(): string; private _zone?; get zone(): string; set zone(value: string); resetZone(): void; get zoneInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }