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

Refinement: added x-ms-enum for tags patch operation #9828

Merged
merged 8 commits into from
Jul 17, 2020
Original file line number Diff line number Diff line change
Expand Up @@ -5928,7 +5928,25 @@
"Replace",
"Merge",
"Delete"
]
],
"x-ms-enum": {
"name": "operation",
"modelAsString": true,
"values": [
{
"value": "Replace",
"description": "The 'replace' option replaces the entire set of existing tags with a new set."
},
{
"value": "Merge",
"description": "The 'merge' option allows adding tags with new names and updating the values of tags with existing names."
},
{
"value": "Delete",
"description": "The 'delete' option allows selectively deleting tags based on given names or name/value pairs."
}
]
}
},
"properties": {
"$ref": "#/definitions/Tags",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5959,7 +5959,25 @@
"Replace",
"Merge",
"Delete"
]
],
"x-ms-enum": {
"name": "operation",
"modelAsString": true,
"values": [
{
"value": "Replace",
"description": "The 'replace' option replaces the entire set of existing tags with a new set."
},
{
"value": "Merge",
"description": "The 'merge' option allows adding tags with new names and updating the values of tags with existing names."
},
{
"value": "Delete",
"description": "The 'delete' option allows selectively deleting tags based on given names or name/value pairs."
}
]
}
},
"properties": {
"$ref": "#/definitions/Tags",
Expand Down