Skip to content

Commit

Permalink
PATCH operation should have sku, identity properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Komal Yadav committed Mar 29, 2023
1 parent 880d9bb commit 3f37fcd
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,20 @@
"registryName": "string",
"api-version": "2023-04-01-preview",
"body": {
"tags": {}
"tags": {},
"identity": {
"type": "SystemAssigned",
"userAssignedIdentities": {
"string": {}
}
},
"sku": {
"name": "string",
"tier": "Basic",
"size": "string",
"family": "string",
"capacity": 1
}
}
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,20 @@
"registryName": "string",
"api-version": "2023-04-01-preview",
"body": {
"tags": {}
"tags": {},
"identity": {
"type": "UserAssigned",
"userAssignedIdentities": {
"string": {}
}
},
"sku": {
"name": "string",
"tier": "Basic",
"size": "string",
"family": "string",
"capacity": 1
}
}
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,14 @@
"description": "Strictly used in update requests.",
"type": "object",
"properties": {
"identity": {
"description": "Managed service identity (system assigned and/or user assigned identities)",
"$ref": "#/definitions/PartialManagedServiceIdentity"
},
"sku": {
"description": "Sku details required for ARM contract for Autoscaling.",
"$ref": "#/definitions/PartialSku"
},
"tags": {
"description": "Resource tags.",
"type": "object",
Expand Down

0 comments on commit 3f37fcd

Please sign in to comment.