@daocloud-proto/virtnest 0.2.0-rc1 → 0.3.0-dev-1
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/image.pb.ts +1 -1
- package/v1alpha1/vm.pb.ts +3 -0
package/package.json
CHANGED
package/v1alpha1/image.pb.ts
CHANGED
|
@@ -22,7 +22,6 @@ export type Pagination = {
|
|
|
22
22
|
export type ListRegistriesRequest = {
|
|
23
23
|
cluster?: string
|
|
24
24
|
namespace?: string
|
|
25
|
-
global?: boolean
|
|
26
25
|
page?: number
|
|
27
26
|
pageSize?: number
|
|
28
27
|
public?: boolean
|
|
@@ -65,6 +64,7 @@ export type ListRepositoriesRequest = {
|
|
|
65
64
|
|
|
66
65
|
export type ListRepositoriesResponse = {
|
|
67
66
|
items?: Repository[]
|
|
67
|
+
pagination?: Pagination
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
export type Repository = {
|
package/v1alpha1/vm.pb.ts
CHANGED
|
@@ -79,6 +79,7 @@ export type ListClusterVmsInfo = {
|
|
|
79
79
|
osFamily?: OSFamily
|
|
80
80
|
vmErrorMessage?: VmErrorMessage
|
|
81
81
|
allowedOperation?: AllowedOperation[]
|
|
82
|
+
node?: string
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
export type ListClusterVMsRequest = {
|
|
@@ -190,6 +191,8 @@ export type GetVMResponse = {
|
|
|
190
191
|
osFamily?: OSFamily
|
|
191
192
|
osVersion?: string
|
|
192
193
|
imageUrl?: string
|
|
194
|
+
node?: string
|
|
195
|
+
allowedOperation?: AllowedOperation[]
|
|
193
196
|
}
|
|
194
197
|
|
|
195
198
|
export type VMNetwork = {
|