Class: Azure::Compute::Mgmt::V2018_10_01::Models::RecoveryWalkResponse

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-10-01/generated/azure_mgmt_compute/models/recovery_walk_response.rb

Overview

Response after calling a manual recovery walk

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#next_platform_update_domainInteger

means walk spanning all update domains has been completed

Returns:

  • (Integer)

    The next update domain that needs to be walked. Null



20
21
22
# File 'lib/2018-10-01/generated/azure_mgmt_compute/models/recovery_walk_response.rb', line 20

def next_platform_update_domain
  @next_platform_update_domain
end

#walk_performedBoolean

Returns Whether the recovery walk was performed.

Returns:

  • (Boolean)

    Whether the recovery walk was performed



16
17
18
# File 'lib/2018-10-01/generated/azure_mgmt_compute/models/recovery_walk_response.rb', line 16

def walk_performed
  @walk_performed
end

Class Method Details

.mapperObject

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



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
# File 'lib/2018-10-01/generated/azure_mgmt_compute/models/recovery_walk_response.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RecoveryWalkResponse',
    type: {
      name: 'Composite',
      class_name: 'RecoveryWalkResponse',
      model_properties: {
        walk_performed: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'walkPerformed',
          type: {
            name: 'Boolean'
          }
        },
        next_platform_update_domain: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'nextPlatformUpdateDomain',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end