Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Diagnostics
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Diagnostics
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/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.
19 20 21 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/diagnostics.rb', line 19 def conditions @conditions end |
Class Method Details
.mapper ⇒ Object
Mapper for Diagnostics class as Ruby Hash. This will be used for serialization/deserialization.
26 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 55 56 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/diagnostics.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Diagnostics', type: { name: 'Composite', class_name: 'Diagnostics', model_properties: { conditions: { client_side_validation: true, required: false, read_only: true, serialized_name: 'conditions', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DiagnosticConditionElementType', type: { name: 'Composite', class_name: 'DiagnosticCondition' } } } } } } } end |