class Azure::Automation::Mgmt::V2015_10_31::Models::ConnectionUpdateParameters

The parameters supplied to the update connection operation.

Attributes

description[RW]

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

field_definition_values[RW]

@return [Hash{String => String}] Gets or sets the field definition values of the connection.

name[RW]

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

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/connection_update_parameters.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ConnectionUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'ConnectionUpdateParameters',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        },
        field_definition_values: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.fieldDefinitionValues',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end