class Azure::Automation::Mgmt::V2015_10_31::Models::VariableUpdateParameters

The parameters supplied to the update variable operation.

Attributes

description[RW]

@return [String] Gets or sets the description of the variable.

name[RW]

@return [String] Gets or sets the name of the variable.

value[RW]

@return [String] Gets or sets the value of the variable.

Private Class Methods

mapper() click to toggle source

Mapper for VariableUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2015-10-31/generated/azure_mgmt_automation/models/variable_update_parameters.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VariableUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'VariableUpdateParameters',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.value',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end