Class: Azure::ServiceFabric::V6_5_0_36::Models::InvokeQuorumLossResult
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_5_0_36::Models::InvokeQuorumLossResult
- Includes:
- MsRestAzure
- Defined in:
- lib/6.5.0.36/generated/azure_service_fabric/models/invoke_quorum_loss_result.rb
Overview
Represents information about an operation in a terminal state (Completed or Faulted).
Instance Attribute Summary collapse
-
#error_code ⇒ Integer
OperationState is Faulted, this is an error code indicating the reason.
-
#selected_partition ⇒ SelectedPartition
partition that the user-induced operation acted upon.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for InvokeQuorumLossResult class as Ruby Hash.
Instance Attribute Details
#error_code ⇒ Integer
OperationState is Faulted, this is an error code indicating the reason.
18 19 20 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/invoke_quorum_loss_result.rb', line 18 def error_code @error_code end |
#selected_partition ⇒ SelectedPartition
partition that the user-induced operation acted upon.
22 23 24 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/invoke_quorum_loss_result.rb', line 22 def selected_partition @selected_partition end |
Class Method Details
.mapper ⇒ Object
Mapper for InvokeQuorumLossResult 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/invoke_quorum_loss_result.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'InvokeQuorumLossResult', type: { name: 'Composite', class_name: 'InvokeQuorumLossResult', model_properties: { error_code: { client_side_validation: true, required: false, serialized_name: 'ErrorCode', type: { name: 'Number' } }, selected_partition: { client_side_validation: true, required: false, serialized_name: 'SelectedPartition', type: { name: 'Composite', class_name: 'SelectedPartition' } } } } } end |