Class: Azure::ARM::Web::Models::RecoverResponse

Inherits:
MsRestAzure::Resource
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_web/models/recover_response.rb

Overview

Response for an app recovery request.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#operation_idString

status of the corresponding operation.

Returns:

  • (String)

    ID of the recovery operation. Can be used to check the



18
19
20
# File 'lib/generated/azure_mgmt_web/models/recover_response.rb', line 18

def operation_id
  @operation_id
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/generated/azure_mgmt_web/models/recover_response.rb', line 25

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