Sha256: 6e60e9854f5b28efd40ab281230cdbbf10ba298c387a33129ceb5f5aa47a680d
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
# ApplicationLoadBalancerProperties ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | The name of the Application Load Balancer. | | | **listener_lan** | **Integer** | ID of the listening (inbound) LAN. | | | **ips** | **Array<String>** | Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan are customer-reserved public IPs for the public Load Balancers, and private IPs for the private Load Balancers. | [optional] | | **target_lan** | **Integer** | ID of the balanced private target LAN (outbound). | | | **lb_private_ips** | **Array<String>** | Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet. | [optional] | ## Example ```ruby require 'ionoscloud' instance = Ionoscloud::ApplicationLoadBalancerProperties.new( name: My Application Load Balancer, listener_lan: 1, ips: [81.173.1.2, 22.231.2.2, 22.231.2.3], target_lan: 2, lb_private_ips: [81.173.1.5/24, 22.231.2.5/24] ) ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ionoscloud-6.1.1 | docs/models/ApplicationLoadBalancerProperties.md |
ionoscloud-6.1.0 | docs/models/ApplicationLoadBalancerProperties.md |