class Azure::CostManagement::Mgmt::V2019_04_01_preview::Models::ReportConfigGrouping

The group by expression to be used in the report.

Attributes

name[RW]

@return [String] The name of the column to group. This version supports subscription lowest possible grain.

type[RW]

@return [ReportConfigColumnType] Has type of the column to group. Possible values include: 'Tag', 'Dimension'

Private Class Methods

mapper() click to toggle source

Mapper for ReportConfigGrouping class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-04-01-preview/generated/azure_mgmt_cost_management/models/report_config_grouping.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ReportConfigGrouping',
    type: {
      name: 'Composite',
      class_name: 'ReportConfigGrouping',
      model_properties: {
        type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end