OrchestratorVersionProfile Class

  • java.lang.Object
    • com.microsoft.azure.management.containerservice.OrchestratorVersionProfile

public class OrchestratorVersionProfile

The profile of an orchestrator and its available versions.

Constructor Summary

Constructor Description
OrchestratorVersionProfile()

Method Summary

Modifier and Type Method and Description
java.lang.Boolean defaultProperty()

Get installed by default if version is not specified.

java.lang.Boolean isPreview()

Get whether Kubernetes version is currently in preview.

java.lang.String orchestratorType()

Get orchestrator type.

java.lang.String orchestratorVersion()

Get orchestrator version (major, minor, patch).

java.util.List<OrchestratorProfile> upgrades()

Get the list of available upgrade versions.

OrchestratorVersionProfile withDefaultProperty(Boolean defaultProperty)

Set installed by default if version is not specified.

OrchestratorVersionProfile withIsPreview(Boolean isPreview)

Set whether Kubernetes version is currently in preview.

OrchestratorVersionProfile withOrchestratorType(String orchestratorType)

Set orchestrator type.

OrchestratorVersionProfile withOrchestratorVersion(String orchestratorVersion)

Set orchestrator version (major, minor, patch).

OrchestratorVersionProfile withUpgrades(List<OrchestratorProfile> upgrades)

Set the list of available upgrade versions.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

OrchestratorVersionProfile

public OrchestratorVersionProfile()

Method Details

defaultProperty

public Boolean defaultProperty()

Get installed by default if version is not specified.

Returns:

the defaultProperty value

isPreview

public Boolean isPreview()

Get whether Kubernetes version is currently in preview.

Returns:

the isPreview value

orchestratorType

public String orchestratorType()

Get orchestrator type.

Returns:

the orchestratorType value

orchestratorVersion

public String orchestratorVersion()

Get orchestrator version (major, minor, patch).

Returns:

the orchestratorVersion value

upgrades

public List upgrades()

Get the list of available upgrade versions.

Returns:

the upgrades value

withDefaultProperty

public OrchestratorVersionProfile withDefaultProperty(Boolean defaultProperty)

Set installed by default if version is not specified.

Parameters:

defaultProperty - the defaultProperty value to set

Returns:

the OrchestratorVersionProfile object itself.

withIsPreview

public OrchestratorVersionProfile withIsPreview(Boolean isPreview)

Set whether Kubernetes version is currently in preview.

Parameters:

isPreview - the isPreview value to set

Returns:

the OrchestratorVersionProfile object itself.

withOrchestratorType

public OrchestratorVersionProfile withOrchestratorType(String orchestratorType)

Set orchestrator type.

Parameters:

orchestratorType - the orchestratorType value to set

Returns:

the OrchestratorVersionProfile object itself.

withOrchestratorVersion

public OrchestratorVersionProfile withOrchestratorVersion(String orchestratorVersion)

Set orchestrator version (major, minor, patch).

Parameters:

orchestratorVersion - the orchestratorVersion value to set

Returns:

the OrchestratorVersionProfile object itself.

withUpgrades

public OrchestratorVersionProfile withUpgrades(List upgrades)

Set the list of available upgrade versions.

Parameters:

upgrades - the upgrades value to set

Returns:

the OrchestratorVersionProfile object itself.

Applies to