@@ -851,6 +851,7 @@ export interface DevboxView {
851851 * The current status of the Devbox.
852852 */
853853 status :
854+ | 'scheduled'
854855 | 'provisioning'
855856 | 'initializing'
856857 | 'running'
@@ -940,17 +941,19 @@ export namespace DevboxView {
940941 /**
941942 * The status of the Devbox.
942943 *
943- * provisioning: Runloop is allocating and booting the necessary infrastructure
944- * resources. initializing: Runloop defined boot scripts are running to enable the
945- * environment for interaction. running: The Devbox is ready for interaction.
946- * suspending: The Devbox disk is being snapshotted as part of suspension.
947- * suspended: The Devbox disk is saved and no more active compute is being used for
948- * the Devbox. resuming: The Devbox disk is being loaded as part of booting a
949- * suspended Devbox. failure: The Devbox failed as part of booting or running user
950- * requested actions. shutdown: The Devbox was successfully shutdown and no more
951- * active compute is being used.
944+ * scheduled: The Devbox is scheduled to run but infrastructure allocation has not
945+ * started yet. provisioning: Runloop is allocating and booting the necessary
946+ * infrastructure resources. initializing: Runloop defined boot scripts are running
947+ * to enable the environment for interaction. running: The Devbox is ready for
948+ * interaction. suspending: The Devbox disk is being snapshotted as part of
949+ * suspension. suspended: The Devbox disk is saved and no more active compute is
950+ * being used for the Devbox. resuming: The Devbox disk is being loaded as part of
951+ * booting a suspended Devbox. failure: The Devbox failed as part of booting or
952+ * running user requested actions. shutdown: The Devbox was successfully shutdown
953+ * and no more active compute is being used.
952954 */
953955 status ?:
956+ | 'scheduled'
954957 | 'provisioning'
955958 | 'initializing'
956959 | 'running'
@@ -1281,6 +1284,7 @@ export interface DevboxListParams extends DevboxesCursorIDPageParams {
12811284 * Filter by status
12821285 */
12831286 status ?:
1287+ | 'scheduled'
12841288 | 'provisioning'
12851289 | 'initializing'
12861290 | 'running'
0 commit comments