Class: Azure::ARM::StreamAnalytics::Models::Diagnostics
- Inherits:
-
Object
- Object
- Azure::ARM::StreamAnalytics::Models::Diagnostics
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_stream_analytics/models/diagnostics.rb
Overview
Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
Instance Attribute Summary collapse
-
#conditions ⇒ Array<DiagnosticCondition>
conditions applicable to the resource, or to the job overall, that warrant customer attention.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Diagnostics class as Ruby Hash.
Instance Attribute Details
#conditions ⇒ Array<DiagnosticCondition>
conditions applicable to the resource, or to the job overall, that warrant customer attention.
20 21 22 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/diagnostics.rb', line 20 def conditions @conditions end |
Class Method Details
.mapper ⇒ Object
Mapper for Diagnostics class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/diagnostics.rb', line 27 def self.mapper() { required: false, serialized_name: 'Diagnostics', type: { name: 'Composite', class_name: 'Diagnostics', model_properties: { conditions: { required: false, read_only: true, serialized_name: 'conditions', type: { name: 'Sequence', element: { required: false, serialized_name: 'DiagnosticConditionElementType', type: { name: 'Composite', class_name: 'DiagnosticCondition' } } } } } } } end |