@daocloud-proto/virtnest 0.14.0-rc3 → 0.15.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 +1 -1
- package/v1alpha1/cluster.pb.ts +3 -0
- package/v1alpha1/vm.pb.ts +5 -0
- package/v1alpha1/vmtemplate.pb.ts +3 -0
package/package.json
CHANGED
package/v1alpha1/cluster.pb.ts
CHANGED
package/v1alpha1/vm.pb.ts
CHANGED
|
@@ -38,6 +38,9 @@ export enum ImageSource {
|
|
|
38
38
|
export enum GPUType {
|
|
39
39
|
Nvidia_GPU = "Nvidia_GPU",
|
|
40
40
|
Nvidia_vGPU = "Nvidia_vGPU",
|
|
41
|
+
Metax_GPU = "Metax_GPU",
|
|
42
|
+
Unknown_GPU = "Unknown_GPU",
|
|
43
|
+
Unknown_vGPU = "Unknown_vGPU",
|
|
41
44
|
}
|
|
42
45
|
|
|
43
46
|
export enum DiskOperation {
|
|
@@ -346,6 +349,7 @@ export type VMSnapshot = {
|
|
|
346
349
|
status?: SnapshotStatus
|
|
347
350
|
restoreTime?: string
|
|
348
351
|
vmName?: string
|
|
352
|
+
namespace?: string
|
|
349
353
|
}
|
|
350
354
|
|
|
351
355
|
export type ListVMSnapshotsResponse = {
|
|
@@ -572,6 +576,7 @@ export type CreateVMWithVMTemplateRequest = {
|
|
|
572
576
|
secret?: string
|
|
573
577
|
network?: MultusNetwork
|
|
574
578
|
createPowerOn?: boolean
|
|
579
|
+
gpus?: GPU[]
|
|
575
580
|
}
|
|
576
581
|
|
|
577
582
|
export type CreateVMWithVMTemplateResponse = {
|
|
@@ -21,6 +21,9 @@ export enum PersistentVolumeAccessMode {
|
|
|
21
21
|
export enum GPUType {
|
|
22
22
|
Nvidia_GPU = "Nvidia_GPU",
|
|
23
23
|
Nvidia_vGPU = "Nvidia_vGPU",
|
|
24
|
+
Metax_GPU = "Metax_GPU",
|
|
25
|
+
Unknown_GPU = "Unknown_GPU",
|
|
26
|
+
Unknown_vGPU = "Unknown_vGPU",
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
export enum ImageSource {
|