Share via


AgentPoolUpgradeProfileProperties Constructors

Definition

Overloads

AgentPoolUpgradeProfileProperties()

Initializes a new instance of the AgentPoolUpgradeProfileProperties class.

AgentPoolUpgradeProfileProperties(String, String, IList<AgentPoolUpgradeProfilePropertiesUpgradesItem>, String)

Initializes a new instance of the AgentPoolUpgradeProfileProperties class.

AgentPoolUpgradeProfileProperties()

Initializes a new instance of the AgentPoolUpgradeProfileProperties class.

public AgentPoolUpgradeProfileProperties ();
Public Sub New ()

Applies to

AgentPoolUpgradeProfileProperties(String, String, IList<AgentPoolUpgradeProfilePropertiesUpgradesItem>, String)

Initializes a new instance of the AgentPoolUpgradeProfileProperties class.

public AgentPoolUpgradeProfileProperties (string kubernetesVersion, string osType, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeProfilePropertiesUpgradesItem> upgrades = default, string latestNodeImageVersion = default);
new Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeProfileProperties : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeProfilePropertiesUpgradesItem> * string -> Microsoft.Azure.Management.ContainerService.Models.AgentPoolUpgradeProfileProperties
Public Sub New (kubernetesVersion As String, osType As String, Optional upgrades As IList(Of AgentPoolUpgradeProfilePropertiesUpgradesItem) = Nothing, Optional latestNodeImageVersion As String = Nothing)

Parameters

kubernetesVersion
String

The Kubernetes version (major.minor.patch).

osType
String

The operating system type. The default is Linux. Possible values include: 'Linux', 'Windows'

upgrades
IList<AgentPoolUpgradeProfilePropertiesUpgradesItem>

List of orchestrator types and versions available for upgrade.

latestNodeImageVersion
String

The latest AKS supported node image version.

Applies to