import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LbNetworkLoadBalancerConfig extends cdktf.TerraformMetaArguments { /** * Flag that marks the network load balancer as available to zonal shift. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#allow_zonal_shift LbNetworkLoadBalancer#allow_zonal_shift} */ readonly allowZonalShift?: boolean | cdktf.IResolvable; /** * 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/lb_network_load_balancer#deletion_protection LbNetworkLoadBalancer#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/lb_network_load_balancer#description LbNetworkLoadBalancer#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/lb_network_load_balancer#folder_id LbNetworkLoadBalancer#folder_id} */ readonly folderId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#id LbNetworkLoadBalancer#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/lb_network_load_balancer#labels LbNetworkLoadBalancer#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/lb_network_load_balancer#name LbNetworkLoadBalancer#name} */ readonly name?: string; /** * ID of the availability zone where the network load balancer resides. If omitted, default region is being used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#region_id LbNetworkLoadBalancer#region_id} */ readonly regionId?: string; /** * Type of the network load balancer. Must be one of 'external' or 'internal'. The default is 'external'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#type LbNetworkLoadBalancer#type} */ readonly type?: string; /** * attached_target_group block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#attached_target_group LbNetworkLoadBalancer#attached_target_group} */ readonly attachedTargetGroup?: LbNetworkLoadBalancerAttachedTargetGroup[] | cdktf.IResolvable; /** * listener block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#listener LbNetworkLoadBalancer#listener} */ readonly listener?: LbNetworkLoadBalancerListener[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#timeouts LbNetworkLoadBalancer#timeouts} */ readonly timeouts?: LbNetworkLoadBalancerTimeouts; } export interface LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions { /** * URL path to set for health checking requests for every target in the target group. For example `/ping`. The default path is `/`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#path LbNetworkLoadBalancer#path} */ readonly path?: string; /** * Port to use for HTTP health checks. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#port LbNetworkLoadBalancer#port} */ readonly port: number; } export declare function lbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptionsToTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptionsOutputReference | LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions): any; export declare function lbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptionsToHclTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptionsOutputReference | LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions): any; export declare class LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptionsOutputReference 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(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions | undefined; set internalValue(value: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions | undefined); private _path?; get path(): string; set path(value: string); resetPath(): void; get pathInput(): string; private _port?; get port(): number; set port(value: number); get portInput(): number; } export interface LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions { /** * Port to use for TCP health checks. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#port LbNetworkLoadBalancer#port} */ readonly port: number; } export declare function lbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptionsToTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptionsOutputReference | LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions): any; export declare function lbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptionsToHclTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptionsOutputReference | LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions): any; export declare class LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptionsOutputReference 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(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions | undefined; set internalValue(value: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions | undefined); private _port?; get port(): number; set port(value: number); get portInput(): number; } export interface LbNetworkLoadBalancerAttachedTargetGroupHealthcheck { /** * Number of successful health checks required in order to set the `HEALTHY` status for the target. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#healthy_threshold LbNetworkLoadBalancer#healthy_threshold} */ readonly healthyThreshold?: number; /** * The interval between health checks. The default is 2 seconds. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#interval LbNetworkLoadBalancer#interval} */ readonly interval?: number; /** * Name of the health check. The name must be unique for each target group that attached to a single load balancer. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#name LbNetworkLoadBalancer#name} */ readonly name: string; /** * Timeout for a target to return a response for the health check. The default is 1 second. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#timeout LbNetworkLoadBalancer#timeout} */ readonly timeout?: number; /** * Number of failed health checks before changing the status to `UNHEALTHY`. The default is 2. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#unhealthy_threshold LbNetworkLoadBalancer#unhealthy_threshold} */ readonly unhealthyThreshold?: number; /** * http_options block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#http_options LbNetworkLoadBalancer#http_options} */ readonly httpOptions?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions; /** * tcp_options block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#tcp_options LbNetworkLoadBalancer#tcp_options} */ readonly tcpOptions?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions; } export declare function lbNetworkLoadBalancerAttachedTargetGroupHealthcheckToTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheck | cdktf.IResolvable): any; export declare function lbNetworkLoadBalancerAttachedTargetGroupHealthcheckToHclTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheck | cdktf.IResolvable): any; export declare class LbNetworkLoadBalancerAttachedTargetGroupHealthcheckOutputReference 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(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheck | cdktf.IResolvable | undefined; set internalValue(value: LbNetworkLoadBalancerAttachedTargetGroupHealthcheck | cdktf.IResolvable | undefined); private _healthyThreshold?; get healthyThreshold(): number; set healthyThreshold(value: number); resetHealthyThreshold(): void; get healthyThresholdInput(): number; private _interval?; get interval(): number; set interval(value: number); resetInterval(): void; get intervalInput(): number; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _timeout?; get timeout(): number; set timeout(value: number); resetTimeout(): void; get timeoutInput(): number; private _unhealthyThreshold?; get unhealthyThreshold(): number; set unhealthyThreshold(value: number); resetUnhealthyThreshold(): void; get unhealthyThresholdInput(): number; private _httpOptions; get httpOptions(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptionsOutputReference; putHttpOptions(value: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions): void; resetHttpOptions(): void; get httpOptionsInput(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckHttpOptions; private _tcpOptions; get tcpOptions(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptionsOutputReference; putTcpOptions(value: LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions): void; resetTcpOptions(): void; get tcpOptionsInput(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckTcpOptions; } export declare class LbNetworkLoadBalancerAttachedTargetGroupHealthcheckList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LbNetworkLoadBalancerAttachedTargetGroupHealthcheck[] | 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): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckOutputReference; } export interface LbNetworkLoadBalancerAttachedTargetGroup { /** * ID of the target group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#target_group_id LbNetworkLoadBalancer#target_group_id} */ readonly targetGroupId: string; /** * healthcheck block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#healthcheck LbNetworkLoadBalancer#healthcheck} */ readonly healthcheck: LbNetworkLoadBalancerAttachedTargetGroupHealthcheck[] | cdktf.IResolvable; } export declare function lbNetworkLoadBalancerAttachedTargetGroupToTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroup | cdktf.IResolvable): any; export declare function lbNetworkLoadBalancerAttachedTargetGroupToHclTerraform(struct?: LbNetworkLoadBalancerAttachedTargetGroup | cdktf.IResolvable): any; export declare class LbNetworkLoadBalancerAttachedTargetGroupOutputReference 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(): LbNetworkLoadBalancerAttachedTargetGroup | cdktf.IResolvable | undefined; set internalValue(value: LbNetworkLoadBalancerAttachedTargetGroup | cdktf.IResolvable | undefined); private _targetGroupId?; get targetGroupId(): string; set targetGroupId(value: string); get targetGroupIdInput(): string; private _healthcheck; get healthcheck(): LbNetworkLoadBalancerAttachedTargetGroupHealthcheckList; putHealthcheck(value: LbNetworkLoadBalancerAttachedTargetGroupHealthcheck[] | cdktf.IResolvable): void; get healthcheckInput(): any; } export declare class LbNetworkLoadBalancerAttachedTargetGroupList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LbNetworkLoadBalancerAttachedTargetGroup[] | 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): LbNetworkLoadBalancerAttachedTargetGroupOutputReference; } export interface LbNetworkLoadBalancerListenerExternalAddressSpec { /** * External IP address for a listener. IP address will be allocated if it wasn't been set. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#address LbNetworkLoadBalancer#address} */ readonly address?: string; /** * IP version of the external addresses that the load balancer works with. Must be one of `ipv4` or `ipv6`. The default is `ipv4`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#ip_version LbNetworkLoadBalancer#ip_version} */ readonly ipVersion?: string; } export declare function lbNetworkLoadBalancerListenerExternalAddressSpecToTerraform(struct?: LbNetworkLoadBalancerListenerExternalAddressSpecOutputReference | LbNetworkLoadBalancerListenerExternalAddressSpec): any; export declare function lbNetworkLoadBalancerListenerExternalAddressSpecToHclTerraform(struct?: LbNetworkLoadBalancerListenerExternalAddressSpecOutputReference | LbNetworkLoadBalancerListenerExternalAddressSpec): any; export declare class LbNetworkLoadBalancerListenerExternalAddressSpecOutputReference 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(): LbNetworkLoadBalancerListenerExternalAddressSpec | undefined; set internalValue(value: LbNetworkLoadBalancerListenerExternalAddressSpec | undefined); private _address?; get address(): string; set address(value: string); resetAddress(): void; get addressInput(): string; private _ipVersion?; get ipVersion(): string; set ipVersion(value: string); resetIpVersion(): void; get ipVersionInput(): string; } export interface LbNetworkLoadBalancerListenerInternalAddressSpec { /** * Internal IP address for a listener. Must belong to the subnet that is referenced in subnet_id. IP address will be allocated if it wasn't been set. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#address LbNetworkLoadBalancer#address} */ readonly address?: string; /** * IP version of the external addresses that the load balancer works with. Must be one of `ipv4` or `ipv6`. The default is `ipv4`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#ip_version LbNetworkLoadBalancer#ip_version} */ readonly ipVersion?: string; /** * ID of the subnet to which the internal IP address belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#subnet_id LbNetworkLoadBalancer#subnet_id} */ readonly subnetId: string; } export declare function lbNetworkLoadBalancerListenerInternalAddressSpecToTerraform(struct?: LbNetworkLoadBalancerListenerInternalAddressSpecOutputReference | LbNetworkLoadBalancerListenerInternalAddressSpec): any; export declare function lbNetworkLoadBalancerListenerInternalAddressSpecToHclTerraform(struct?: LbNetworkLoadBalancerListenerInternalAddressSpecOutputReference | LbNetworkLoadBalancerListenerInternalAddressSpec): any; export declare class LbNetworkLoadBalancerListenerInternalAddressSpecOutputReference 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(): LbNetworkLoadBalancerListenerInternalAddressSpec | undefined; set internalValue(value: LbNetworkLoadBalancerListenerInternalAddressSpec | undefined); private _address?; get address(): string; set address(value: string); resetAddress(): void; get addressInput(): string; private _ipVersion?; get ipVersion(): string; set ipVersion(value: string); resetIpVersion(): void; get ipVersionInput(): string; private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; } export interface LbNetworkLoadBalancerListener { /** * Name of the listener. The name must be unique for each listener on a single load balancer. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#name LbNetworkLoadBalancer#name} */ readonly name: string; /** * Port for incoming traffic. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#port LbNetworkLoadBalancer#port} */ readonly port: number; /** * Protocol for incoming traffic. TCP or UDP and the default is TCP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#protocol LbNetworkLoadBalancer#protocol} */ readonly protocol?: string; /** * Port of a target. The default is the same as listener's port. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#target_port LbNetworkLoadBalancer#target_port} */ readonly targetPort?: number; /** * external_address_spec block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#external_address_spec LbNetworkLoadBalancer#external_address_spec} */ readonly externalAddressSpec?: LbNetworkLoadBalancerListenerExternalAddressSpec; /** * internal_address_spec block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#internal_address_spec LbNetworkLoadBalancer#internal_address_spec} */ readonly internalAddressSpec?: LbNetworkLoadBalancerListenerInternalAddressSpec; } export declare function lbNetworkLoadBalancerListenerToTerraform(struct?: LbNetworkLoadBalancerListener | cdktf.IResolvable): any; export declare function lbNetworkLoadBalancerListenerToHclTerraform(struct?: LbNetworkLoadBalancerListener | cdktf.IResolvable): any; export declare class LbNetworkLoadBalancerListenerOutputReference 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(): LbNetworkLoadBalancerListener | cdktf.IResolvable | undefined; set internalValue(value: LbNetworkLoadBalancerListener | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); get nameInput(): string; private _port?; get port(): number; set port(value: number); get portInput(): number; private _protocol?; get protocol(): string; set protocol(value: string); resetProtocol(): void; get protocolInput(): string; private _targetPort?; get targetPort(): number; set targetPort(value: number); resetTargetPort(): void; get targetPortInput(): number; private _externalAddressSpec; get externalAddressSpec(): LbNetworkLoadBalancerListenerExternalAddressSpecOutputReference; putExternalAddressSpec(value: LbNetworkLoadBalancerListenerExternalAddressSpec): void; resetExternalAddressSpec(): void; get externalAddressSpecInput(): LbNetworkLoadBalancerListenerExternalAddressSpec; private _internalAddressSpec; get internalAddressSpec(): LbNetworkLoadBalancerListenerInternalAddressSpecOutputReference; putInternalAddressSpec(value: LbNetworkLoadBalancerListenerInternalAddressSpec): void; resetInternalAddressSpec(): void; get internalAddressSpecInput(): LbNetworkLoadBalancerListenerInternalAddressSpec; } export declare class LbNetworkLoadBalancerListenerList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LbNetworkLoadBalancerListener[] | 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): LbNetworkLoadBalancerListenerOutputReference; } export interface LbNetworkLoadBalancerTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#create LbNetworkLoadBalancer#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#delete LbNetworkLoadBalancer#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#update LbNetworkLoadBalancer#update} */ readonly update?: string; } export declare function lbNetworkLoadBalancerTimeoutsToTerraform(struct?: LbNetworkLoadBalancerTimeouts | cdktf.IResolvable): any; export declare function lbNetworkLoadBalancerTimeoutsToHclTerraform(struct?: LbNetworkLoadBalancerTimeouts | cdktf.IResolvable): any; export declare class LbNetworkLoadBalancerTimeoutsOutputReference 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(): LbNetworkLoadBalancerTimeouts | cdktf.IResolvable | undefined; set internalValue(value: LbNetworkLoadBalancerTimeouts | 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/lb_network_load_balancer yandex_lb_network_load_balancer} */ export declare class LbNetworkLoadBalancer extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_lb_network_load_balancer"; /** * Generates CDKTF code for importing a LbNetworkLoadBalancer 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 LbNetworkLoadBalancer to import * @param importFromId The id of the existing LbNetworkLoadBalancer that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/lb_network_load_balancer#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LbNetworkLoadBalancer 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/lb_network_load_balancer yandex_lb_network_load_balancer} 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 LbNetworkLoadBalancerConfig = {} */ constructor(scope: Construct, id: string, config?: LbNetworkLoadBalancerConfig); private _allowZonalShift?; get allowZonalShift(): boolean | cdktf.IResolvable; set allowZonalShift(value: boolean | cdktf.IResolvable); resetAllowZonalShift(): void; get allowZonalShiftInput(): any; 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; private _regionId?; get regionId(): string; set regionId(value: string); resetRegionId(): void; get regionIdInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; private _attachedTargetGroup; get attachedTargetGroup(): LbNetworkLoadBalancerAttachedTargetGroupList; putAttachedTargetGroup(value: LbNetworkLoadBalancerAttachedTargetGroup[] | cdktf.IResolvable): void; resetAttachedTargetGroup(): void; get attachedTargetGroupInput(): any; private _listener; get listener(): LbNetworkLoadBalancerListenerList; putListener(value: LbNetworkLoadBalancerListener[] | cdktf.IResolvable): void; resetListener(): void; get listenerInput(): any; private _timeouts; get timeouts(): LbNetworkLoadBalancerTimeoutsOutputReference; putTimeouts(value: LbNetworkLoadBalancerTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }