Class EnvironmentVariable
The environment variable to pass to the script in the container instance.
Inheritance
System.Object
EnvironmentVariable
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.ResourceManager.Resources.dll
Syntax
public class EnvironmentVariable
Constructors
EnvironmentVariable(String)
Initializes a new instance of EnvironmentVariable.
Declaration
public EnvironmentVariable (string name);
Parameters
System.String
name
The name of the environment variable. |
Exceptions
System.ArgumentNullException
|
Properties
Name
The name of the environment variable.
Declaration
public string Name { get; set; }
Property Value
System.String
|
SecureValue
The value of the secure environment variable.
Declaration
public string SecureValue { get; set; }
Property Value
System.String
|
Value
The value of the environment variable.
Declaration
public string Value { get; set; }
Property Value
System.String
|