Skip to content

Commit 8f23fcf

Browse files
authored
feat(inference): add scaling deployment status (#2311)
1 parent f89e805 commit 8f23fcf

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

packages_generated/inference/src/v1/content.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export const DEPLOYMENT_TRANSIENT_STATUSES: DeploymentStatus[] = [
77
'creating',
88
'deploying',
99
'deleting',
10+
'scaling',
1011
]
1112

1213
/** Lists transient statutes of the enum {@link ModelStatus}. */

packages_generated/inference/src/v1/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export type DeploymentStatus =
1010
| 'error'
1111
| 'deleting'
1212
| 'locked'
13+
| 'scaling'
1314

1415
export type ListDeploymentsRequestOrderBy =
1516
| 'created_at_desc'

packages_generated/inference/src/v1beta1/content.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ export const DEPLOYMENT_TRANSIENT_STATUSES: DeploymentStatus[] = [
77
'creating',
88
'deploying',
99
'deleting',
10+
'scaling',
1011
]

packages_generated/inference/src/v1beta1/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export type DeploymentStatus =
1010
| 'error'
1111
| 'deleting'
1212
| 'locked'
13+
| 'scaling'
1314

1415
export type ListDeploymentsRequestOrderBy =
1516
| 'created_at_desc'

0 commit comments

Comments
 (0)