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

Convert clientType from enum to string in latest preview Microsoft.Resources version #24503

Merged
merged 1 commit into from
Jul 14, 2023
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 @@ -303,33 +303,7 @@
"clientType": {
"description": "Client used to make the changes",
"type": "string",
"readOnly": true,
"enum": [
"CLI",
"Portal",
"SDK"
],
"x-ms-enum": {
"name": "clientType",
"modelAsString": true,
"values": [
{
"value": "CLI",
"description": "The change(s) were made through the Command Line Interface",
"name": "CLI"
},
{
"value": "Portal",
"description": "The change(s) were made through the Portal",
"name": "Portal"
},
{
"value": "SDK",
"description": "The change(s) were made through a Software Development Kit",
"name": "SDK"
}
]
}
"readOnly": true
},
"operation": {
"description": "The Azure Resource Provider operation that was invoked to make the change(s). See [here](https://learn.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations) for a full list of possible values",
Expand Down