import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudEnisConfig extends cdktf.TerraformMetaArguments { /** * Description of the ENI. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#description DataTencentcloudEnis#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#id DataTencentcloudEnis#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 ENIs to be queried. Conflict with `vpc_id`,`subnet_id`,`instance_id`,`security_group`,`name`,`ipv4` and `tags`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#ids DataTencentcloudEnis#ids} */ readonly ids?: string[]; /** * ID of the instance which bind the ENI. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#instance_id DataTencentcloudEnis#instance_id} */ readonly instanceId?: string; /** * Intranet IP of the ENI. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#ipv4 DataTencentcloudEnis#ipv4} */ readonly ipv4?: string; /** * Name of the ENI to be queried. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#name DataTencentcloudEnis#name} */ readonly name?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#result_output_file DataTencentcloudEnis#result_output_file} */ readonly resultOutputFile?: string; /** * A set of security group IDs which bind the ENI. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#security_group DataTencentcloudEnis#security_group} */ readonly securityGroup?: string; /** * ID of the subnet within this vpc to be queried. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#subnet_id DataTencentcloudEnis#subnet_id} */ readonly subnetId?: string; /** * Tags of the ENI. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#tags DataTencentcloudEnis#tags} */ readonly tags?: { [key: string]: string; }; /** * ID of the vpc to be queried. Conflict with `ids`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#vpc_id DataTencentcloudEnis#vpc_id} */ readonly vpcId?: string; } export interface DataTencentcloudEnisEnisIpv4S { } export declare function dataTencentcloudEnisEnisIpv4SToTerraform(struct?: DataTencentcloudEnisEnisIpv4S): any; export declare function dataTencentcloudEnisEnisIpv4SToHclTerraform(struct?: DataTencentcloudEnisEnisIpv4S): any; export declare class DataTencentcloudEnisEnisIpv4SOutputReference 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(): DataTencentcloudEnisEnisIpv4S | undefined; set internalValue(value: DataTencentcloudEnisEnisIpv4S | undefined); get description(): any; get ip(): any; get primary(): any; } export declare class DataTencentcloudEnisEnisIpv4SList 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): DataTencentcloudEnisEnisIpv4SOutputReference; } export interface DataTencentcloudEnisEnisIpv6S { } export declare function dataTencentcloudEnisEnisIpv6SToTerraform(struct?: DataTencentcloudEnisEnisIpv6S): any; export declare function dataTencentcloudEnisEnisIpv6SToHclTerraform(struct?: DataTencentcloudEnisEnisIpv6S): any; export declare class DataTencentcloudEnisEnisIpv6SOutputReference 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(): DataTencentcloudEnisEnisIpv6S | undefined; set internalValue(value: DataTencentcloudEnisEnisIpv6S | undefined); get address(): any; get addressId(): any; get description(): any; get isWanIpBlocked(): any; get primary(): any; } export declare class DataTencentcloudEnisEnisIpv6SList 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): DataTencentcloudEnisEnisIpv6SOutputReference; } export interface DataTencentcloudEnisEnis { } export declare function dataTencentcloudEnisEnisToTerraform(struct?: DataTencentcloudEnisEnis): any; export declare function dataTencentcloudEnisEnisToHclTerraform(struct?: DataTencentcloudEnisEnis): any; export declare class DataTencentcloudEnisEnisOutputReference 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(): DataTencentcloudEnisEnis | undefined; set internalValue(value: DataTencentcloudEnisEnis | undefined); get cdcId(): any; get createTime(): any; get description(): any; get id(): any; get instanceId(): any; private _ipv4S; get ipv4S(): DataTencentcloudEnisEnisIpv4SList; private _ipv6S; get ipv6S(): DataTencentcloudEnisEnisIpv6SList; get mac(): any; get name(): any; get primary(): any; get securityGroups(): any; get state(): any; get subnetId(): any; private _tags; get tags(): any; get vpcId(): any; } export declare class DataTencentcloudEnisEnisList 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): DataTencentcloudEnisEnisOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis tencentcloud_enis} */ export declare class DataTencentcloudEnis extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_enis"; /** * Generates CDKTF code for importing a DataTencentcloudEnis 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 DataTencentcloudEnis to import * @param importFromId The id of the existing DataTencentcloudEnis that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/enis#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudEnis 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/enis tencentcloud_enis} 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 DataTencentcloudEnisConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudEnisConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _enis; get enis(): DataTencentcloudEnisEnisList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ids?; get ids(): string[]; set ids(value: string[]); resetIds(): void; get idsInput(): string[]; private _instanceId?; get instanceId(): string; set instanceId(value: string); resetInstanceId(): void; get instanceIdInput(): string; private _ipv4?; get ipv4(): string; set ipv4(value: string); resetIpv4(): void; get ipv4Input(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _securityGroup?; get securityGroup(): string; set securityGroup(value: string); resetSecurityGroup(): void; get securityGroupInput(): 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; }; }