Class: Azure::ARM::Scheduler::Models::JobCollectionDefinition

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString

Returns Gets the job collection resource identifier.

Returns:

  • (String)

    Gets the job collection resource identifier.



16
17
18
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 16

def id
  @id
end

#locationString

Returns Gets or sets the storage account location.

Returns:

  • (String)

    Gets or sets the storage account location.



25
26
27
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 25

def location
  @location
end

#nameString

Returns Gets or sets the job collection resource name.

Returns:

  • (String)

    Gets or sets the job collection resource name.



22
23
24
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 22

def name
  @name
end

#propertiesJobCollectionProperties

properties.

Returns:



32
33
34
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 32

def properties
  @properties
end

#tagsHash{String => String}

Returns Gets or sets the tags.

Returns:

  • (Hash{String => String})

    Gets or sets the tags.



28
29
30
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 28

def tags
  @tags
end

#typeString

Returns Gets the job collection resource type.

Returns:

  • (String)

    Gets the job collection resource type.



19
20
21
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 19

def type
  @type
end

Class Method Details

.mapperObject

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



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/generated/azure_mgmt_scheduler/models/job_collection_definition.rb', line 39

def self.mapper()
  {
    required: false,
    serialized_name: 'JobCollectionDefinition',
    type: {
      name: 'Composite',
      class_name: 'JobCollectionDefinition',
      model_properties: {
        id: {
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        location: {
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        properties: {
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'JobCollectionProperties'
          }
        }
      }
    }
  }
end