Class: Azure::AlertsManagement::Mgmt::V2019_03_01::Models::SmartGroupAggregatedProperty
- Inherits:
-
Object
- Object
- Azure::AlertsManagement::Mgmt::V2019_03_01::Models::SmartGroupAggregatedProperty
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01/generated/azure_mgmt_alerts_management/models/smart_group_aggregated_property.rb
Overview
Aggregated property of each type
Instance Attribute Summary collapse
-
#count ⇒ Integer
Total number of items of type.
-
#name ⇒ String
Name of the type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SmartGroupAggregatedProperty class as Ruby Hash.
Instance Attribute Details
#count ⇒ Integer
Returns Total number of items of type.
19 20 21 |
# File 'lib/2019-03-01/generated/azure_mgmt_alerts_management/models/smart_group_aggregated_property.rb', line 19 def count @count end |
#name ⇒ String
Returns Name of the type.
16 17 18 |
# File 'lib/2019-03-01/generated/azure_mgmt_alerts_management/models/smart_group_aggregated_property.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for SmartGroupAggregatedProperty 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 |
# File 'lib/2019-03-01/generated/azure_mgmt_alerts_management/models/smart_group_aggregated_property.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'smartGroupAggregatedProperty', type: { name: 'Composite', class_name: 'SmartGroupAggregatedProperty', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, count: { client_side_validation: true, required: false, serialized_name: 'count', type: { name: 'Number' } } } } } end |