InboundNatPool Constructors

Definition

Overloads

InboundNatPool()

Initializes a new instance of the InboundNatPool class.

InboundNatPool(String, InboundEndpointProtocol, Int32, Int32, Int32, IList<NetworkSecurityGroupRule>)

Initializes a new instance of the InboundNatPool class.

InboundNatPool()

Initializes a new instance of the InboundNatPool class.

public InboundNatPool ();
Public Sub New ()

Applies to

InboundNatPool(String, InboundEndpointProtocol, Int32, Int32, Int32, IList<NetworkSecurityGroupRule>)

Initializes a new instance of the InboundNatPool class.

public InboundNatPool (string name, Microsoft.Azure.Management.Batch.Models.InboundEndpointProtocol protocol, int backendPort, int frontendPortRangeStart, int frontendPortRangeEnd, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.NetworkSecurityGroupRule> networkSecurityGroupRules = default);
new Microsoft.Azure.Management.Batch.Models.InboundNatPool : string * Microsoft.Azure.Management.Batch.Models.InboundEndpointProtocol * int * int * int * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.NetworkSecurityGroupRule> -> Microsoft.Azure.Management.Batch.Models.InboundNatPool
Public Sub New (name As String, protocol As InboundEndpointProtocol, backendPort As Integer, frontendPortRangeStart As Integer, frontendPortRangeEnd As Integer, Optional networkSecurityGroupRules As IList(Of NetworkSecurityGroupRule) = Nothing)

Parameters

name
String

The name of the endpoint.

protocol
InboundEndpointProtocol

The protocol of the endpoint.

backendPort
Int32

The port number on the compute node.

frontendPortRangeStart
Int32

The first port number in the range of external ports that will be used to provide inbound access to the backendPort on individual compute nodes.

frontendPortRangeEnd
Int32

The last port number in the range of external ports that will be used to provide inbound access to the backendPort on individual compute nodes.

networkSecurityGroupRules
IList<NetworkSecurityGroupRule>

A list of network security group rules that will be applied to the endpoint.

Applies to