File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -1831,7 +1831,6 @@ export const marshalCreateVolumeRequest = (
1831
1831
] ) ,
1832
1832
...resolveOneOf < number | string > ( [
1833
1833
{ param : 'size' , value : request . size } ,
1834
- { param : 'base_volume' , value : request . baseVolume } ,
1835
1834
{ param : 'base_snapshot' , value : request . baseSnapshot } ,
1836
1835
] ) ,
1837
1836
} )
Original file line number Diff line number Diff line change @@ -1076,22 +1076,13 @@ export type CreateVolumeRequest = {
1076
1076
/**
1077
1077
* Volume disk size, must be a multiple of 512.
1078
1078
*
1079
- * One-of ('from'): at most one of 'size', 'baseVolume', 'baseSnapshot' could
1080
- * be set.
1079
+ * One-of ('from'): at most one of 'size', 'baseSnapshot' could be set.
1081
1080
*/
1082
1081
size ?: number
1083
- /**
1084
- * @deprecated ID of the volume on which this volume will be based.
1085
- *
1086
- * One-of ('from'): at most one of 'size', 'baseVolume', 'baseSnapshot' could
1087
- * be set.
1088
- */
1089
- baseVolume ?: string
1090
1082
/**
1091
1083
* ID of the snapshot on which this volume will be based.
1092
1084
*
1093
- * One-of ('from'): at most one of 'size', 'baseVolume', 'baseSnapshot' could
1094
- * be set.
1085
+ * One-of ('from'): at most one of 'size', 'baseSnapshot' could be set.
1095
1086
*/
1096
1087
baseSnapshot ?: string
1097
1088
}
You can’t perform that action at this time.
0 commit comments