Class: Azure::ServiceFabric::V6_2_0_9::Models::PartitionDataLossProgress

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.2.0.9/generated/azure_service_fabric/models/partition_data_loss_progress.rb

Overview

Information about a partition data loss user-induced operation.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#invoke_data_loss_resultInvokeDataLossResult

operation in a terminal state (Completed or Faulted).

Returns:



22
23
24
# File 'lib/6.2.0.9/generated/azure_service_fabric/models/partition_data_loss_progress.rb', line 22

def invoke_data_loss_result
  @invoke_data_loss_result
end

#stateOperationState

include: ‘Invalid’, ‘Running’, ‘RollingBack’, ‘Completed’, ‘Faulted’, ‘Cancelled’, ‘ForceCancelled’

Returns:



18
19
20
# File 'lib/6.2.0.9/generated/azure_service_fabric/models/partition_data_loss_progress.rb', line 18

def state
  @state
end

Class Method Details

.mapperObject

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



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
# File 'lib/6.2.0.9/generated/azure_service_fabric/models/partition_data_loss_progress.rb', line 29

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PartitionDataLossProgress',
    type: {
      name: 'Composite',
      class_name: 'PartitionDataLossProgress',
      model_properties: {
        state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'State',
          type: {
            name: 'String'
          }
        },
        invoke_data_loss_result: {
          client_side_validation: true,
          required: false,
          serialized_name: 'InvokeDataLossResult',
          type: {
            name: 'Composite',
            class_name: 'InvokeDataLossResult'
          }
        }
      }
    }
  }
end