import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcAddressConfig extends cdktf.TerraformMetaArguments { /** * The `true` value means that resource is protected from accidental deletion. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#deletion_protection VpcAddress#deletion_protection} */ readonly deletionProtection?: boolean | cdktf.IResolvable; /** * The resource description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#description VpcAddress#description} */ readonly description?: 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/resources/vpc_address#folder_id VpcAddress#folder_id} */ readonly folderId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#id VpcAddress#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; /** * A set of key/value label pairs which assigned to resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#labels VpcAddress#labels} */ readonly labels?: { [key: string]: string; }; /** * The resource name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#name VpcAddress#name} */ readonly name?: string; /** * dns_record block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#dns_record VpcAddress#dns_record} */ readonly dnsRecord?: VpcAddressDnsRecord[] | cdktf.IResolvable; /** * external_ipv4_address block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#external_ipv4_address VpcAddress#external_ipv4_address} */ readonly externalIpv4Address?: VpcAddressExternalIpv4Address; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#timeouts VpcAddress#timeouts} */ readonly timeouts?: VpcAddressTimeouts; } export interface VpcAddressDnsRecord { /** * DNS zone id to create record at. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#dns_zone_id VpcAddress#dns_zone_id} */ readonly dnsZoneId: string; /** * FQDN for record to address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#fqdn VpcAddress#fqdn} */ readonly fqdn: string; /** * If PTR record is needed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#ptr VpcAddress#ptr} */ readonly ptr?: boolean | cdktf.IResolvable; /** * TTL of DNS record. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#ttl VpcAddress#ttl} */ readonly ttl?: number; } export declare function vpcAddressDnsRecordToTerraform(struct?: VpcAddressDnsRecord | cdktf.IResolvable): any; export declare function vpcAddressDnsRecordToHclTerraform(struct?: VpcAddressDnsRecord | cdktf.IResolvable): any; export declare class VpcAddressDnsRecordOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): VpcAddressDnsRecord | cdktf.IResolvable | undefined; set internalValue(value: VpcAddressDnsRecord | cdktf.IResolvable | undefined); private _dnsZoneId?; get dnsZoneId(): string; set dnsZoneId(value: string); get dnsZoneIdInput(): string; private _fqdn?; get fqdn(): string; set fqdn(value: string); get fqdnInput(): string; private _ptr?; get ptr(): boolean | cdktf.IResolvable; set ptr(value: boolean | cdktf.IResolvable); resetPtr(): void; get ptrInput(): any; private _ttl?; get ttl(): number; set ttl(value: number); resetTtl(): void; get ttlInput(): number; } export declare class VpcAddressDnsRecordList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: VpcAddressDnsRecord[] | cdktf.IResolvable; /** * @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): VpcAddressDnsRecordOutputReference; } export interface VpcAddressExternalIpv4Address { /** * Enable DDOS protection. Possible values are: `qrator` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#ddos_protection_provider VpcAddress#ddos_protection_provider} */ readonly ddosProtectionProvider?: string; /** * Wanted outgoing smtp capability. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#outgoing_smtp_capability VpcAddress#outgoing_smtp_capability} */ readonly outgoingSmtpCapability?: string; /** * The [availability zone](https://yandex.cloud/docs/overview/concepts/geo-scope) where resource is located. If it is not provided, the default provider zone will be used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#zone_id VpcAddress#zone_id} */ readonly zoneId?: string; } export declare function vpcAddressExternalIpv4AddressToTerraform(struct?: VpcAddressExternalIpv4AddressOutputReference | VpcAddressExternalIpv4Address): any; export declare function vpcAddressExternalIpv4AddressToHclTerraform(struct?: VpcAddressExternalIpv4AddressOutputReference | VpcAddressExternalIpv4Address): any; export declare class VpcAddressExternalIpv4AddressOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): VpcAddressExternalIpv4Address | undefined; set internalValue(value: VpcAddressExternalIpv4Address | undefined); get address(): any; private _ddosProtectionProvider?; get ddosProtectionProvider(): string; set ddosProtectionProvider(value: string); resetDdosProtectionProvider(): void; get ddosProtectionProviderInput(): string; private _outgoingSmtpCapability?; get outgoingSmtpCapability(): string; set outgoingSmtpCapability(value: string); resetOutgoingSmtpCapability(): void; get outgoingSmtpCapabilityInput(): string; private _zoneId?; get zoneId(): string; set zoneId(value: string); resetZoneId(): void; get zoneIdInput(): string; } export interface VpcAddressTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#create VpcAddress#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#delete VpcAddress#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address#update VpcAddress#update} */ readonly update?: string; } export declare function vpcAddressTimeoutsToTerraform(struct?: VpcAddressTimeouts | cdktf.IResolvable): any; export declare function vpcAddressTimeoutsToHclTerraform(struct?: VpcAddressTimeouts | cdktf.IResolvable): any; export declare class VpcAddressTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): VpcAddressTimeouts | cdktf.IResolvable | undefined; set internalValue(value: VpcAddressTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/vpc_address yandex_vpc_address} */ export declare class VpcAddress extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_vpc_address"; /** * Generates CDKTF code for importing a VpcAddress 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 VpcAddress to import * @param importFromId The id of the existing VpcAddress that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/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 VpcAddress 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/resources/vpc_address yandex_vpc_address} Resource * * @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 VpcAddressConfig = {} */ constructor(scope: Construct, id: string, config?: VpcAddressConfig); get createdAt(): any; private _deletionProtection?; get deletionProtection(): boolean | cdktf.IResolvable; set deletionProtection(value: boolean | cdktf.IResolvable); resetDeletionProtection(): void; get deletionProtectionInput(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; 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(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; get reserved(): any; get used(): any; private _dnsRecord; get dnsRecord(): VpcAddressDnsRecordList; putDnsRecord(value: VpcAddressDnsRecord[] | cdktf.IResolvable): void; resetDnsRecord(): void; get dnsRecordInput(): any; private _externalIpv4Address; get externalIpv4Address(): VpcAddressExternalIpv4AddressOutputReference; putExternalIpv4Address(value: VpcAddressExternalIpv4Address): void; resetExternalIpv4Address(): void; get externalIpv4AddressInput(): VpcAddressExternalIpv4Address; private _timeouts; get timeouts(): VpcAddressTimeoutsOutputReference; putTimeouts(value: VpcAddressTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }