Skip to content

Commit

Permalink
removed unsupported field "grouping" from forecast
Browse files Browse the repository at this point in the history
  • Loading branch information
sashahdo committed Aug 12, 2020
1 parent 5dae0ac commit 5ab77f1
Showing 1 changed file with 35 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2488,7 +2488,7 @@
},
"dataset": {
"description": "Has definition for data in this forecast.",
"$ref": "#/definitions/QueryDataset"
"$ref": "#/definitions/ForecastDataset"
},
"includeActualCost": {
"description": "a boolean determining if actualCost will be included",
Expand All @@ -2504,6 +2504,40 @@
"timeframe"
]
},
"ForecastDataset": {
"description": "The definition of data present in the query.",
"properties": {
"granularity": {
"description": "The granularity of rows in the query.",
"type": "string",
"enum": [
"Daily"
],
"x-ms-enum": {
"name": "GranularityType",
"modelAsString": true
}
},
"configuration": {
"description": "Has configuration information for the data in the export. The configuration will be ignored if aggregation and grouping are provided.",
"$ref": "#/definitions/QueryDatasetConfiguration"
},
"aggregation": {
"type": "object",
"description": "Dictionary of aggregation expression to use in the query. The key of each item in the dictionary is the alias for the aggregated column. Query can have up to 2 aggregation clauses.",
"additionalProperties": {
"type": "object",
"$ref": "#/definitions/QueryAggregation"
},
"maxItems": 2
},
"filter": {
"type": "object",
"description": "Has filter expression to use in the query.",
"$ref": "#/definitions/QueryFilter"
}
}
},
"QueryDefinition": {
"description": "The definition of a query.",
"properties": {
Expand Down

0 comments on commit 5ab77f1

Please sign in to comment.