Sha256: ef0b22ef439800664e2724b86e23a842109b58b3744a65446fa56db02f28890b
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Batch::Mgmt::V2019_04_01 module Models # # An environment variable to be set on a task process. # # class EnvironmentSetting include MsRestAzure # @return [String] The name of the environment variable. attr_accessor :name # @return [String] The value of the environment variable. attr_accessor :value # # Mapper for EnvironmentSetting class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
2 entries across 2 versions & 1 rubygems