class Azure::Monitor::Mgmt::V2015_05_01::Models::WorkItemConfigurationError
Error associated with trying to get work item configuration or configurations
Attributes
code[RW]
@return [String] Error detail code and explanation
innererror[RW]
@return [InnerError]
message[RW]
@return [String] Error message
Public Class Methods
mapper()
click to toggle source
Mapper for WorkItemConfigurationError
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01/generated/azure_mgmt_monitor/models/work_item_configuration_error.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WorkItemConfigurationError', type: { name: 'Composite', class_name: 'WorkItemConfigurationError', model_properties: { code: { client_side_validation: true, required: false, serialized_name: 'code', type: { name: 'String' } }, message: { client_side_validation: true, required: false, serialized_name: 'message', type: { name: 'String' } }, innererror: { client_side_validation: true, required: false, serialized_name: 'innererror', type: { name: 'Composite', class_name: 'InnerError' } } } } } end