class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ConnectorConnectionError
The connector connection error.
Attributes
connector_id[RW]
@return [String] The connector Id.
error_code[RW]
@return [String] The error code.
id[RW]
@return [String] The error Id.
message[RW]
@return [String] The message for the connection error.
run_step_result_id[RW]
@return [String] The run step result Id.
server[RW]
@return [String] The server where the connection error happened.
time_occured[RW]
@return [DateTime] The time when the connection error occurred.
type[RW]
@return [String] The type of error.
Private Class Methods
mapper()
click to toggle source
Mapper for ConnectorConnectionError
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/connector_connection_error.rb, line 44 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectorConnectionError', type: { name: 'Composite', class_name: 'ConnectorConnectionError', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, run_step_result_id: { client_side_validation: true, required: false, serialized_name: 'runStepResultId', type: { name: 'String' } }, connector_id: { client_side_validation: true, required: false, serialized_name: 'connectorId', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } }, error_code: { client_side_validation: true, required: false, serialized_name: 'errorCode', type: { name: 'String' } }, message: { client_side_validation: true, required: false, serialized_name: 'message', type: { name: 'String' } }, time_occured: { client_side_validation: true, required: false, serialized_name: 'timeOccured', type: { name: 'DateTime' } }, server: { client_side_validation: true, required: false, serialized_name: 'server', type: { name: 'String' } } } } } end