Class OrchestratorVersionProfile
java.lang.Object
com.azure.resourcemanager.containerservice.models.OrchestratorVersionProfile
- All Implemented Interfaces:
com.azure.json.JsonSerializable<OrchestratorVersionProfile>
public final class OrchestratorVersionProfile
extends Object
implements com.azure.json.JsonSerializable<OrchestratorVersionProfile>
The profile of an orchestrator and its available versions.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of OrchestratorVersionProfile class. -
Method Summary
Modifier and TypeMethodDescriptionGet the defaultProperty property: Installed by default if version is not specified.static OrchestratorVersionProfilefromJson(com.azure.json.JsonReader jsonReader) Reads an instance of OrchestratorVersionProfile from the JsonReader.Get the isPreview property: Whether Kubernetes version is currently in preview.Get the orchestratorType property: Orchestrator type.Get the orchestratorVersion property: Orchestrator version (major, minor, patch).com.azure.json.JsonWritertoJson(com.azure.json.JsonWriter jsonWriter) upgrades()Get the upgrades property: The list of available upgrade versions.voidvalidate()Validates the instance.withDefaultProperty(Boolean defaultProperty) Set the defaultProperty property: Installed by default if version is not specified.withIsPreview(Boolean isPreview) Set the isPreview property: Whether Kubernetes version is currently in preview.withOrchestratorType(String orchestratorType) Set the orchestratorType property: Orchestrator type.withOrchestratorVersion(String orchestratorVersion) Set the orchestratorVersion property: Orchestrator version (major, minor, patch).withUpgrades(List<OrchestratorProfile> upgrades) Set the upgrades property: The list of available upgrade versions.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Constructor Details
-
OrchestratorVersionProfile
public OrchestratorVersionProfile()Creates an instance of OrchestratorVersionProfile class.
-
-
Method Details
-
orchestratorType
Get the orchestratorType property: Orchestrator type.- Returns:
- the orchestratorType value.
-
withOrchestratorType
Set the orchestratorType property: Orchestrator type.- Parameters:
orchestratorType- the orchestratorType value to set.- Returns:
- the OrchestratorVersionProfile object itself.
-
orchestratorVersion
Get the orchestratorVersion property: Orchestrator version (major, minor, patch).- Returns:
- the orchestratorVersion value.
-
withOrchestratorVersion
Set the orchestratorVersion property: Orchestrator version (major, minor, patch).- Parameters:
orchestratorVersion- the orchestratorVersion value to set.- Returns:
- the OrchestratorVersionProfile object itself.
-
defaultProperty
Get the defaultProperty property: Installed by default if version is not specified.- Returns:
- the defaultProperty value.
-
withDefaultProperty
Set the defaultProperty property: Installed by default if version is not specified.- Parameters:
defaultProperty- the defaultProperty value to set.- Returns:
- the OrchestratorVersionProfile object itself.
-
isPreview
Get the isPreview property: Whether Kubernetes version is currently in preview.- Returns:
- the isPreview value.
-
withIsPreview
Set the isPreview property: Whether Kubernetes version is currently in preview.- Parameters:
isPreview- the isPreview value to set.- Returns:
- the OrchestratorVersionProfile object itself.
-
upgrades
Get the upgrades property: The list of available upgrade versions.- Returns:
- the upgrades value.
-
withUpgrades
Set the upgrades property: The list of available upgrade versions.- Parameters:
upgrades- the upgrades value to set.- Returns:
- the OrchestratorVersionProfile object itself.
-
validate
public void validate()Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
toJson
- Specified by:
toJsonin interfacecom.azure.json.JsonSerializable<OrchestratorVersionProfile>- Throws:
IOException
-
fromJson
public static OrchestratorVersionProfile fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of OrchestratorVersionProfile from the JsonReader.- Parameters:
jsonReader- The JsonReader being read.- Returns:
- An instance of OrchestratorVersionProfile if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IllegalStateException- If the deserialized JSON object was missing any required properties.IOException- If an error occurs while reading the OrchestratorVersionProfile.
-