다음을 통해 공유


ManagedClusterLoadBalancerProfileManagedOutboundIPs Constructors

Definition

Overloads

ManagedClusterLoadBalancerProfileManagedOutboundIPs()

Initializes a new instance of the ManagedClusterLoadBalancerProfileManagedOutboundIPs class.

ManagedClusterLoadBalancerProfileManagedOutboundIPs(Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ManagedClusterLoadBalancerProfileManagedOutboundIPs class.

ManagedClusterLoadBalancerProfileManagedOutboundIPs()

Initializes a new instance of the ManagedClusterLoadBalancerProfileManagedOutboundIPs class.

public ManagedClusterLoadBalancerProfileManagedOutboundIPs ();
Public Sub New ()

Applies to

ManagedClusterLoadBalancerProfileManagedOutboundIPs(Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ManagedClusterLoadBalancerProfileManagedOutboundIPs class.

public ManagedClusterLoadBalancerProfileManagedOutboundIPs (int? count = default, int? countIPv6 = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterLoadBalancerProfileManagedOutboundIPs : Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterLoadBalancerProfileManagedOutboundIPs
Public Sub New (Optional count As Nullable(Of Integer) = Nothing, Optional countIPv6 As Nullable(Of Integer) = Nothing)

Parameters

count
Nullable<Int32>

The desired number of IPv4 outbound IPs created/managed by Azure for the cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1.

countIPv6
Nullable<Int32>

The desired number of IPv6 outbound IPs created/managed by Azure for the cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 0 for single-stack and 1 for dual-stack.

Applies to