Skip to content

Commit

Permalink
Fixed the allowed Column Types
Browse files Browse the repository at this point in the history
  • Loading branch information
omrodrig committed Dec 12, 2022
1 parent 9b56137 commit 816a19f
Showing 1 changed file with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1481,8 +1481,14 @@
"description": "The type of the column in the report.",
"type": "string",
"enum": [
"Tag",
"Dimension"
{
"code": "TagKey",
"description": "The tag associated with the cost data."
},
{
"code": "Dimension",
"description": "The dimension of cost data."
}
],
"x-ms-enum": {
"name": "ReportConfigColumnType",
Expand Down Expand Up @@ -2742,8 +2748,14 @@
"description": "The type of the column in the export.",
"type": "string",
"enum": [
"Tag",
"Dimension"
{
"code": "TagKey",
"description": "The tag associated with the cost data."
},
{
"code": "Dimension",
"description": "The dimension of cost data."
}
],
"x-ms-enum": {
"name": "QueryColumnType",
Expand Down

0 comments on commit 816a19f

Please sign in to comment.