@daocloud-proto/virtnest 0.12.0 → 0.13.0-dev1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/virtnest",
3
- "version":"0.12.0",
3
+ "version":"0.13.0-dev1",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
package/v1alpha1/vm.pb.ts CHANGED
@@ -57,7 +57,6 @@ export enum VMStatus {
57
57
  processing = "processing",
58
58
  error = "error",
59
59
  poweroff = "poweroff",
60
- migration = "migration",
61
60
  }
62
61
 
63
62
  export enum StorageStatus {
@@ -128,6 +127,7 @@ export type ListClusterVmsInfo = {
128
127
  allowedOperation?: AllowedOperation[]
129
128
  node?: string
130
129
  gpus?: GPUType[]
130
+ migNodeSelector?: string
131
131
  }
132
132
 
133
133
  export type ListClusterVMsRequest = {
@@ -219,6 +219,7 @@ export type UpdateVMRequest = {
219
219
  memory?: string
220
220
  disks?: VMDisks
221
221
  gpus?: GPU[]
222
+ network?: MultusNetwork
222
223
  }
223
224
 
224
225
  export type UpdateVMResponse = {
@@ -307,6 +308,7 @@ export type VMStorage = {
307
308
  storageClass?: string
308
309
  allowExpand?: boolean
309
310
  pvAccessMode?: PersistentVolumeAccessMode
311
+ hotpluggable?: boolean
310
312
  }
311
313
 
312
314
  export type ListVMStoragesRequest = {