Class RunCommandParameterDefinition
java.lang.Object
com.azure.resourcemanager.compute.models.RunCommandParameterDefinition
- All Implemented Interfaces:
com.azure.json.JsonSerializable<RunCommandParameterDefinition>
public final class RunCommandParameterDefinition
extends Object
implements com.azure.json.JsonSerializable<RunCommandParameterDefinition>
Describes the properties of a run command parameter.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of RunCommandParameterDefinition class. -
Method Summary
Modifier and TypeMethodDescriptionGet the defaultValue property: The run command parameter default value.fromJson(com.azure.json.JsonReader jsonReader) Reads an instance of RunCommandParameterDefinition from the JsonReader.name()Get the name property: The run command parameter name.required()Get the required property: The run command parameter required.com.azure.json.JsonWritertoJson(com.azure.json.JsonWriter jsonWriter) type()Get the type property: The run command parameter type.voidvalidate()Validates the instance.withDefaultValue(String defaultValue) Set the defaultValue property: The run command parameter default value.Set the name property: The run command parameter name.withRequired(Boolean required) Set the required property: The run command parameter required.Set the type property: The run command parameter type.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
-
RunCommandParameterDefinition
public RunCommandParameterDefinition()Creates an instance of RunCommandParameterDefinition class.
-
-
Method Details
-
name
Get the name property: The run command parameter name.- Returns:
- the name value.
-
withName
Set the name property: The run command parameter name.- Parameters:
name- the name value to set.- Returns:
- the RunCommandParameterDefinition object itself.
-
type
Get the type property: The run command parameter type.- Returns:
- the type value.
-
withType
Set the type property: The run command parameter type.- Parameters:
type- the type value to set.- Returns:
- the RunCommandParameterDefinition object itself.
-
defaultValue
Get the defaultValue property: The run command parameter default value.- Returns:
- the defaultValue value.
-
withDefaultValue
Set the defaultValue property: The run command parameter default value.- Parameters:
defaultValue- the defaultValue value to set.- Returns:
- the RunCommandParameterDefinition object itself.
-
required
Get the required property: The run command parameter required.- Returns:
- the required value.
-
withRequired
Set the required property: The run command parameter required.- Parameters:
required- the required value to set.- Returns:
- the RunCommandParameterDefinition 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<RunCommandParameterDefinition>- Throws:
IOException
-
fromJson
public static RunCommandParameterDefinition fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of RunCommandParameterDefinition from the JsonReader.- Parameters:
jsonReader- The JsonReader being read.- Returns:
- An instance of RunCommandParameterDefinition 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 RunCommandParameterDefinition.
-