Skip to content

Commit

Permalink
[ReleasePR synapse] Add userAssignedIdentities property to the Identi…
Browse files Browse the repository at this point in the history
  • Loading branch information
msftbot[bot] authored Aug 4, 2021
2 parents c7aeb5e + f8702b5 commit 069dc7c
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
23 changes: 22 additions & 1 deletion schemas/2021-05-01/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -3095,14 +3095,30 @@
"type": "string",
"enum": [
"None",
"SystemAssigned"
"SystemAssigned",
"SystemAssigned,UserAssigned"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The type of managed identity for the workspace."
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedManagedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The User Assigned Managed Identities."
}
},
"description": "The workspace managed identity"
Expand Down Expand Up @@ -4045,6 +4061,11 @@
},
"description": "Represents the properties of a database transparent data encryption."
},
"UserAssignedManagedIdentity": {
"type": "object",
"properties": {},
"description": "User Assigned Managed Identity"
},
"VirtualNetworkProfile": {
"type": "object",
"properties": {
Expand Down
23 changes: 22 additions & 1 deletion schemas/2021-06-01-preview/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -4120,14 +4120,30 @@
"type": "string",
"enum": [
"None",
"SystemAssigned"
"SystemAssigned",
"SystemAssigned,UserAssigned"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The type of managed identity for the workspace."
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedManagedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The User Assigned Managed Identities."
}
},
"description": "The workspace managed identity"
Expand Down Expand Up @@ -5289,6 +5305,11 @@
},
"description": "Represents the properties of a database transparent data encryption."
},
"UserAssignedManagedIdentity": {
"type": "object",
"properties": {},
"description": "User Assigned Managed Identity"
},
"VirtualNetworkProfile": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 069dc7c

Please sign in to comment.