InboundNATPool Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
InboundNATPool() |
Initialise une nouvelle instance de la classe InboundNATPool. |
InboundNATPool(String, InboundEndpointProtocol, Int32, Int32, Int32, IList<NetworkSecurityGroupRule>) |
Initialise une nouvelle instance de la classe InboundNATPool. |
InboundNATPool()
- Source:
- InboundNatPool.cs
Initialise une nouvelle instance de la classe InboundNATPool.
public InboundNATPool ();
Public Sub New ()
S’applique à
InboundNATPool(String, InboundEndpointProtocol, Int32, Int32, Int32, IList<NetworkSecurityGroupRule>)
- Source:
- InboundNatPool.cs
Initialise une nouvelle instance de la classe InboundNATPool.
public InboundNATPool (string name, Microsoft.Azure.Batch.Protocol.Models.InboundEndpointProtocol protocol, int backendPort, int frontendPortRangeStart, int frontendPortRangeEnd, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NetworkSecurityGroupRule> networkSecurityGroupRules = default);
new Microsoft.Azure.Batch.Protocol.Models.InboundNATPool : string * Microsoft.Azure.Batch.Protocol.Models.InboundEndpointProtocol * int * int * int * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NetworkSecurityGroupRule> -> Microsoft.Azure.Batch.Protocol.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)
Paramètres
- name
- String
Nom du point de terminaison.
- protocol
- InboundEndpointProtocol
Protocole du point de terminaison.
- backendPort
- Int32
Numéro de port sur le nœud de calcul.
- frontendPortRangeStart
- Int32
Premier numéro de port dans la plage de ports externes qui seront utilisés pour fournir un accès entrant au backendPort sur des nœuds de calcul individuels.
- frontendPortRangeEnd
- Int32
Dernier numéro de port dans la plage de ports externes qui seront utilisés pour fournir un accès entrant au backendPort sur des nœuds de calcul individuels.
- networkSecurityGroupRules
- IList<NetworkSecurityGroupRule>
Liste des règles de groupe de sécurité réseau qui seront appliquées au point de terminaison.
S’applique à
Azure SDK for .NET