AgentPoolGatewayProfile Constructors

Definition

Overloads

Name Description
AgentPoolGatewayProfile()

Initializes a new instance of the AgentPoolGatewayProfile class.

AgentPoolGatewayProfile(Nullable<Int32>)

Initializes a new instance of the AgentPoolGatewayProfile class.

AgentPoolGatewayProfile()

Initializes a new instance of the AgentPoolGatewayProfile class.

public AgentPoolGatewayProfile();
Public Sub New ()

Applies to

AgentPoolGatewayProfile(Nullable<Int32>)

Initializes a new instance of the AgentPoolGatewayProfile class.

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

Parameters

publicIPPrefixSize
Nullable<Int32>

The Gateway agent pool associates one public IPPrefix for each static egress gateway to provide public egress. The size of Public IPPrefix should be selected by the user. Each node in the agent pool is assigned with one IP from the IPPrefix. The IPPrefix size thus serves as a cap on the size of the Gateway agent pool. Due to Azure public IPPrefix size limitation, the valid value range is [28, 31] (/31 = 2 nodes/IPs, /30 = 4 nodes/IPs, /29 = 8 nodes/IPs, /28 = 16 nodes/IPs). The default value is 31.

Applies to