ReportConfigDatasetArgs

data class ReportConfigDatasetArgs(val aggregation: Output<Map<String, ReportConfigAggregationArgs>>? = null, val configuration: Output<ReportConfigDatasetConfigurationArgs>? = null, val filter: Output<ReportConfigFilterArgs>? = null, val granularity: Output<Either<String, ReportGranularityType>>? = null, val grouping: Output<List<ReportConfigGroupingArgs>>? = null, val sorting: Output<List<ReportConfigSortingArgs>>? = null) : ConvertibleToJava<ReportConfigDatasetArgs>

The definition of data present in the report.

Constructors

Link copied to clipboard
constructor(aggregation: Output<Map<String, ReportConfigAggregationArgs>>? = null, configuration: Output<ReportConfigDatasetConfigurationArgs>? = null, filter: Output<ReportConfigFilterArgs>? = null, granularity: Output<Either<String, ReportGranularityType>>? = null, grouping: Output<List<ReportConfigGroupingArgs>>? = null, sorting: Output<List<ReportConfigSortingArgs>>? = null)

Properties

Link copied to clipboard

Dictionary of aggregation expression to use in the report. The key of each item in the dictionary is the alias for the aggregated column. Report can have up to 2 aggregation clauses.

Link copied to clipboard

Has configuration information for the data in the report. The configuration will be ignored if aggregation and grouping are provided.

Link copied to clipboard
val filter: Output<ReportConfigFilterArgs>? = null

Has filter expression to use in the report.

Link copied to clipboard
val granularity: Output<Either<String, ReportGranularityType>>? = null

The granularity of rows in the report.

Link copied to clipboard
val grouping: Output<List<ReportConfigGroupingArgs>>? = null

Array of group by expression to use in the report. Report can have up to 2 group by clauses.

Link copied to clipboard
val sorting: Output<List<ReportConfigSortingArgs>>? = null

Array of order by expression to use in the report.

Functions

Link copied to clipboard
open override fun toJava(): ReportConfigDatasetArgs