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

[ACR] Auto Build Swagger: Added identity to registry properties #4074

Merged
merged 3 commits into from
Oct 8, 2018
Merged
Changes from 2 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