Skip to content

Commit e4e2f29

Browse files
authored
feat(instance): add new sbs_volume and scratch volumes types (#857)
1 parent 9100013 commit e4e2f29

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

packages/clients/src/api/instance/v1/types.gen.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ export type VolumeServerState =
8787
| 'saving'
8888
| 'hotsyncing'
8989

90-
export type VolumeServerVolumeType = 'l_ssd' | 'b_ssd'
90+
export type VolumeServerVolumeType =
91+
| 'l_ssd'
92+
| 'b_ssd'
93+
| 'sbs_volume'
94+
| 'scratch'
9195

9296
export type VolumeState =
9397
| 'available'
@@ -98,7 +102,12 @@ export type VolumeState =
98102
| 'saving'
99103
| 'hotsyncing'
100104

101-
export type VolumeVolumeType = 'l_ssd' | 'b_ssd' | 'unified' | 'scratch'
105+
export type VolumeVolumeType =
106+
| 'l_ssd'
107+
| 'b_ssd'
108+
| 'unified'
109+
| 'scratch'
110+
| 'sbs_volume'
102111

103112
/** Bootscript. */
104113
export interface Bootscript {

0 commit comments

Comments
 (0)