Skip to content

Commit c7afc23

Browse files
committed
feat(devbox): add provisioning_tier to LaunchParameters (alpha)
Adds the optional provisioning_tier field ('standard' | 'flex') to the shared LaunchParameters interface (used by both DevboxCreateParams and DevboxView), matching the field now exposed in the OpenAPI spec. Hand-applied ahead of the next Stainless regeneration so the alpha customer can use the field immediately. provisioning_tier is intentionally kept out of the public docs (stripped from the documented spec upstream). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 8671843 commit c7afc23

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/resources/shared.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,12 @@ export interface LaunchParameters {
284284
*/
285285
network_policy_id?: string | null;
286286

287+
/**
288+
* (Optional) standard is default and flex is lazily provisioned and may be
289+
* pre-empted.
290+
*/
291+
provisioning_tier?: 'standard' | 'flex' | null;
292+
287293
/**
288294
* A list of ContainerizedService names to be started when a Devbox is created. A
289295
* valid ContainerizedService must be specified in Blueprint to be started.

0 commit comments

Comments
 (0)