다음을 통해 공유


FrontendConfiguration Constructors

Definition

Overloads

FrontendConfiguration()

Initializes a new instance of the FrontendConfiguration class.

FrontendConfiguration(String, String, String, String)

Initializes a new instance of the FrontendConfiguration class.

FrontendConfiguration()

Initializes a new instance of the FrontendConfiguration class.

public FrontendConfiguration ();
Public Sub New ()

Applies to

FrontendConfiguration(String, String, String, String)

Initializes a new instance of the FrontendConfiguration class.

public FrontendConfiguration (string ipAddressType = default, string loadBalancerBackendAddressPoolId = default, string loadBalancerInboundNatPoolId = default, string applicationGatewayBackendAddressPoolId = default);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.FrontendConfiguration : string * string * string * string -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.FrontendConfiguration
Public Sub New (Optional ipAddressType As String = Nothing, Optional loadBalancerBackendAddressPoolId As String = Nothing, Optional loadBalancerInboundNatPoolId As String = Nothing, Optional applicationGatewayBackendAddressPoolId As String = Nothing)

Parameters

ipAddressType
String

The IP address type of this frontend configuration. If omitted the default value is IPv4. Possible values include: 'IPv4', 'IPv6'

loadBalancerBackendAddressPoolId
String

The resource Id of the Load Balancer backend address pool that the VM instances of the node type are associated with. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/loadBalancers/<loadBalancerName>/backendAddressPools/<backendAddressPoolName>'.

loadBalancerInboundNatPoolId
String

The resource Id of the Load Balancer inbound NAT pool that the VM instances of the node type are associated with. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/loadBalancers/<loadBalancerName>/inboundNatPools/<inboundNatPoolName>'.

applicationGatewayBackendAddressPoolId
String

The resource Id of application gateway backend address pool. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/applicationGateways/<applicationGatewayName>/backendAddressPools/<backendAddressPoolName>'.

Applies to