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.containerinstance; import com.fasterxml.jackson.annotation.JsonProperty;
The environment variable to set within the container instance.
/** * The environment variable to set within the container instance. */
public class EnvironmentVariable {
The name of the environment variable.
/** * The name of the environment variable. */
@JsonProperty(value = "name", required = true) private String name;
The value of the environment variable.
/** * The value of the environment variable. */
@JsonProperty(value = "value") private String value;
The value of the secure environment variable.
/** * The value of the secure environment variable. */
@JsonProperty(value = "secureValue") private String secureValue;
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; }
Get the value of the secure environment variable.
Returns:the secureValue value
/** * Get the value of the secure environment variable. * * @return the secureValue value */
public String secureValue() { return this.secureValue; }
Set the value of the secure environment variable.
Params:
  • secureValue – the secureValue value to set
Returns:the EnvironmentVariable object itself.
/** * Set the value of the secure environment variable. * * @param secureValue the secureValue value to set * @return the EnvironmentVariable object itself. */
public EnvironmentVariable withSecureValue(String secureValue) { this.secureValue = secureValue; return this; } }