Class: Azure::CostManagement::Mgmt::V2018_05_31::Models::ReportConfigGrouping
- Inherits:
-
Object
- Object
- Azure::CostManagement::Mgmt::V2018_05_31::Models::ReportConfigGrouping
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_grouping.rb
Overview
The group by expression to be used in the report.
Instance Attribute Summary collapse
-
#column_type ⇒ ReportConfigColumnType
Possible values include: ‘Tag’, ‘Dimension’.
-
#name ⇒ String
The name of the column to group.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ReportConfigGrouping class as Ruby Hash.
Instance Attribute Details
#column_type ⇒ ReportConfigColumnType
Possible values include: ‘Tag’, ‘Dimension’
17 18 19 |
# File 'lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_grouping.rb', line 17 def column_type @column_type end |
#name ⇒ String
Returns The name of the column to group.
20 21 22 |
# File 'lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_grouping.rb', line 20 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for ReportConfigGrouping 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 |
# File 'lib/2018-05-31/generated/azure_mgmt_cost_management/models/report_config_grouping.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ReportConfigGrouping', type: { name: 'Composite', class_name: 'ReportConfigGrouping', model_properties: { column_type: { client_side_validation: true, required: true, serialized_name: 'columnType', type: { name: 'String' } }, name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } } } } } end |