Class: Azure::Batch::Mgmt::V2019_04_01::Models::EnvironmentSetting
- Inherits:
-
Object
- Object
- Azure::Batch::Mgmt::V2019_04_01::Models::EnvironmentSetting
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-04-01/generated/azure_mgmt_batch/models/environment_setting.rb
Overview
An environment variable to be set on a task process.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the environment variable.
-
#value ⇒ String
The value of the environment variable.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EnvironmentSetting class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
Returns The name of the environment variable.
17 18 19 |
# File 'lib/2019-04-01/generated/azure_mgmt_batch/models/environment_setting.rb', line 17 def name @name end |
#value ⇒ String
Returns The value of the environment variable.
20 21 22 |
# File 'lib/2019-04-01/generated/azure_mgmt_batch/models/environment_setting.rb', line 20 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for EnvironmentSetting class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/2019-04-01/generated/azure_mgmt_batch/models/environment_setting.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EnvironmentSetting', type: { name: 'Composite', class_name: 'EnvironmentSetting', 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' } } } } } end |