@daocloud-proto/virtnest 0.19.0-rc1 → 0.19.0-rc2
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/vm.pb.ts +4 -0
- package/v1alpha1/vmtemplate.pb.ts +1 -0
package/package.json
CHANGED
package/v1alpha1/vm.pb.ts
CHANGED
|
@@ -187,6 +187,7 @@ export type CreateVMRequest = {
|
|
|
187
187
|
network?: MultusNetwork
|
|
188
188
|
createPowerOn?: boolean
|
|
189
189
|
gpus?: GPU[]
|
|
190
|
+
nameservers?: string[]
|
|
190
191
|
}
|
|
191
192
|
|
|
192
193
|
export type GPU = {
|
|
@@ -231,6 +232,7 @@ export type UpdateVMRequest = {
|
|
|
231
232
|
disks?: VMDisks
|
|
232
233
|
gpus?: GPU[]
|
|
233
234
|
network?: MultusNetwork
|
|
235
|
+
nameservers?: string[]
|
|
234
236
|
}
|
|
235
237
|
|
|
236
238
|
export type UpdateVMResponse = {
|
|
@@ -279,6 +281,7 @@ export type GetVMResponse = {
|
|
|
279
281
|
network?: MultusNetworkInfo
|
|
280
282
|
gpus?: GPU[]
|
|
281
283
|
migNodeSelector?: string
|
|
284
|
+
nameservers?: string[]
|
|
282
285
|
}
|
|
283
286
|
|
|
284
287
|
export type MultusNetworkInfoItem = {
|
|
@@ -586,6 +589,7 @@ export type CreateVMWithVMTemplateRequest = {
|
|
|
586
589
|
network?: MultusNetwork
|
|
587
590
|
createPowerOn?: boolean
|
|
588
591
|
gpus?: GPU[]
|
|
592
|
+
nameservers?: string[]
|
|
589
593
|
}
|
|
590
594
|
|
|
591
595
|
export type CreateVMWithVMTemplateResponse = {
|