Share via


OrchestratorVersionProfile Constructors

Definition

Overloads

OrchestratorVersionProfile()

Initializes a new instance of the OrchestratorVersionProfile class.

OrchestratorVersionProfile(String, String, Nullable<Boolean>, Nullable<Boolean>, IList<OrchestratorProfile>)

Initializes a new instance of the OrchestratorVersionProfile class.

OrchestratorVersionProfile()

Initializes a new instance of the OrchestratorVersionProfile class.

public OrchestratorVersionProfile ();
Public Sub New ()

Applies to

OrchestratorVersionProfile(String, String, Nullable<Boolean>, Nullable<Boolean>, IList<OrchestratorProfile>)

Initializes a new instance of the OrchestratorVersionProfile class.

public OrchestratorVersionProfile (string orchestratorType, string orchestratorVersion, bool? defaultProperty = default, bool? isPreview = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Fluent.Models.OrchestratorProfile> upgrades = default);
new Microsoft.Azure.Management.ContainerService.Fluent.Models.OrchestratorVersionProfile : string * string * Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerService.Fluent.Models.OrchestratorProfile> -> Microsoft.Azure.Management.ContainerService.Fluent.Models.OrchestratorVersionProfile
Public Sub New (orchestratorType As String, orchestratorVersion As String, Optional defaultProperty As Nullable(Of Boolean) = Nothing, Optional isPreview As Nullable(Of Boolean) = Nothing, Optional upgrades As IList(Of OrchestratorProfile) = Nothing)

Parameters

orchestratorType
String

Orchestrator type.

orchestratorVersion
String

Orchestrator version (major, minor, patch).

defaultProperty
Nullable<Boolean>

Installed by default if version is not specified.

isPreview
Nullable<Boolean>

Whether Kubernetes version is currently in preview.

upgrades
IList<OrchestratorProfile>

The list of available upgrade versions.

Applies to