Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions packages/clients/src/api/instance/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ export type VolumeServerState =
| 'saving'
| 'hotsyncing'

export type VolumeServerVolumeType = 'l_ssd' | 'b_ssd'
export type VolumeServerVolumeType =
| 'l_ssd'
| 'b_ssd'
| 'sbs_volume'
| 'scratch'

export type VolumeState =
| 'available'
Expand All @@ -98,7 +102,12 @@ export type VolumeState =
| 'saving'
| 'hotsyncing'

export type VolumeVolumeType = 'l_ssd' | 'b_ssd' | 'unified' | 'scratch'
export type VolumeVolumeType =
| 'l_ssd'
| 'b_ssd'
| 'unified'
| 'scratch'
| 'sbs_volume'

/** Bootscript. */
export interface Bootscript {
Expand Down