File tree 2 files changed +7
-1
lines changed
packages/clients/src/api/instance/v1
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,11 @@ export const SECURITY_GROUP_TRANSIENT_STATUSES: SecurityGroupState[] = [
26
26
export const SERVER_TRANSIENT_STATUSES : ServerState [ ] = [ 'starting' , 'stopping' ]
27
27
28
28
/** Lists transient statutes of the enum {@link SnapshotState}. */
29
- export const SNAPSHOT_TRANSIENT_STATUSES : SnapshotState [ ] = [ 'snapshotting' ]
29
+ export const SNAPSHOT_TRANSIENT_STATUSES : SnapshotState [ ] = [
30
+ 'snapshotting' ,
31
+ 'importing' ,
32
+ 'exporting' ,
33
+ ]
30
34
31
35
/** Lists transient statutes of the enum {@link TaskStatus}. */
32
36
export const TASK_TRANSIENT_STATUSES : TaskStatus [ ] = [
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ export type SnapshotState =
53
53
| 'snapshotting'
54
54
| 'error'
55
55
| 'invalid_data'
56
+ | 'importing'
57
+ | 'exporting'
56
58
57
59
export type SnapshotVolumeType =
58
60
| 'unknown_volume_type'
You can’t perform that action at this time.
0 commit comments