Skip to content
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 @@ -1387,6 +1387,10 @@
"$ref": "#/definitions/Sku",
"description": "The SKU of the container registry."
},
"identity": {
"$ref": "#/definitions/RegistryIdentity",
"description": "The identity of the container registry."
},
"properties": {
"$ref": "#/definitions/RegistryProperties",
"description": "The properties of the container registry.",
Expand Down Expand Up @@ -1432,6 +1436,24 @@
}
}
},
"RegistryIdentity": {
"description": "The identity of the container registry.",
"type": "object",
"properties": {
"type": {
"description": "The type of identity used for the registry.",
"type": "string"
},
"principalId": {
"description": "The principal ID of registry identity.",
"type": "string"
},
"tenantId": {
"description": "The tenant ID associated with the registry.",
"type": "string"
}
}
},
"RegistryProperties": {
"description": "The properties of a container registry.",
"type": "object",
Expand Down Expand Up @@ -1530,6 +1552,10 @@
"$ref": "#/definitions/Sku",
"description": "The SKU of the container registry."
},
"identity": {
"$ref": "#/definitions/RegistryIdentity",
"description": "The identity of the container registry."
},
"properties": {
"$ref": "#/definitions/RegistryPropertiesUpdateParameters",
"description": "The properties that the container registry will be updated with.",
Expand Down