Class: Azure::ARM::Resources::Models::DeploymentOperation

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_resources/models/deployment_operation.rb

Overview

Deployment operation information.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString



17
18
19
# File 'lib/generated/azure_mgmt_resources/models/deployment_operation.rb', line 17

def id
  @id
end

#operation_idString



20
21
22
# File 'lib/generated/azure_mgmt_resources/models/deployment_operation.rb', line 20

def operation_id
  @operation_id
end

#propertiesDeploymentOperationProperties



23
24
25
# File 'lib/generated/azure_mgmt_resources/models/deployment_operation.rb', line 23

def properties
  @properties
end

Class Method Details

.mapperObject

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



30
31
32
33
34
35
36
37
38
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
# File 'lib/generated/azure_mgmt_resources/models/deployment_operation.rb', line 30

def self.mapper()
  {
    required: false,
    serialized_name: 'DeploymentOperation',
    type: {
      name: 'Composite',
      class_name: 'DeploymentOperation',
      model_properties: {
        id: {
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        operation_id: {
          required: false,
          read_only: true,
          serialized_name: 'operationId',
          type: {
            name: 'String'
          }
        },
        properties: {
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'DeploymentOperationProperties'
          }
        }
      }
    }
  }
end