Sha256: 488f6209887ae546064cec1140d70c5af51cd3cd3e998d7b2c477bb2473928a4
Contents?: true
Size: 1.46 KB
Versions: 8
Compression:
Stored size: 1.46 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::ContainerInstance::Mgmt::V2018_04_01 module Models # # The environment variable to set within the container instance. # class EnvironmentVariable 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 EnvironmentVariable class as Ruby Hash. # This will be used for serialization/deserialization. # 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: true, serialized_name: 'value', type: { name: 'String' } } } } } end end end end
Version data entries
8 entries across 8 versions & 1 rubygems