Partilhar via


ManagedClusterPoolUpgradeProfile Constructors

Definition

Overloads

ManagedClusterPoolUpgradeProfile()

Initializes a new instance of the ManagedClusterPoolUpgradeProfile class.

ManagedClusterPoolUpgradeProfile(String, String, String, IList<ManagedClusterPoolUpgradeProfileUpgradesItem>)

Initializes a new instance of the ManagedClusterPoolUpgradeProfile class.

ManagedClusterPoolUpgradeProfile()

Initializes a new instance of the ManagedClusterPoolUpgradeProfile class.

public ManagedClusterPoolUpgradeProfile ();
Public Sub New ()

Applies to

ManagedClusterPoolUpgradeProfile(String, String, String, IList<ManagedClusterPoolUpgradeProfileUpgradesItem>)

Initializes a new instance of the ManagedClusterPoolUpgradeProfile class.

public ManagedClusterPoolUpgradeProfile (string kubernetesVersion, string osType, string name = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPoolUpgradeProfileUpgradesItem> upgrades = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPoolUpgradeProfile : string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPoolUpgradeProfileUpgradesItem> -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterPoolUpgradeProfile
Public Sub New (kubernetesVersion As String, osType As String, Optional name As String = Nothing, Optional upgrades As IList(Of ManagedClusterPoolUpgradeProfileUpgradesItem) = 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'

name
String

The Agent Pool name.

upgrades
IList<ManagedClusterPoolUpgradeProfileUpgradesItem>

List of orchestrator types and versions available for upgrade.

Applies to