-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed cost allocation tags to cost tags and added schema for get li…
…st of all available tag keys (#2862) * Added Tags filter for budgets and updated the api version Added Tags filter for budgets and updated the api version * Updated comments Updated comments * Incorporated review comments Incorporated review comments * Incorporated review comments Incorporated review comments * Incorporated review comment Incorporated review comment * Added Tags filter and grouping for UsageDetails Added Tags filter and grouping for UsageDetails * Added reservation recommendations and tags Added reservation recommendations and tags * Incorporated review comments Incorporated review comments * Incorporated review comments Incorporated review comments * Removed unwanted space Removed unwanted space * Removed extra whitespace Removed extra whitespace * add swagger->sdk config for go * fix broken tags for go * Added schema spec for cost allocation tags Added schema spec for cost allocation tags * Updated Get Operation Updated Get Operation * Incorporated review comments Incorporated review comments * Review comments incorporated Review comments incorporated * Updated path Updated path * Renamed cost allocation tags to cost tags and added schema for get list of all available tag keys Renamed cost allocation tags to cost tags and added schema for get list of all available tag keys * Incorporated review comments Incorporated review comments * Incorporated review comments Incorporated review comments * Incorporated review comments Incorporated review comments
- Loading branch information
1 parent
6467703
commit b9da36a
Showing
4 changed files
with
164 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...n/consumption/resource-manager/Microsoft.Consumption/stable/2018-03-31/examples/Tags.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-31", | ||
"billingAccountId": "12345" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "providers/Microsoft.CostManagement/billingAccounts/{billingaccount-id}/providers/Microsoft.Consumption/tags/tags1", | ||
"name": "tags1", | ||
"type": "Microsoft.Consumption/tags", | ||
"eTag": "\"1d34d012214157f\"", | ||
"properties": { | ||
"tags": [ | ||
{ | ||
"key": "Department" | ||
}, | ||
{ | ||
"key": "CostCenter" | ||
}, | ||
{ | ||
"key": "Portal" | ||
}, | ||
{ | ||
"key": "OrgName" | ||
}, | ||
{ | ||
"key": "Namespace" | ||
}, | ||
{ | ||
"key": "resourceType" | ||
}, | ||
{ | ||
"key": "Subsystem" | ||
}, | ||
{ | ||
"key": "Environment" | ||
}, | ||
{ | ||
"key": "clusterName" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |