Skip to content

Commit cb59e8b

Browse files
jrvb-rlclaude
andauthored
feat(devbox): add provisioning_tier (flex) to LaunchParameters (alpha) (#808)
Co-authored-by: Reflex <noreply@anthropic.com>
1 parent 60f82be commit cb59e8b

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

src/runloop_api_client/types/shared/launch_parameters.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ class LaunchParameters(BaseModel):
7474
will inherit this policy unless explicitly overridden.
7575
"""
7676

77+
provisioning_tier: Optional[Literal["standard", "flex"]] = None
78+
"""(Optional, Alpha) standard is default and flex is lazily provisioned and may be pre-empted.
79+
80+
This is an alpha feature and its behavior may change without notice.
81+
"""
82+
7783
required_services: Optional[List[str]] = None
7884
"""A list of ContainerizedService names to be started when a Devbox is created.
7985

src/runloop_api_client/types/shared_params/launch_parameters.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ class LaunchParameters(TypedDict, total=False):
7676
will inherit this policy unless explicitly overridden.
7777
"""
7878

79+
provisioning_tier: Optional[Literal["standard", "flex"]]
80+
"""(Optional, Alpha) standard is default and flex is lazily provisioned and may be pre-empted.
81+
82+
This is an alpha feature and its behavior may change without notice.
83+
"""
84+
7985
required_services: Optional[SequenceNotStr[str]]
8086
"""A list of ContainerizedService names to be started when a Devbox is created.
8187

0 commit comments

Comments
 (0)