Class: Azure::ServiceFabric::V6_5_0_36::Models::PartitionQuorumLossProgress
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_5_0_36::Models::PartitionQuorumLossProgress
- Includes:
- MsRestAzure
- Defined in:
- lib/6.5.0.36/generated/azure_service_fabric/models/partition_quorum_loss_progress.rb
Overview
Information about a partition quorum loss user-induced operation.
Instance Attribute Summary collapse
-
#invoke_quorum_loss_result ⇒ InvokeQuorumLossResult
operation in a terminal state (Completed or Faulted).
-
#state ⇒ OperationState
include: ‘Invalid’, ‘Running’, ‘RollingBack’, ‘Completed’, ‘Faulted’, ‘Cancelled’, ‘ForceCancelled’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PartitionQuorumLossProgress class as Ruby Hash.
Instance Attribute Details
#invoke_quorum_loss_result ⇒ InvokeQuorumLossResult
operation in a terminal state (Completed or Faulted).
22 23 24 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/partition_quorum_loss_progress.rb', line 22 def invoke_quorum_loss_result @invoke_quorum_loss_result end |
#state ⇒ OperationState
include: ‘Invalid’, ‘Running’, ‘RollingBack’, ‘Completed’, ‘Faulted’, ‘Cancelled’, ‘ForceCancelled’
18 19 20 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/partition_quorum_loss_progress.rb', line 18 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for PartitionQuorumLossProgress 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.5.0.36/generated/azure_service_fabric/models/partition_quorum_loss_progress.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PartitionQuorumLossProgress', type: { name: 'Composite', class_name: 'PartitionQuorumLossProgress', model_properties: { state: { client_side_validation: true, required: false, serialized_name: 'State', type: { name: 'String' } }, invoke_quorum_loss_result: { client_side_validation: true, required: false, serialized_name: 'InvokeQuorumLossResult', type: { name: 'Composite', class_name: 'InvokeQuorumLossResult' } } } } } end |