Skip to content

Commit

Permalink
Add contract changes to ARM repo for MFE inference group status (#31606)
Browse files Browse the repository at this point in the history
* Add new contract changes to ARM repo for MFE inference group status

* Add new contract changes to ARM repo for MFE inference group status
  • Loading branch information
ritujhams authored Nov 28, 2024
1 parent edc6e6a commit 6412bca
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@
"body": {
"requestedCapacity": 1,
"actualCapacityInfo": {
"allocated": 1,
"assignmentSuccess": 1,
"assignmentFailed": 1
"total": 1,
"succeeded": 1,
"failed": 1,
"outdatedSucceeded": 1,
"outdatedFailed": 1
},
"endpointCount": 1
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13761,21 +13761,33 @@
"ActualCapacityInfo": {
"type": "object",
"properties": {
"allocated": {
"total": {
"format": "int32",
"description": "Gets or sets the total number of instances for the group.",
"description": "Gets or sets the total number of instances (scale units) regardless of provisioning state or whether current group payload version matches the target group payload.",
"default": 0,
"type": "integer"
},
"assignmentFailed": {
"succeeded": {
"format": "int32",
"description": "Gets or sets the number of instances which failed to successfully complete assignment.",
"description": "Gets or sets the number of instances (scale units) which have Succeeded provisioning state and target group payload.",
"default": 0,
"type": "integer"
},
"assignmentSuccess": {
"failed": {
"format": "int32",
"description": "Gets or sets the number of instances which successfully completed assignment.",
"description": "Gets or sets the number of instances (scale units) which Failed provisioning state and have target group payload.",
"default": 0,
"type": "integer"
},
"outdatedSucceeded": {
"format": "int32",
"description": "Gets or sets the number of instances (scale units) which have Succeeded provisioning state but do not have target group payload.",
"default": 0,
"type": "integer"
},
"outdatedFailed": {
"format": "int32",
"description": "Gets or sets the number of instances (scale units) which have Failed provisioning state but do not have target group payload.",
"default": 0,
"type": "integer"
}
Expand Down

0 comments on commit 6412bca

Please sign in to comment.