Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hub Generated] Review request for Microsoft.CostManagement to add version stable/2020-06-01 #10465

Merged
merged 3 commits into from
Aug 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2502,7 +2502,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 @@ -2518,6 +2518,40 @@
"timeframe"
]
},
"ForecastDataset": {
"description": "The definition of data present in the forecast.",
"properties": {
"granularity": {
"description": "The granularity of rows in the forecast.",
"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 forecast. The key of each item in the dictionary is the alias for the aggregated column. forecast 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 forecast.",
"$ref": "#/definitions/QueryFilter"
}
}
},
"QueryDefinition": {
"description": "The definition of a query.",
"properties": {
Expand Down