Sha256: e246dd6a55a93b1624f4def00764093a9e105df4ae68166437843c82ea256e27
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 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::Automation::Mgmt::V2015_10_31 module Models # # The parameters supplied to the update variable operation. # class VariableUpdateParameters include MsRestAzure # @return [String] Gets or sets the name of the variable. attr_accessor :name # @return [String] Gets or sets the value of the variable. attr_accessor :value # @return [String] Gets or sets the description of the variable. attr_accessor :description # # Mapper for VariableUpdateParameters class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'VariableUpdateParameters', type: { name: 'Composite', class_name: 'VariableUpdateParameters', model_properties: { name: { required: true, serialized_name: 'name', type: { name: 'String' } }, value: { required: false, serialized_name: 'properties.value', type: { name: 'String' } }, description: { required: false, serialized_name: 'properties.description', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems