class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::ManagedIntegrationRuntimeNode
Properties of integration runtime node.
Attributes
errors[RW]
@return [Array<ManagedIntegrationRuntimeError>] The errors that occurred on this integration runtime node.
node_id[RW]
@return [String] The managed integration runtime node id.
status[RW]
@return [ManagedIntegrationRuntimeNodeStatus] The managed integration runtime node status. Possible values include: 'Starting', 'Available', 'Recycling', 'Unavailable'
Private Class Methods
mapper()
click to toggle source
Mapper for ManagedIntegrationRuntimeNode
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/managed_integration_runtime_node.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagedIntegrationRuntimeNode', type: { name: 'Composite', class_name: 'ManagedIntegrationRuntimeNode', model_properties: { node_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'nodeId', type: { name: 'String' } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'status', type: { name: 'String' } }, errors: { client_side_validation: true, required: false, serialized_name: 'errors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ManagedIntegrationRuntimeErrorElementType', type: { name: 'Composite', class_name: 'ManagedIntegrationRuntimeError' } } } } } } } end