class Azure::Scheduler::Mgmt::V2016_03_01::Models::JobCollectionDefinition

Model object.

Attributes

id[RW]

@return [String] Gets the job collection resource identifier.

location[RW]

@return [String] Gets or sets the storage account location.

name[RW]

@return [String] Gets or sets the job collection resource name.

properties[RW]

@return [JobCollectionProperties] Gets or sets the job collection properties.

tags[RW]

@return [Hash{String => String}] Gets or sets the tags.

type[RW]

@return [String] Gets the job collection resource type.

Private Class Methods

mapper() click to toggle source

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

# File lib/2016-03-01/generated/azure_mgmt_scheduler/models/job_collection_definition.rb, line 40
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'JobCollectionDefinition',
    type: {
      name: 'Composite',
      class_name: 'JobCollectionDefinition',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'JobCollectionProperties'
          }
        }
      }
    }
  }
end