class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::DiagnosticCondition
Condition applicable to the resource, or to the job overall, that warrant customer attention.
Attributes
code[RW]
@return [String] The opaque diagnostic code.
message[RW]
@return [String] The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
since[RW]
@return [String] The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
Private Class Methods
mapper()
click to toggle source
Mapper for DiagnosticCondition
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/diagnostic_condition.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DiagnosticCondition', type: { name: 'Composite', class_name: 'DiagnosticCondition', model_properties: { since: { client_side_validation: true, required: false, read_only: true, serialized_name: 'since', type: { name: 'String' } }, code: { client_side_validation: true, required: false, read_only: true, serialized_name: 'code', type: { name: 'String' } }, message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'message', type: { name: 'String' } } } } } end