Skip to content

Commit

Permalink
Fix Microsoft.Resources naming issue (Azure#10318)
Browse files Browse the repository at this point in the history
* Fix Microsoft.Resources naming issue

The 'operation' enum conflicts with the 'operation' object definition
during .NET sdk generation. Renaming the enum to avoid that.

* Use camel case enum name
  • Loading branch information
eladperets authored and 00Kai0 committed Oct 12, 2020
1 parent 001b8d4 commit e6c8735
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5930,7 +5930,7 @@
"Delete"
],
"x-ms-enum": {
"name": "operation",
"name": "tagsPatchOperation",
"modelAsString": true,
"values": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6083,7 +6083,7 @@
"Delete"
],
"x-ms-enum": {
"name": "operation",
"name": "tagsPatchOperation",
"modelAsString": true,
"values": [
{
Expand Down

0 comments on commit e6c8735

Please sign in to comment.