Class: Azure::AlertsManagement::Mgmt::V2018_05_05_preview::Models::AlertsSummaryBySeverityAndMonitorCondition
- Inherits:
-
Object
- Object
- Azure::AlertsManagement::Mgmt::V2018_05_05_preview::Models::AlertsSummaryBySeverityAndMonitorCondition
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb
Overview
Summary of the alerts by severity and monitor condition
Direct Known Subclasses
Instance Attribute Summary collapse
-
#sev0 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev0
alerts by monitor condition with severity ‘Sev0’.
-
#sev1 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev1
alerts by monitor condition with severity ‘Sev1’.
-
#sev2 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev2
alerts by monitor condition with severity ‘Sev2’.
-
#sev3 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev3
alerts by monitor condition with severity ‘Sev3’.
-
#sev4 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev4
alerts by monitor condition with severity ‘Sev4’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AlertsSummaryBySeverityAndMonitorCondition class as Ruby Hash.
Instance Attribute Details
#sev0 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev0
alerts by monitor condition with severity ‘Sev0’
17 18 19 |
# File 'lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb', line 17 def sev0 @sev0 end |
#sev1 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev1
alerts by monitor condition with severity ‘Sev1’
21 22 23 |
# File 'lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb', line 21 def sev1 @sev1 end |
#sev2 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev2
alerts by monitor condition with severity ‘Sev2’
25 26 27 |
# File 'lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb', line 25 def sev2 @sev2 end |
#sev3 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev3
alerts by monitor condition with severity ‘Sev3’
29 30 31 |
# File 'lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb', line 29 def sev3 @sev3 end |
#sev4 ⇒ AlertsSummaryBySeverityAndMonitorConditionSev4
alerts by monitor condition with severity ‘Sev4’
33 34 35 |
# File 'lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb', line 33 def sev4 @sev4 end |
Class Method Details
.mapper ⇒ Object
Mapper for AlertsSummaryBySeverityAndMonitorCondition class as Ruby Hash. This will be used for serialization/deserialization.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/2018-05-05-preview/generated/azure_mgmt_alerts_management/models/alerts_summary_by_severity_and_monitor_condition.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'alertsSummaryBySeverityAndMonitorCondition', type: { name: 'Composite', class_name: 'AlertsSummaryBySeverityAndMonitorCondition', model_properties: { sev0: { client_side_validation: true, required: false, serialized_name: 'sev0', type: { name: 'Composite', class_name: 'AlertsSummaryBySeverityAndMonitorConditionSev0' } }, sev1: { client_side_validation: true, required: false, serialized_name: 'sev1', type: { name: 'Composite', class_name: 'AlertsSummaryBySeverityAndMonitorConditionSev1' } }, sev2: { client_side_validation: true, required: false, serialized_name: 'sev2', type: { name: 'Composite', class_name: 'AlertsSummaryBySeverityAndMonitorConditionSev2' } }, sev3: { client_side_validation: true, required: false, serialized_name: 'sev3', type: { name: 'Composite', class_name: 'AlertsSummaryBySeverityAndMonitorConditionSev3' } }, sev4: { client_side_validation: true, required: false, serialized_name: 'sev4', type: { name: 'Composite', class_name: 'AlertsSummaryBySeverityAndMonitorConditionSev4' } } } } } end |