RunCommandInput.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** Capture Virtual Machine parameters. */
@Fluent
public final class RunCommandInput {
@JsonIgnore private final ClientLogger logger = new ClientLogger(RunCommandInput.class);
/*
* The run command id.
*/
@JsonProperty(value = "commandId", required = true)
private String commandId;
/*
* Optional. The script to be executed. When this value is given, the
* given script will override the default script of the command.
*/
@JsonProperty(value = "script")
private List<String> script;
/*
* The run command parameters.
*/
@JsonProperty(value = "parameters")
private List<RunCommandInputParameter> parameters;
/**
* Get the commandId property: The run command id.
*
* @return the commandId value.
*/
public String commandId() {
return this.commandId;
}
/**
* Set the commandId property: The run command id.
*
* @param commandId the commandId value to set.
* @return the RunCommandInput object itself.
*/
public RunCommandInput withCommandId(String commandId) {
this.commandId = commandId;
return this;
}
/**
* Get the script property: Optional. The script to be executed. When this value is given, the given script will
* override the default script of the command.
*
* @return the script value.
*/
public List<String> script() {
return this.script;
}
/**
* Set the script property: Optional. The script to be executed. When this value is given, the given script will
* override the default script of the command.
*
* @param script the script value to set.
* @return the RunCommandInput object itself.
*/
public RunCommandInput withScript(List<String> script) {
this.script = script;
return this;
}
/**
* Get the parameters property: The run command parameters.
*
* @return the parameters value.
*/
public List<RunCommandInputParameter> parameters() {
return this.parameters;
}
/**
* Set the parameters property: The run command parameters.
*
* @param parameters the parameters value to set.
* @return the RunCommandInput object itself.
*/
public RunCommandInput withParameters(List<RunCommandInputParameter> parameters) {
this.parameters = parameters;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (commandId() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property commandId in model RunCommandInput"));
}
if (parameters() != null) {
parameters().forEach(e -> e.validate());
}
}
}