import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudInstancesConfig extends cdktf.TerraformMetaArguments { /** * The available zone that the CVM instance locates at. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#availability_zone DataTencentcloudInstances#availability_zone} */ readonly availabilityZone?: string; /** * Exclusive cluster id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#dedicated_cluster_id DataTencentcloudInstances#dedicated_cluster_id} */ readonly dedicatedClusterId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#id DataTencentcloudInstances#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 instances to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#instance_id DataTencentcloudInstances#instance_id} */ readonly instanceId?: string; /** * Name of the instances to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#instance_name DataTencentcloudInstances#instance_name} */ readonly instanceName?: string; /** * Instance set ids, max length is 100, conflict with other field. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#instance_set_ids DataTencentcloudInstances#instance_set_ids} */ readonly instanceSetIds?: string[]; /** * The project CVM belongs to. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#project_id DataTencentcloudInstances#project_id} */ readonly projectId?: number; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#result_output_file DataTencentcloudInstances#result_output_file} */ readonly resultOutputFile?: string; /** * ID of a vpc subnetwork. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#subnet_id DataTencentcloudInstances#subnet_id} */ readonly subnetId?: string; /** * Tags of the instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#tags DataTencentcloudInstances#tags} */ readonly tags?: { [key: string]: string; }; /** * ID of the vpc to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#vpc_id DataTencentcloudInstances#vpc_id} */ readonly vpcId?: string; } export interface DataTencentcloudInstancesInstanceListDataDisks { } export declare function dataTencentcloudInstancesInstanceListDataDisksToTerraform(struct?: DataTencentcloudInstancesInstanceListDataDisks): any; export declare function dataTencentcloudInstancesInstanceListDataDisksToHclTerraform(struct?: DataTencentcloudInstancesInstanceListDataDisks): any; export declare class DataTencentcloudInstancesInstanceListDataDisksOutputReference 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(): DataTencentcloudInstancesInstanceListDataDisks | undefined; set internalValue(value: DataTencentcloudInstancesInstanceListDataDisks | undefined); get dataDiskId(): any; get dataDiskSize(): any; get dataDiskType(): any; get deleteWithInstance(): any; } export declare class DataTencentcloudInstancesInstanceListDataDisksList 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): DataTencentcloudInstancesInstanceListDataDisksOutputReference; } export interface DataTencentcloudInstancesInstanceListStruct { } export declare function dataTencentcloudInstancesInstanceListStructToTerraform(struct?: DataTencentcloudInstancesInstanceListStruct): any; export declare function dataTencentcloudInstancesInstanceListStructToHclTerraform(struct?: DataTencentcloudInstancesInstanceListStruct): any; export declare class DataTencentcloudInstancesInstanceListStructOutputReference 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(): DataTencentcloudInstancesInstanceListStruct | undefined; set internalValue(value: DataTencentcloudInstancesInstanceListStruct | undefined); get allocatePublicIp(): any; get availabilityZone(): any; get camRoleName(): any; get cpu(): any; get createTime(): any; private _dataDisks; get dataDisks(): DataTencentcloudInstancesInstanceListDataDisksList; get dedicatedClusterId(): any; get expiredTime(): any; get imageId(): any; get instanceChargeType(): any; get instanceChargeTypePrepaidRenewFlag(): any; get instanceId(): any; get instanceName(): any; get instanceType(): any; get internetChargeType(): any; get internetMaxBandwidthOut(): any; get memory(): any; get osName(): any; get privateIp(): any; get projectId(): any; get publicIp(): any; get securityGroups(): any; get status(): any; get subnetId(): any; get systemDiskId(): any; get systemDiskSize(): any; get systemDiskType(): any; private _tags; get tags(): any; get uuid(): any; get vpcId(): any; } export declare class DataTencentcloudInstancesInstanceListStructList 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): DataTencentcloudInstancesInstanceListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances tencentcloud_instances} */ export declare class DataTencentcloudInstances extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_instances"; /** * Generates CDKTF code for importing a DataTencentcloudInstances 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 DataTencentcloudInstances to import * @param importFromId The id of the existing DataTencentcloudInstances that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/instances#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudInstances 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/instances tencentcloud_instances} 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 DataTencentcloudInstancesConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudInstancesConfig); private _availabilityZone?; get availabilityZone(): string; set availabilityZone(value: string); resetAvailabilityZone(): void; get availabilityZoneInput(): string; private _dedicatedClusterId?; get dedicatedClusterId(): string; set dedicatedClusterId(value: string); resetDedicatedClusterId(): void; get dedicatedClusterIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); resetInstanceId(): void; get instanceIdInput(): string; private _instanceList; get instanceList(): DataTencentcloudInstancesInstanceListStructList; private _instanceName?; get instanceName(): string; set instanceName(value: string); resetInstanceName(): void; get instanceNameInput(): string; private _instanceSetIds?; get instanceSetIds(): string[]; set instanceSetIds(value: string[]); resetInstanceSetIds(): void; get instanceSetIdsInput(): string[]; private _projectId?; get projectId(): number; set projectId(value: number); resetProjectId(): void; get projectIdInput(): number; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _subnetId?; get subnetId(): string; set subnetId(value: string); resetSubnetId(): void; get subnetIdInput(): 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; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }