Skip to content
Closed
Show file tree
Hide file tree
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
25 changes: 24 additions & 1 deletion schemas/2020-03-01/Microsoft.MachineLearningServices.json
Original file line number Diff line number Diff line change
Expand Up @@ -701,14 +701,32 @@
{
"type": "string",
"enum": [
"SystemAssigned"
"SystemAssigned",
"SystemAssigned,UserAssigned",
"UserAssigned",
"None"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The identity type."
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "dictionary containing all the user assigned identities, with resourceId of the UAI as key."
}
},
"description": "Identity for the resource."
Expand Down Expand Up @@ -993,6 +1011,11 @@
],
"description": "Settings for user account that gets created on each on the nodes of a compute."
},
"UserAssignedIdentity": {
"type": "object",
"properties": {},
"description": "User Assigned Identity"
},
"VirtualMachine": {
"type": "object",
"properties": {
Expand Down
Loading