Class: Azure::AlertsManagement::Mgmt::V2019_03_01::Models::AlertModificationProperties
- Inherits:
-
Object
- Object
- Azure::AlertsManagement::Mgmt::V2019_03_01::Models::AlertModificationProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01/generated/azure_mgmt_alerts_management/models/alert_modification_properties.rb
Overview
Properties of the alert modification item.
Instance Attribute Summary collapse
-
#alert_id ⇒ String
retrieved.
-
#modifications ⇒ Array<AlertModificationItem>
Modification details.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AlertModificationProperties class as Ruby Hash.
Instance Attribute Details
#alert_id ⇒ String
retrieved
17 18 19 |
# File 'lib/2019-03-01/generated/azure_mgmt_alerts_management/models/alert_modification_properties.rb', line 17 def alert_id @alert_id end |
#modifications ⇒ Array<AlertModificationItem>
Returns Modification details.
20 21 22 |
# File 'lib/2019-03-01/generated/azure_mgmt_alerts_management/models/alert_modification_properties.rb', line 20 def modifications @modifications end |
Class Method Details
.mapper ⇒ Object
Mapper for AlertModificationProperties 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 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/2019-03-01/generated/azure_mgmt_alerts_management/models/alert_modification_properties.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'alertModificationProperties', type: { name: 'Composite', class_name: 'AlertModificationProperties', model_properties: { alert_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'alertId', type: { name: 'String' } }, modifications: { client_side_validation: true, required: false, serialized_name: 'modifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'AlertModificationItemElementType', type: { name: 'Composite', class_name: 'AlertModificationItem' } } } } } } } end |