import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataExoscaleComputeInstanceListConfig extends cdktf.TerraformMetaArguments { /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#created_at DataExoscaleComputeInstanceList#created_at} */ readonly createdAt?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#deploy_target_id DataExoscaleComputeInstanceList#deploy_target_id} */ readonly deployTargetId?: string; /** * Match against this int * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#disk_size DataExoscaleComputeInstanceList#disk_size} */ readonly diskSize?: number; /** * Match against this bool * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#enable_secure_boot DataExoscaleComputeInstanceList#enable_secure_boot} */ readonly enableSecureBoot?: boolean | cdktf.IResolvable; /** * Match against this bool * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#enable_tpm DataExoscaleComputeInstanceList#enable_tpm} */ readonly enableTpm?: boolean | cdktf.IResolvable; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#id DataExoscaleComputeInstanceList#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; /** * Match against this bool * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#ipv6 DataExoscaleComputeInstanceList#ipv6} */ readonly ipv6?: boolean | cdktf.IResolvable; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#ipv6_address DataExoscaleComputeInstanceList#ipv6_address} */ readonly ipv6Address?: string; /** * Match against key/values. Keys are matched exactly, while values may be matched as a regex if you supply a string that begins and ends with "/" * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#labels DataExoscaleComputeInstanceList#labels} */ readonly labels?: { [key: string]: string; }; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#manager_id DataExoscaleComputeInstanceList#manager_id} */ readonly managerId?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#manager_type DataExoscaleComputeInstanceList#manager_type} */ readonly managerType?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#name DataExoscaleComputeInstanceList#name} */ readonly name?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#public_ip_address DataExoscaleComputeInstanceList#public_ip_address} */ readonly publicIpAddress?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#reverse_dns DataExoscaleComputeInstanceList#reverse_dns} */ readonly reverseDns?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#ssh_key DataExoscaleComputeInstanceList#ssh_key} */ readonly sshKey?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#state DataExoscaleComputeInstanceList#state} */ readonly state?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#template_id DataExoscaleComputeInstanceList#template_id} */ readonly templateId?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#type DataExoscaleComputeInstanceList#type} */ readonly type?: string; /** * Match against this string. If you supply a string that begins and ends with a "/" it will be matched as a regex. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#user_data DataExoscaleComputeInstanceList#user_data} */ readonly userData?: string; /** * The Exoscale [Zone](https://www.exoscale.com/datacenters/) name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#zone DataExoscaleComputeInstanceList#zone} */ readonly zone: string; } export interface DataExoscaleComputeInstanceListInstances { } export declare function dataExoscaleComputeInstanceListInstancesToTerraform(struct?: DataExoscaleComputeInstanceListInstances): any; export declare function dataExoscaleComputeInstanceListInstancesToHclTerraform(struct?: DataExoscaleComputeInstanceListInstances): any; export declare class DataExoscaleComputeInstanceListInstancesOutputReference 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(): DataExoscaleComputeInstanceListInstances | undefined; set internalValue(value: DataExoscaleComputeInstanceListInstances | undefined); get antiAffinityGroupIds(): any; get createdAt(): any; get deployTargetId(): any; get diskSize(): any; get elasticIpIds(): any; get enableSecureBoot(): any; get enableTpm(): any; get id(): any; get ipv6(): any; get ipv6Address(): any; private _labels; get labels(): any; get managerId(): any; get managerType(): any; get name(): any; get privateNetworkIds(): any; get publicIpAddress(): any; get reverseDns(): any; get securityGroupIds(): any; get sshKey(): any; get sshKeys(): any; get state(): any; get templateId(): any; get type(): any; get userData(): any; get zone(): any; } export declare class DataExoscaleComputeInstanceListInstancesList 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): DataExoscaleComputeInstanceListInstancesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list exoscale_compute_instance_list} */ export declare class DataExoscaleComputeInstanceList extends cdktf.TerraformDataSource { static readonly tfResourceType = "exoscale_compute_instance_list"; /** * Generates CDKTF code for importing a DataExoscaleComputeInstanceList 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 DataExoscaleComputeInstanceList to import * @param importFromId The id of the existing DataExoscaleComputeInstanceList that should be imported. Refer to the {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataExoscaleComputeInstanceList 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/exoscale/exoscale/0.67.1/docs/data-sources/compute_instance_list exoscale_compute_instance_list} 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 DataExoscaleComputeInstanceListConfig */ constructor(scope: Construct, id: string, config: DataExoscaleComputeInstanceListConfig); private _createdAt?; get createdAt(): string; set createdAt(value: string); resetCreatedAt(): void; get createdAtInput(): string; private _deployTargetId?; get deployTargetId(): string; set deployTargetId(value: string); resetDeployTargetId(): void; get deployTargetIdInput(): string; private _diskSize?; get diskSize(): number; set diskSize(value: number); resetDiskSize(): void; get diskSizeInput(): number; private _enableSecureBoot?; get enableSecureBoot(): boolean | cdktf.IResolvable; set enableSecureBoot(value: boolean | cdktf.IResolvable); resetEnableSecureBoot(): void; get enableSecureBootInput(): any; private _enableTpm?; get enableTpm(): boolean | cdktf.IResolvable; set enableTpm(value: boolean | cdktf.IResolvable); resetEnableTpm(): void; get enableTpmInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instances; get instances(): DataExoscaleComputeInstanceListInstancesList; private _ipv6?; get ipv6(): boolean | cdktf.IResolvable; set ipv6(value: boolean | cdktf.IResolvable); resetIpv6(): void; get ipv6Input(): any; private _ipv6Address?; get ipv6Address(): string; set ipv6Address(value: string); resetIpv6Address(): void; get ipv6AddressInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; private _managerId?; get managerId(): string; set managerId(value: string); resetManagerId(): void; get managerIdInput(): string; private _managerType?; get managerType(): string; set managerType(value: string); resetManagerType(): void; get managerTypeInput(): 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 _reverseDns?; get reverseDns(): string; set reverseDns(value: string); resetReverseDns(): void; get reverseDnsInput(): string; private _sshKey?; get sshKey(): string; set sshKey(value: string); resetSshKey(): void; get sshKeyInput(): string; private _state?; get state(): string; set state(value: string); resetState(): void; get stateInput(): string; private _templateId?; get templateId(): string; set templateId(value: string); resetTemplateId(): void; get templateIdInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; private _userData?; get userData(): string; set userData(value: string); resetUserData(): void; get userDataInput(): string; private _zone?; get zone(): string; set zone(value: string); get zoneInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }