Class: Azure::ServiceFabric::V6_3_0_9::Models::NodeTransitionResult
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_3_0_9::Models::NodeTransitionResult
- Includes:
- MsRestAzure
- Defined in:
- lib/6.3.0.9/generated/azure_service_fabric/models/node_transition_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.
-
#node_result ⇒ NodeResult
targeted by a user-induced operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NodeTransitionResult 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.3.0.9/generated/azure_service_fabric/models/node_transition_result.rb', line 18 def error_code @error_code end |
#node_result ⇒ NodeResult
targeted by a user-induced operation.
22 23 24 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/node_transition_result.rb', line 22 def node_result @node_result end |
Class Method Details
.mapper ⇒ Object
Mapper for NodeTransitionResult 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.3.0.9/generated/azure_service_fabric/models/node_transition_result.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NodeTransitionResult', type: { name: 'Composite', class_name: 'NodeTransitionResult', model_properties: { error_code: { client_side_validation: true, required: false, serialized_name: 'ErrorCode', type: { name: 'Number' } }, node_result: { client_side_validation: true, required: false, serialized_name: 'NodeResult', type: { name: 'Composite', class_name: 'NodeResult' } } } } } end |