import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataExoscaleElasticIpConfig extends cdktf.TerraformMetaArguments { /** * The Elastic IP (EIP) ID to match (conflicts with `ip_address` and `labels`). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/elastic_ip#id DataExoscaleElasticIp#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; /** * The EIP IPv4 or IPv6 address to match (conflicts with `id` and `labels`). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/elastic_ip#ip_address DataExoscaleElasticIp#ip_address} */ readonly ipAddress?: string; /** * The EIP labels to match (conflicts with `ip_address` and `id`). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/elastic_ip#labels DataExoscaleElasticIp#labels} */ readonly labels?: { [key: string]: string; }; /** * The Exocale [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/elastic_ip#zone DataExoscaleElasticIp#zone} */ readonly zone: string; } export interface DataExoscaleElasticIpHealthcheck { } export declare function dataExoscaleElasticIpHealthcheckToTerraform(struct?: DataExoscaleElasticIpHealthcheck): any; export declare function dataExoscaleElasticIpHealthcheckToHclTerraform(struct?: DataExoscaleElasticIpHealthcheck): any; export declare class DataExoscaleElasticIpHealthcheckOutputReference 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(): DataExoscaleElasticIpHealthcheck | undefined; set internalValue(value: DataExoscaleElasticIpHealthcheck | undefined); get interval(): any; get mode(): any; get port(): any; get strikesFail(): any; get strikesOk(): any; get timeout(): any; get tlsSkipVerify(): any; get tlsSni(): any; get uri(): any; } export declare class DataExoscaleElasticIpHealthcheckList 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): DataExoscaleElasticIpHealthcheckOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/elastic_ip exoscale_elastic_ip} */ export declare class DataExoscaleElasticIp extends cdktf.TerraformDataSource { static readonly tfResourceType = "exoscale_elastic_ip"; /** * Generates CDKTF code for importing a DataExoscaleElasticIp 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 DataExoscaleElasticIp to import * @param importFromId The id of the existing DataExoscaleElasticIp that should be imported. Refer to the {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/elastic_ip#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataExoscaleElasticIp 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/elastic_ip exoscale_elastic_ip} 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 DataExoscaleElasticIpConfig */ constructor(scope: Construct, id: string, config: DataExoscaleElasticIpConfig); get addressFamily(): any; get cidr(): any; get description(): any; private _healthcheck; get healthcheck(): DataExoscaleElasticIpHealthcheckList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ipAddress?; get ipAddress(): string; set ipAddress(value: string); resetIpAddress(): void; get ipAddressInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; get reverseDns(): any; private _zone?; get zone(): string; set zone(value: string); get zoneInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }