class Azure::ServiceFabric::V6_2_0_9::Models::NodeTransitionProgress
Information about an NodeTransition operation. This class contains an OperationState
and a NodeTransitionResult
. The NodeTransitionResult
is not valid until OperationState
is Completed or Faulted.
Attributes
node_transition_result[RW]
@return [NodeTransitionResult] Represents information about an operation in a terminal state (Completed or Faulted).
state[RW]
@return [OperationState] The state of the operation. Possible values include: 'Invalid', 'Running', 'RollingBack', 'Completed', 'Faulted', 'Cancelled', 'ForceCancelled'
Public Class Methods
mapper()
click to toggle source
Mapper for NodeTransitionProgress
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.2.0.9/generated/azure_service_fabric/models/node_transition_progress.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NodeTransitionProgress', type: { name: 'Composite', class_name: 'NodeTransitionProgress', model_properties: { state: { client_side_validation: true, required: false, serialized_name: 'State', type: { name: 'String' } }, node_transition_result: { client_side_validation: true, required: false, serialized_name: 'NodeTransitionResult', type: { name: 'Composite', class_name: 'NodeTransitionResult' } } } } } end