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

Making updates to ActualCapacityInfo for Inference Group Status #32002

Merged
Show file tree
Hide file tree
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 @@ -13,13 +13,14 @@
"body": {
"requestedCapacity": 1,
"actualCapacityInfo": {
"allocated": 1,
"assignmentSuccess": 1,
"assignmentFailed": 1
"total": 1,
"succeeded": 1,
"failed": 1,
"outdatedSucceeded": 1,
"outdatedFailed": 1
},
"endpointCount": 1
}
}
}
}

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 have 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 Expand Up @@ -27004,4 +27016,3 @@
}
}
}

Loading