Skip to content

Commit

Permalink
[ACR] Auto Build Swagger: Added identity to registry properties (#4074)
Browse files Browse the repository at this point in the history
* Added identity to registry properties

* CR comments

* CR comments
  • Loading branch information
xiadu94 authored and jianghaolu committed Oct 8, 2018
1 parent 3396533 commit fa75fec
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1407,6 +1407,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 @@ -1452,6 +1456,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 @@ -1550,6 +1572,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

0 comments on commit fa75fec

Please sign in to comment.