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

Removing read only property to allow update operations as per the actual implementation #9874

Merged
merged 5 commits into from
Jun 25, 2020
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 @@ -5689,18 +5689,15 @@
},
"principalId": {
"description": "The principal id of the user to whom the role was assigned.",
"type": "string",
"readOnly": true
"type": "string"
},
"principalTenantId": {
"description": "The principal tenant id of the user to whom the role was assigned.",
"type": "string",
"readOnly": true
"type": "string"
},
"roleDefinitionId": {
"description": "The ID of the role definition.",
"type": "string",
"readOnly": true
"type": "string"
},
"scope": {
"description": "The scope at which the role was assigned.",
Expand All @@ -5709,13 +5706,11 @@
},
"userAuthenticationType": {
"description": "The authentication type.",
"type": "string",
"readOnly": true
"type": "string"
},
"userEmailAddress": {
"description": "The email address of the user.",
"type": "string",
"readOnly": true
"type": "string"
}
}
},
Expand Down