import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataYandexVpcAddressConfig extends cdktf.TerraformMetaArguments { /** * ID of the address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address#address_id DataYandexVpcAddress#address_id} */ readonly addressId?: string; /** * The folder identifier that resource belongs to. If it is not provided, the default provider `folder-id` is used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address#folder_id DataYandexVpcAddress#folder_id} */ readonly folderId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address#id DataYandexVpcAddress#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 resource name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address#name DataYandexVpcAddress#name} */ readonly name?: string; } export interface DataYandexVpcAddressDnsRecord { } export declare function dataYandexVpcAddressDnsRecordToTerraform(struct?: DataYandexVpcAddressDnsRecord): any; export declare function dataYandexVpcAddressDnsRecordToHclTerraform(struct?: DataYandexVpcAddressDnsRecord): any; export declare class DataYandexVpcAddressDnsRecordOutputReference 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(): DataYandexVpcAddressDnsRecord | undefined; set internalValue(value: DataYandexVpcAddressDnsRecord | undefined); get dnsZoneId(): any; get fqdn(): any; get ptr(): any; get ttl(): any; } export declare class DataYandexVpcAddressDnsRecordList 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): DataYandexVpcAddressDnsRecordOutputReference; } export interface DataYandexVpcAddressExternalIpv4Address { } export declare function dataYandexVpcAddressExternalIpv4AddressToTerraform(struct?: DataYandexVpcAddressExternalIpv4Address): any; export declare function dataYandexVpcAddressExternalIpv4AddressToHclTerraform(struct?: DataYandexVpcAddressExternalIpv4Address): any; export declare class DataYandexVpcAddressExternalIpv4AddressOutputReference 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(): DataYandexVpcAddressExternalIpv4Address | undefined; set internalValue(value: DataYandexVpcAddressExternalIpv4Address | undefined); get address(): any; get ddosProtectionProvider(): any; get outgoingSmtpCapability(): any; get zoneId(): any; } export declare class DataYandexVpcAddressExternalIpv4AddressList 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): DataYandexVpcAddressExternalIpv4AddressOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address yandex_vpc_address} */ export declare class DataYandexVpcAddress extends cdktf.TerraformDataSource { static readonly tfResourceType = "yandex_vpc_address"; /** * Generates CDKTF code for importing a DataYandexVpcAddress 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 DataYandexVpcAddress to import * @param importFromId The id of the existing DataYandexVpcAddress that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataYandexVpcAddress 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/yandex-cloud/yandex/0.177.0/docs/data-sources/vpc_address yandex_vpc_address} 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 DataYandexVpcAddressConfig = {} */ constructor(scope: Construct, id: string, config?: DataYandexVpcAddressConfig); private _addressId?; get addressId(): string; set addressId(value: string); resetAddressId(): void; get addressIdInput(): string; get createdAt(): any; get deletionProtection(): any; get description(): any; private _dnsRecord; get dnsRecord(): DataYandexVpcAddressDnsRecordList; private _externalIpv4Address; get externalIpv4Address(): DataYandexVpcAddressExternalIpv4AddressList; private _folderId?; get folderId(): string; set folderId(value: string); resetFolderId(): void; get folderIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _labels; get labels(): any; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; get reserved(): any; get used(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }