Sha256: 1e87cb01d2d0c6fff51288769edc7d87dbe4657689f513578a0cd61acafe2969
Contents?: true
Size: 1.81 KB
Versions: 6
Compression:
Stored size: 1.81 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_10_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 # @return [String] The value of the secure environment variable. attr_accessor :secure_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: false, serialized_name: 'value', type: { name: 'String' } }, secure_value: { client_side_validation: true, required: false, serialized_name: 'secureValue', type: { name: 'String' } } } } } end end end end
Version data entries
6 entries across 6 versions & 1 rubygems