Skip to content

Commit

Permalink
Add identity property to service resource (#8017)
Browse files Browse the repository at this point in the history
  • Loading branch information
feordin authored and yungezz committed Jan 8, 2020
1 parent cd03027 commit 3e6f0b6
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,24 @@
"etag": {
"description": "An etag associated with the resource, used for optimistic concurrency when editing it.",
"type": "string"
},
"identity": {
"type": "object",
"description": "Setting indicating whether the service has a managed identity associated with it.",
"properties": {
"type":{
"description" : "Type of identity being specified, currently SystemAssigned and None are allowed.",
"type": "string",
"enum": [
"SystemAssigned",
"None"
],
"x-ms-enum": {
"name": "ManagedServiceIdentityType",
"modelAsString": true
}
}
}
}
},
"x-ms-azure-resource": true,
Expand Down

0 comments on commit 3e6f0b6

Please sign in to comment.