Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.batchai;
import com.fasterxml.jackson.annotation.JsonProperty;
An environment variable definition.
/**
* An environment variable definition.
*/
public class EnvironmentVariable {
Name.
The name of the environment variable.
/**
* Name.
* The name of the environment variable.
*/
@JsonProperty(value = "name", required = true)
private String name;
Value.
The value of the environment variable.
/**
* Value.
* The value of the environment variable.
*/
@JsonProperty(value = "value", required = true)
private String value;
Get the name of the environment variable.
Returns: the name value
/**
* Get the name of the environment variable.
*
* @return the name value
*/
public String name() {
return this.name;
}
Set the name of the environment variable.
Params: - name – the name value to set
Returns: the EnvironmentVariable object itself.
/**
* Set the name of the environment variable.
*
* @param name the name value to set
* @return the EnvironmentVariable object itself.
*/
public EnvironmentVariable withName(String name) {
this.name = name;
return this;
}
Get the value of the environment variable.
Returns: the value value
/**
* Get the value of the environment variable.
*
* @return the value value
*/
public String value() {
return this.value;
}
Set the value of the environment variable.
Params: - value – the value value to set
Returns: the EnvironmentVariable object itself.
/**
* Set the value of the environment variable.
*
* @param value the value value to set
* @return the EnvironmentVariable object itself.
*/
public EnvironmentVariable withValue(String value) {
this.value = value;
return this;
}
}