Class: Azure::Labservices::Mgmt::V2018_10_15::Models::OperationBatchStatusPayload

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_batch_status_payload.rb

Overview

Payload to get the status of an operation

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#urlsArray<String>

Returns The operation url of long running operation.

Returns:

  • (Array<String>)

    The operation url of long running operation



16
17
18
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_batch_status_payload.rb', line 16

def urls
  @urls
end

Class Method Details

.mapperObject

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



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_batch_status_payload.rb', line 23

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OperationBatchStatusPayload',
    type: {
      name: 'Composite',
      class_name: 'OperationBatchStatusPayload',
      model_properties: {
        urls: {
          client_side_validation: true,
          required: true,
          serialized_name: 'urls',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end