class Azure::Compute::Mgmt::V2019_03_01::Models::RecoveryWalkResponse

Response after calling a manual recovery walk

Attributes

next_platform_update_domain[RW]

@return [Integer] The next update domain that needs to be walked. Null means walk spanning all update domains has been completed

walk_performed[RW]

@return [Boolean] Whether the recovery walk was performed

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-03-01/generated/azure_mgmt_compute/models/recovery_walk_response.rb, line 26
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