class Azure::ContainerInstance::Mgmt::V2018_10_01::Models::EnvironmentVariable
The environment variable to set within the container instance.
Attributes
name[RW]
@return [String] The name of the environment variable.
secure_value[RW]
@return [String] The value of the secure environment variable.
value[RW]
@return [String] The value of the environment variable.
Public Class Methods
mapper()
click to toggle source
Mapper for EnvironmentVariable
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-10-01/generated/azure_mgmt_container_instance/models/environment_variable.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EnvironmentVariable', type: { name: 'Composite', class_name: 'EnvironmentVariable', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } }, secure_value: { client_side_validation: true, required: false, serialized_name: 'secureValue', type: { name: 'String' } } } } } end