Skip to content

Commit c23b8bd

Browse files
committed
docs(devbox): mark provisioning_tier as an alpha feature
Note that provisioning_tier is alpha and its behavior may change without notice. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 0488c36 commit c23b8bd

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/runloop_api_client/types/shared/launch_parameters.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ class LaunchParameters(BaseModel):
7575
"""
7676

7777
provisioning_tier: Optional[Literal["standard", "flex"]] = None
78-
"""(Optional) standard is default and flex is lazily provisioned and may be pre-empted."""
78+
"""(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+
"""
7982

8083
required_services: Optional[List[str]] = None
8184
"""A list of ContainerizedService names to be started when a Devbox is created.

src/runloop_api_client/types/shared_params/launch_parameters.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ class LaunchParameters(TypedDict, total=False):
7777
"""
7878

7979
provisioning_tier: Optional[Literal["standard", "flex"]]
80-
"""(Optional) standard is default and flex is lazily provisioned and may be pre-empted."""
80+
"""(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+
"""
8184

8285
required_services: Optional[SequenceNotStr[str]]
8386
"""A list of ContainerizedService names to be started when a Devbox is created.

0 commit comments

Comments
 (0)