Condividi tramite


AgentPoolNetworkProfile Constructors

Definition

Overloads

Name Description
AgentPoolNetworkProfile()

Initializes a new instance of the AgentPoolNetworkProfile class.

AgentPoolNetworkProfile(IList<IPTag>, IList<PortRange>, IList<String>)

Initializes a new instance of the AgentPoolNetworkProfile class.

AgentPoolNetworkProfile()

Initializes a new instance of the AgentPoolNetworkProfile class.

public AgentPoolNetworkProfile();
Public Sub New ()

Applies to

AgentPoolNetworkProfile(IList<IPTag>, IList<PortRange>, IList<String>)

Initializes a new instance of the AgentPoolNetworkProfile class.

public AgentPoolNetworkProfile(System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.IPTag> nodePublicIPTags = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.PortRange> allowedHostPorts = default, System.Collections.Generic.IList<string> applicationSecurityGroups = default);
new Microsoft.Azure.Management.ContainerService.Models.AgentPoolNetworkProfile : System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.IPTag> * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.PortRange> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.ContainerService.Models.AgentPoolNetworkProfile
Public Sub New (Optional nodePublicIPTags As IList(Of IPTag) = Nothing, Optional allowedHostPorts As IList(Of PortRange) = Nothing, Optional applicationSecurityGroups As IList(Of String) = Nothing)

Parameters

nodePublicIPTags
IList<IPTag>

IPTags of instance-level public IPs.

allowedHostPorts
IList<PortRange>

The port ranges that are allowed to access. The specified ranges are allowed to overlap.

applicationSecurityGroups
IList<String>

The IDs of the application security groups which agent pool will associate when created.

Applies to