Report Dataset Args
data class ReportDatasetArgs(val aggregation: Output<Map<String, ReportAggregationArgs>>? = null, val configuration: Output<ReportDatasetConfigurationArgs>? = null, val filter: Output<ReportFilterArgs>? = null, val granularity: Output<Either<String, GranularityType>>? = null, val grouping: Output<List<ReportGroupingArgs>>? = null) : ConvertibleToJava<ReportDatasetArgs>
The definition of data present in the report.
Constructors
Link copied to clipboard
constructor(aggregation: Output<Map<String, ReportAggregationArgs>>? = null, configuration: Output<ReportDatasetConfigurationArgs>? = null, filter: Output<ReportFilterArgs>? = null, granularity: Output<Either<String, GranularityType>>? = null, grouping: Output<List<ReportGroupingArgs>>? = 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
Has filter expression to use in the report.
Link copied to clipboard
The granularity of rows in the report.
Link copied to clipboard
Array of group by expression to use in the report. Report can have up to 2 group by clauses.