Skip to content

Commit f6cc5b7

Browse files
feat(devbox): rename scheduled -> queued (#10217)
1 parent a5b61f3 commit f6cc5b7

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 119
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-0c2afaabf6aab84a49eaf4f94efa48a70afe47a73c6a684f38c0909a8f6ae15b.yml
3-
openapi_spec_hash: cf9b348173a796db0252c59468a464f7
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-b5badb6102d613aecce0a0297348c441712c818729f6251970808e9abf494aee.yml
3+
openapi_spec_hash: 3634342312dab3641c1f26a54b448dd2
44
config_hash: 9f32651e6269089b5d6c33594b992232

src/runloop_api_client/resources/devboxes/devboxes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,7 @@ def list(
531531
starting_after: str | Omit = omit,
532532
status: Literal[
533533
"scheduled",
534+
"queued",
534535
"provisioning",
535536
"initializing",
536537
"running",
@@ -2204,6 +2205,7 @@ def list(
22042205
starting_after: str | Omit = omit,
22052206
status: Literal[
22062207
"scheduled",
2208+
"queued",
22072209
"provisioning",
22082210
"initializing",
22092211
"running",

src/runloop_api_client/types/devbox_list_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class DevboxListParams(TypedDict, total=False):
2222

2323
status: Literal[
2424
"scheduled",
25+
"queued",
2526
"provisioning",
2627
"initializing",
2728
"running",

src/runloop_api_client/types/devbox_view.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class StateTransition(BaseModel):
1414
status: Optional[
1515
Literal[
1616
"scheduled",
17+
"queued",
1718
"provisioning",
1819
"initializing",
1920
"running",
@@ -26,8 +27,9 @@ class StateTransition(BaseModel):
2627
] = None
2728
"""The status of the Devbox.
2829
29-
scheduled: The Devbox is scheduled to run but infrastructure allocation has not
30-
started yet. provisioning: Runloop is allocating and booting the necessary
30+
scheduled: Deprecated. The Devbox is waiting for infrastructure allocation to
31+
start. Use queued. queued: The Devbox is waiting for infrastructure allocation
32+
to start. provisioning: Runloop is allocating and booting the necessary
3133
infrastructure resources. initializing: Runloop defined boot scripts are running
3234
to enable the environment for interaction. running: The Devbox is ready for
3335
interaction. suspending: The Devbox disk is being snapshotted as part of
@@ -90,6 +92,7 @@ class DevboxView(BaseModel):
9092

9193
status: Literal[
9294
"scheduled",
95+
"queued",
9396
"provisioning",
9497
"initializing",
9598
"running",

0 commit comments

Comments
 (0)