@daocloud-proto/mcamel-kafka 0.2.0-68 → 0.2.0-680-g1b8f63a2
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/cloudshell.pb.ts +3 -3
- package/cluster.pb.ts +387 -8
- package/common.pb.ts +91 -3
- package/insight.pb.ts +8 -12
- package/kafka.pb.ts +150 -25
- package/metric.pb.ts +13 -1
- package/package.json +1 -1
- package/storage_config.pb.ts +188 -0
- package/template.pb.ts +200 -0
- package/version.pb.ts +8 -1
package/cloudshell.pb.ts
CHANGED
|
@@ -67,12 +67,12 @@ export type GetorDeleteCloudShellRequest = {
|
|
|
67
67
|
|
|
68
68
|
export class CloudShellService {
|
|
69
69
|
static CreateCloudShell(req: CreateCloudShellRequest, initReq?: fm.InitReq): Promise<CloudShell> {
|
|
70
|
-
return fm.fetchReq<CreateCloudShellRequest, CloudShell>(`/apis/mcamel.io/kafka/
|
|
70
|
+
return fm.fetchReq<CreateCloudShellRequest, CloudShell>(`/apis/mcamel.io/kafka/v1alpha2/cloudshells`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
71
71
|
}
|
|
72
72
|
static GetCloudShell(req: GetorDeleteCloudShellRequest, initReq?: fm.InitReq): Promise<CloudShell> {
|
|
73
|
-
return fm.fetchReq<GetorDeleteCloudShellRequest, CloudShell>(`/apis/mcamel.io/kafka/
|
|
73
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, CloudShell>(`/apis/mcamel.io/kafka/v1alpha2/cloudshells/${req["name"]}?${fm.renderURLSearchParams(req, ["name"])}`, {...initReq, method: "GET"})
|
|
74
74
|
}
|
|
75
75
|
static DeleteCloudShell(req: GetorDeleteCloudShellRequest, initReq?: fm.InitReq): Promise<GoogleProtobufEmpty.Empty> {
|
|
76
|
-
return fm.fetchReq<GetorDeleteCloudShellRequest, GoogleProtobufEmpty.Empty>(`/apis/mcamel.io/kafka/
|
|
76
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, GoogleProtobufEmpty.Empty>(`/apis/mcamel.io/kafka/v1alpha2/cloudshells/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
77
77
|
}
|
|
78
78
|
}
|
package/cluster.pb.ts
CHANGED
|
@@ -7,12 +7,55 @@
|
|
|
7
7
|
import * as CommonCommon from "./common.pb"
|
|
8
8
|
import * as fm from "./fetch.pb"
|
|
9
9
|
|
|
10
|
+
export enum PermissionsType {
|
|
11
|
+
None = "None",
|
|
12
|
+
GetInstance = "GetInstance",
|
|
13
|
+
CreateInstance = "CreateInstance",
|
|
14
|
+
UpdateInstance = "UpdateInstance",
|
|
15
|
+
DeleteInstance = "DeleteInstance",
|
|
16
|
+
GetMetric = "GetMetric",
|
|
17
|
+
GetInstanceLog = "GetInstanceLog",
|
|
18
|
+
GetConfig = "GetConfig",
|
|
19
|
+
UpdateConfig = "UpdateConfig",
|
|
20
|
+
GetBackup = "GetBackup",
|
|
21
|
+
CreateBackup = "CreateBackup",
|
|
22
|
+
UpdateBackup = "UpdateBackup",
|
|
23
|
+
DeleteBackup = "DeleteBackup",
|
|
24
|
+
GetBackupConf = "GetBackupConf",
|
|
25
|
+
CreateBackupConf = "CreateBackupConf",
|
|
26
|
+
UpdateBackupConf = "UpdateBackupConf",
|
|
27
|
+
DeleteBackupConf = "DeleteBackupConf",
|
|
28
|
+
GetTemplate = "GetTemplate",
|
|
29
|
+
CreateTemplate = "CreateTemplate",
|
|
30
|
+
UpdateTemplate = "UpdateTemplate",
|
|
31
|
+
DeleteTemplate = "DeleteTemplate",
|
|
32
|
+
GetUserPassword = "GetUserPassword",
|
|
33
|
+
ExportTemplate = "ExportTemplate",
|
|
34
|
+
ImportTemplate = "ImportTemplate",
|
|
35
|
+
}
|
|
36
|
+
|
|
10
37
|
export enum EventType {
|
|
11
38
|
EVENT_TYPE_UNSPECIFIED = "EVENT_TYPE_UNSPECIFIED",
|
|
12
39
|
Normal = "Normal",
|
|
13
40
|
Warning = "Warning",
|
|
14
41
|
}
|
|
15
42
|
|
|
43
|
+
export enum GetClusterNodeTaintListRespTaintEffect {
|
|
44
|
+
NoSchedule = "NoSchedule",
|
|
45
|
+
PreferNoSchedule = "PreferNoSchedule",
|
|
46
|
+
NoExecute = "NoExecute",
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export enum InstallFileReqGVR {
|
|
50
|
+
None = "None",
|
|
51
|
+
CustomResourceDefinition = "CustomResourceDefinition",
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export enum GetAllEventListReqSortDir {
|
|
55
|
+
ASC = "ASC",
|
|
56
|
+
DESC = "DESC",
|
|
57
|
+
}
|
|
58
|
+
|
|
16
59
|
export enum GetEventListReqKind {
|
|
17
60
|
KIND_UNSPECIFIED = "KIND_UNSPECIFIED",
|
|
18
61
|
Pod = "Pod",
|
|
@@ -23,11 +66,214 @@ export enum GetWorkspaceListReqSortDir {
|
|
|
23
66
|
DESC = "DESC",
|
|
24
67
|
}
|
|
25
68
|
|
|
69
|
+
export enum ClusterItemNetworkMode {
|
|
70
|
+
Unknown = "Unknown",
|
|
71
|
+
Flannel = "Flannel",
|
|
72
|
+
Calico = "Calico",
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export enum ClusterSettingPluginPluginName {
|
|
76
|
+
PLUGIN_NAME_UNSPECIFIED = "PLUGIN_NAME_UNSPECIFIED",
|
|
77
|
+
HPA = "HPA",
|
|
78
|
+
Insight = "Insight",
|
|
79
|
+
GPU = "GPU",
|
|
80
|
+
METALLB = "METALLB",
|
|
81
|
+
Spiderpool = "Spiderpool",
|
|
82
|
+
CustomMetrics = "CustomMetrics",
|
|
83
|
+
CronHPA = "CronHPA",
|
|
84
|
+
VPA = "VPA",
|
|
85
|
+
Hwameistor = "Hwameistor",
|
|
86
|
+
Flannel = "Flannel",
|
|
87
|
+
KubeOvn = "KubeOvn",
|
|
88
|
+
OLM = "OLM",
|
|
89
|
+
EgressGateway = "EgressGateway",
|
|
90
|
+
Snapshot = "Snapshot",
|
|
91
|
+
DRA = "DRA",
|
|
92
|
+
}
|
|
93
|
+
|
|
26
94
|
export enum GetInsightAgentStatusRespInsightAgentStatus {
|
|
27
95
|
NotInstall = "NotInstall",
|
|
28
96
|
Install = "Install",
|
|
29
97
|
}
|
|
30
98
|
|
|
99
|
+
export type GetClusterNodeTaintListReq = {
|
|
100
|
+
cluster?: string
|
|
101
|
+
nodeName?: string
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export type GetClusterNodeTaintListRespTaint = {
|
|
105
|
+
key?: string
|
|
106
|
+
value?: string
|
|
107
|
+
effect?: GetClusterNodeTaintListRespTaintEffect
|
|
108
|
+
nodeName?: string
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export type GetClusterNodeTaintListResp = {
|
|
112
|
+
items?: GetClusterNodeTaintListRespTaint[]
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export type GetClusterNodeListReq = {
|
|
116
|
+
cluster?: string
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export type GetClusterNodeListRespNode = {
|
|
120
|
+
name?: string
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export type GetClusterNodeListResp = {
|
|
124
|
+
items?: GetClusterNodeListRespNode[]
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export type GetClusterReq = {
|
|
128
|
+
workspaceId?: number
|
|
129
|
+
name?: string
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export type GetClusterResp = {
|
|
133
|
+
cluster?: ClusterItem
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export type InstallFileReq = {
|
|
137
|
+
cluster?: string
|
|
138
|
+
path?: string
|
|
139
|
+
gvr?: InstallFileReqGVR
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export type InstallFileResp = {
|
|
143
|
+
message?: string
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export type GetInstallVersionReq = {
|
|
147
|
+
cluster?: string
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export type GetInstallVersionRespSupportVersion = {
|
|
151
|
+
minVersion?: string
|
|
152
|
+
maxVersion?: string
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export type GetInstallVersionRespStatus = {
|
|
156
|
+
inRange?: boolean
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export type GetInstallVersionResp = {
|
|
160
|
+
clusterVersion?: string
|
|
161
|
+
supportVersion?: GetInstallVersionRespSupportVersion
|
|
162
|
+
status?: GetInstallVersionRespStatus
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export type RestartInstanceReq = {
|
|
166
|
+
workspaceId?: number
|
|
167
|
+
cluster?: string
|
|
168
|
+
namespace?: string
|
|
169
|
+
name?: string
|
|
170
|
+
extra?: string
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export type RestartInstanceResp = {
|
|
174
|
+
message?: string
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export type GetPermissionsListReq = {
|
|
178
|
+
workspaceId?: number
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export type GetPermissionsListRespPermissions = {
|
|
182
|
+
getInstance?: boolean
|
|
183
|
+
createInstance?: boolean
|
|
184
|
+
updateInstance?: boolean
|
|
185
|
+
deleteInstance?: boolean
|
|
186
|
+
getMetric?: boolean
|
|
187
|
+
getInstanceLog?: boolean
|
|
188
|
+
getConfig?: boolean
|
|
189
|
+
updateConfig?: boolean
|
|
190
|
+
getBackup?: boolean
|
|
191
|
+
createBackup?: boolean
|
|
192
|
+
updateBackup?: boolean
|
|
193
|
+
deleteBackup?: boolean
|
|
194
|
+
getBackupConf?: boolean
|
|
195
|
+
createBackupConf?: boolean
|
|
196
|
+
updateBackupConf?: boolean
|
|
197
|
+
deleteBackupConf?: boolean
|
|
198
|
+
getTemplate?: boolean
|
|
199
|
+
createTemplate?: boolean
|
|
200
|
+
updateTemplate?: boolean
|
|
201
|
+
deleteTemplate?: boolean
|
|
202
|
+
getUserPassword?: boolean
|
|
203
|
+
exportTemplate?: boolean
|
|
204
|
+
importTemplate?: boolean
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export type GetPermissionsListResp = {
|
|
208
|
+
permissionsBool?: GetPermissionsListRespPermissions
|
|
209
|
+
permissions?: PermissionsType[]
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
export type GetAllEventKindsListResp = {
|
|
213
|
+
data?: string[]
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
export type GetAllEventKindsListReq = {
|
|
217
|
+
cluster?: string
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export type GetAllEventListReq = {
|
|
221
|
+
page?: number
|
|
222
|
+
pageSize?: number
|
|
223
|
+
sortDir?: GetAllEventListReqSortDir
|
|
224
|
+
sortBy?: string
|
|
225
|
+
searchKey?: string
|
|
226
|
+
cluster?: string
|
|
227
|
+
namespace?: string
|
|
228
|
+
name?: string
|
|
229
|
+
eventType?: EventType
|
|
230
|
+
kindName?: string
|
|
231
|
+
workspaceId?: number
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export type GetAllEventListRespItemsSource = {
|
|
235
|
+
component?: string
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export type GetAllEventListRespItemsMetadata = {
|
|
239
|
+
uid?: string
|
|
240
|
+
name?: string
|
|
241
|
+
namespace?: string
|
|
242
|
+
annotations?: {[key: string]: string}
|
|
243
|
+
resourceVersion?: string
|
|
244
|
+
creationTimestamp?: string
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
export type GetAllEventListRespItemsInvolvedObject = {
|
|
248
|
+
uid?: string
|
|
249
|
+
kind?: string
|
|
250
|
+
name?: string
|
|
251
|
+
namespace?: string
|
|
252
|
+
apiVersion?: string
|
|
253
|
+
resourceVersion?: string
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export type GetAllEventListRespItems = {
|
|
257
|
+
kind?: string
|
|
258
|
+
type?: string
|
|
259
|
+
count?: number
|
|
260
|
+
reason?: string
|
|
261
|
+
source?: GetAllEventListRespItemsSource
|
|
262
|
+
message?: string
|
|
263
|
+
metadata?: GetAllEventListRespItemsMetadata
|
|
264
|
+
apiVersion?: string
|
|
265
|
+
lastTimestamp?: string
|
|
266
|
+
firstTimestamp?: string
|
|
267
|
+
involvedObject?: GetAllEventListRespItemsInvolvedObject
|
|
268
|
+
reportingInstance?: string
|
|
269
|
+
reportingComponent?: string
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export type GetAllEventListResp = {
|
|
273
|
+
items?: GetAllEventListRespItems[]
|
|
274
|
+
pagination?: CommonCommon.Pagination
|
|
275
|
+
}
|
|
276
|
+
|
|
31
277
|
export type GetClusterNodeLabelListReq = {
|
|
32
278
|
cluster?: string
|
|
33
279
|
}
|
|
@@ -37,8 +283,32 @@ export type GetClusterNodeLabelListRespLabel = {
|
|
|
37
283
|
value?: string[]
|
|
38
284
|
}
|
|
39
285
|
|
|
286
|
+
export type GetClusterNodeLabelListRespNode2Label = {
|
|
287
|
+
nodeName?: string
|
|
288
|
+
label?: GetClusterNodeLabelListRespLabel[]
|
|
289
|
+
}
|
|
290
|
+
|
|
40
291
|
export type GetClusterNodeLabelListResp = {
|
|
41
292
|
items?: GetClusterNodeLabelListRespLabel[]
|
|
293
|
+
items1?: GetClusterNodeLabelListRespNode2Label[]
|
|
294
|
+
pagination?: CommonCommon.Pagination
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
export type GetClusterPodLabelListReq = {
|
|
298
|
+
page?: number
|
|
299
|
+
pageSize?: number
|
|
300
|
+
searchKey?: string
|
|
301
|
+
filterNamespace?: string
|
|
302
|
+
cluster?: string
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export type GetClusterPodLabelListRespLabel = {
|
|
306
|
+
key?: string
|
|
307
|
+
value?: string[]
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
export type GetClusterPodLabelListResp = {
|
|
311
|
+
items?: GetClusterPodLabelListRespLabel[]
|
|
42
312
|
pagination?: CommonCommon.Pagination
|
|
43
313
|
}
|
|
44
314
|
|
|
@@ -114,6 +384,7 @@ export type GetWorkspaceListReq = {
|
|
|
114
384
|
export type GetWorkspaceListRespItem = {
|
|
115
385
|
workspaceId?: number
|
|
116
386
|
alias?: string
|
|
387
|
+
visible?: boolean
|
|
117
388
|
}
|
|
118
389
|
|
|
119
390
|
export type GetWorkspaceListResp = {
|
|
@@ -121,15 +392,55 @@ export type GetWorkspaceListResp = {
|
|
|
121
392
|
pagination?: CommonCommon.Pagination
|
|
122
393
|
}
|
|
123
394
|
|
|
395
|
+
export type GetClusterHostnetworkPortsReq = {
|
|
396
|
+
workspaceId?: number
|
|
397
|
+
cluster?: string
|
|
398
|
+
}
|
|
399
|
+
|
|
124
400
|
export type GetClusterListReq = {
|
|
125
401
|
workspaceId?: number
|
|
402
|
+
searchKey?: string
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
export type GetClusterHostnetworkPortsResp = {
|
|
406
|
+
items?: number[]
|
|
126
407
|
}
|
|
127
408
|
|
|
128
409
|
export type GetClusterListResp = {
|
|
129
410
|
items?: string[]
|
|
411
|
+
clusters?: ClusterItem[]
|
|
130
412
|
pagination?: CommonCommon.Pagination
|
|
131
413
|
}
|
|
132
414
|
|
|
415
|
+
export type ClusterItemMetadata = {
|
|
416
|
+
name?: string
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
export type ClusterItemStatus = {
|
|
420
|
+
networkMode?: ClusterItemNetworkMode[]
|
|
421
|
+
setting?: ClusterSetting
|
|
422
|
+
clusterStatus?: CommonCommon.ClusterStatus
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
export type ClusterItem = {
|
|
426
|
+
metadata?: ClusterItemMetadata
|
|
427
|
+
status?: ClusterItemStatus
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
export type ClusterSettingPlugin = {
|
|
431
|
+
name?: ClusterSettingPluginPluginName
|
|
432
|
+
enabled?: boolean
|
|
433
|
+
intelligentDetection?: boolean
|
|
434
|
+
externalAddress?: string
|
|
435
|
+
setting?: string
|
|
436
|
+
healthy?: boolean
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
export type ClusterSetting = {
|
|
440
|
+
plugins?: ClusterSettingPlugin[]
|
|
441
|
+
network?: ClusterSettingPlugin[]
|
|
442
|
+
}
|
|
443
|
+
|
|
133
444
|
export type GetClusterNamespaceListReq = {
|
|
134
445
|
workspaceId?: number
|
|
135
446
|
cluster?: string
|
|
@@ -137,6 +448,7 @@ export type GetClusterNamespaceListReq = {
|
|
|
137
448
|
|
|
138
449
|
export type GetClusterNamespaceListResp = {
|
|
139
450
|
items?: string[]
|
|
451
|
+
disableItems?: string[]
|
|
140
452
|
pagination?: CommonCommon.Pagination
|
|
141
453
|
}
|
|
142
454
|
|
|
@@ -146,31 +458,98 @@ export type GetInsightAgentStatusReq = {
|
|
|
146
458
|
|
|
147
459
|
export type GetInsightAgentStatusResp = {
|
|
148
460
|
status?: GetInsightAgentStatusRespInsightAgentStatus
|
|
461
|
+
clusterStatus?: CommonCommon.ClusterStatus
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
export type GetResourceQuotaReq = {
|
|
465
|
+
cluster?: string
|
|
466
|
+
namespace?: string
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
export type GetResourceQuotaRespMetadata = {
|
|
470
|
+
uid?: string
|
|
471
|
+
name?: string
|
|
472
|
+
namespace?: string
|
|
473
|
+
annotations?: {[key: string]: string}
|
|
474
|
+
resourceVersion?: string
|
|
475
|
+
creationTimestamp?: string
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
export type GetResourceQuotaRespSpec = {
|
|
479
|
+
hard?: {[key: string]: string}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export type GetResourceQuotaRespStatus = {
|
|
483
|
+
hard?: {[key: string]: string}
|
|
484
|
+
used?: {[key: string]: string}
|
|
485
|
+
available?: {[key: string]: string}
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
export type GetResourceQuotaResp = {
|
|
489
|
+
metadata?: GetResourceQuotaRespMetadata
|
|
490
|
+
spec?: GetResourceQuotaRespSpec
|
|
491
|
+
status?: GetResourceQuotaRespStatus
|
|
149
492
|
}
|
|
150
493
|
|
|
151
494
|
export class Cluster {
|
|
152
495
|
static GetClusterList(req: GetClusterListReq, initReq?: fm.InitReq): Promise<GetClusterListResp> {
|
|
153
|
-
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/kafka/
|
|
496
|
+
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/clusters?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
497
|
+
}
|
|
498
|
+
static GetCluster(req: GetClusterReq, initReq?: fm.InitReq): Promise<GetClusterResp> {
|
|
499
|
+
return fm.fetchReq<GetClusterReq, GetClusterResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/clusters/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
500
|
+
}
|
|
501
|
+
static GetClusterHostnetworkPorts(req: GetClusterHostnetworkPortsReq, initReq?: fm.InitReq): Promise<GetClusterHostnetworkPortsResp> {
|
|
502
|
+
return fm.fetchReq<GetClusterHostnetworkPortsReq, GetClusterHostnetworkPortsResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/hostnetwork-ports?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
154
503
|
}
|
|
155
504
|
static GetClusterNamespaceList(req: GetClusterNamespaceListReq, initReq?: fm.InitReq): Promise<GetClusterNamespaceListResp> {
|
|
156
|
-
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/kafka/
|
|
505
|
+
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/${req["cluster"]}/namespaces?${fm.renderURLSearchParams(req, ["workspaceId", "cluster"])}`, {...initReq, method: "GET"})
|
|
157
506
|
}
|
|
158
507
|
static GetClusterNodePortList(req: GetClusterNodePortListReq, initReq?: fm.InitReq): Promise<GetClusterNodePortListResp> {
|
|
159
|
-
return fm.fetchReq<GetClusterNodePortListReq, GetClusterNodePortListResp>(`/apis/mcamel.io/kafka/
|
|
508
|
+
return fm.fetchReq<GetClusterNodePortListReq, GetClusterNodePortListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/nodeports?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
160
509
|
}
|
|
161
510
|
static GetClusterNodeLabelList(req: GetClusterNodeLabelListReq, initReq?: fm.InitReq): Promise<GetClusterNodeLabelListResp> {
|
|
162
|
-
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/kafka/
|
|
511
|
+
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/nodelabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
512
|
+
}
|
|
513
|
+
static GetClusterPodLabelList(req: GetClusterPodLabelListReq, initReq?: fm.InitReq): Promise<GetClusterPodLabelListResp> {
|
|
514
|
+
return fm.fetchReq<GetClusterPodLabelListReq, GetClusterPodLabelListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/podlabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
163
515
|
}
|
|
164
516
|
static GetWorkspaceList(req: GetWorkspaceListReq, initReq?: fm.InitReq): Promise<GetWorkspaceListResp> {
|
|
165
|
-
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/kafka/
|
|
517
|
+
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/kafka/v1alpha2/workspaces?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
166
518
|
}
|
|
167
519
|
static GetInsightAgentStatus(req: GetInsightAgentStatusReq, initReq?: fm.InitReq): Promise<GetInsightAgentStatusResp> {
|
|
168
|
-
return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/kafka/
|
|
520
|
+
return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/insight/status?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
169
521
|
}
|
|
170
522
|
static GetEventList(req: GetEventListReq, initReq?: fm.InitReq): Promise<GetEventListResp> {
|
|
171
|
-
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/kafka/
|
|
523
|
+
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/${req["namespace"]}/events?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
524
|
+
}
|
|
525
|
+
static GetAllEventList(req: GetAllEventListReq, initReq?: fm.InitReq): Promise<GetAllEventListResp> {
|
|
526
|
+
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/all-events?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
527
|
+
}
|
|
528
|
+
static GetAllEventKindsList(req: GetAllEventKindsListReq, initReq?: fm.InitReq): Promise<GetAllEventKindsListResp> {
|
|
529
|
+
return fm.fetchReq<GetAllEventKindsListReq, GetAllEventKindsListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/all-events-kinds?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
172
530
|
}
|
|
173
531
|
static GetMetallbIPAddressPoolsList(req: GetMetallbIPAddressPoolsListReq, initReq?: fm.InitReq): Promise<GetMetallbIPAddressPoolsListResp> {
|
|
174
|
-
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/kafka/
|
|
532
|
+
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/lbaddress/pools?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
533
|
+
}
|
|
534
|
+
static GetPermissionsList(req: GetPermissionsListReq, initReq?: fm.InitReq): Promise<GetPermissionsListResp> {
|
|
535
|
+
return fm.fetchReq<GetPermissionsListReq, GetPermissionsListResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/permissions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
536
|
+
}
|
|
537
|
+
static RestartInstance(req: RestartInstanceReq, initReq?: fm.InitReq): Promise<RestartInstanceResp> {
|
|
538
|
+
return fm.fetchReq<RestartInstanceReq, RestartInstanceResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["workspaceId"]}/restart`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
539
|
+
}
|
|
540
|
+
static InstallFile(req: InstallFileReq, initReq?: fm.InitReq): Promise<InstallFileResp> {
|
|
541
|
+
return fm.fetchReq<InstallFileReq, InstallFileResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/install-file`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
542
|
+
}
|
|
543
|
+
static GetInstallVersion(req: GetInstallVersionReq, initReq?: fm.InitReq): Promise<GetInstallVersionResp> {
|
|
544
|
+
return fm.fetchReq<GetInstallVersionReq, GetInstallVersionResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/install-version?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
545
|
+
}
|
|
546
|
+
static GetResourceQuota(req: GetResourceQuotaReq, initReq?: fm.InitReq): Promise<GetResourceQuotaResp> {
|
|
547
|
+
return fm.fetchReq<GetResourceQuotaReq, GetResourceQuotaResp>(`/apis/mcamel.io/kafka/v1alpha2/${req["cluster"]}/${req["namespace"]}/resourcequota?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
548
|
+
}
|
|
549
|
+
static GetClusterNodeTaintList(req: GetClusterNodeTaintListReq, initReq?: fm.InitReq): Promise<GetClusterNodeTaintListResp> {
|
|
550
|
+
return fm.fetchReq<GetClusterNodeTaintListReq, GetClusterNodeTaintListResp>(`/apis/mcamel.io/kafka/v1alpha2/clusters/${req["cluster"]}/nodes/taints?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
551
|
+
}
|
|
552
|
+
static GetClusterNodeList(req: GetClusterNodeListReq, initReq?: fm.InitReq): Promise<GetClusterNodeListResp> {
|
|
553
|
+
return fm.fetchReq<GetClusterNodeListReq, GetClusterNodeListResp>(`/apis/mcamel.io/kafka/v1alpha2/clusters/${req["cluster"]}/nodes?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
175
554
|
}
|
|
176
555
|
}
|
package/common.pb.ts
CHANGED
|
@@ -4,13 +4,34 @@
|
|
|
4
4
|
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
export enum TolerationOperator {
|
|
8
|
+
TOLERATION_OPERATOR_UNSPECIFIED = "TOLERATION_OPERATOR_UNSPECIFIED",
|
|
9
|
+
Exists = "Exists",
|
|
10
|
+
Equal = "Equal",
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export enum TaintEffect {
|
|
14
|
+
TAINT_EFFECT_UNSPECIFIED = "TAINT_EFFECT_UNSPECIFIED",
|
|
15
|
+
NoSchedule = "NoSchedule",
|
|
16
|
+
NoExecute = "NoExecute",
|
|
17
|
+
PreferNoSchedule = "PreferNoSchedule",
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export enum FilterPodStatus {
|
|
21
|
+
FILTER_POD_STATUS_UNSPECIFIED = "FILTER_POD_STATUS_UNSPECIFIED",
|
|
22
|
+
FILTER_POD_STATUS_RUNNING = "FILTER_POD_STATUS_RUNNING",
|
|
23
|
+
FILTER_POD_STATUS_ERROR = "FILTER_POD_STATUS_ERROR",
|
|
24
|
+
FILTER_POD_STATUS_COMPLETED = "FILTER_POD_STATUS_COMPLETED",
|
|
25
|
+
FILTER_POD_STATUS_WAITING = "FILTER_POD_STATUS_WAITING",
|
|
26
|
+
}
|
|
27
|
+
|
|
7
28
|
export enum ExternalTrafficPolicy {
|
|
8
29
|
Cluster = "Cluster",
|
|
9
30
|
Local = "Local",
|
|
10
31
|
}
|
|
11
32
|
|
|
12
33
|
export enum LBTyp {
|
|
13
|
-
|
|
34
|
+
MetalLB = "MetalLB",
|
|
14
35
|
Others = "Others",
|
|
15
36
|
}
|
|
16
37
|
|
|
@@ -20,6 +41,16 @@ export enum ServiceType {
|
|
|
20
41
|
LoadBalancer = "LoadBalancer",
|
|
21
42
|
}
|
|
22
43
|
|
|
44
|
+
export enum ClusterStatus {
|
|
45
|
+
UNSPECIFIED = "UNSPECIFIED",
|
|
46
|
+
Unknown = "Unknown",
|
|
47
|
+
Creating = "Creating",
|
|
48
|
+
Running = "Running",
|
|
49
|
+
Updating = "Updating",
|
|
50
|
+
Deleting = "Deleting",
|
|
51
|
+
Failed = "Failed",
|
|
52
|
+
}
|
|
53
|
+
|
|
23
54
|
export enum PageInfoReqSortDir {
|
|
24
55
|
ASC = "ASC",
|
|
25
56
|
DESC = "DESC",
|
|
@@ -106,9 +137,9 @@ export type LabelSelectorRequirement = {
|
|
|
106
137
|
|
|
107
138
|
export type Toleration = {
|
|
108
139
|
key?: string
|
|
109
|
-
operator?:
|
|
140
|
+
operator?: TolerationOperator
|
|
110
141
|
value?: string
|
|
111
|
-
effect?:
|
|
142
|
+
effect?: TaintEffect
|
|
112
143
|
tolerationSeconds?: string
|
|
113
144
|
}
|
|
114
145
|
|
|
@@ -145,9 +176,17 @@ export type PodCommon = {
|
|
|
145
176
|
cpuLimit?: number
|
|
146
177
|
memoryUsage?: number
|
|
147
178
|
memoryLimit?: number
|
|
179
|
+
pvUsedInGb?: number
|
|
180
|
+
pvAllocatedInGb?: number
|
|
148
181
|
conditions?: PodCommonCondition[]
|
|
149
182
|
containersName?: string[]
|
|
150
183
|
ownerReference?: OwnerReference[]
|
|
184
|
+
initContainersName?: string[]
|
|
185
|
+
initContainersStatuses?: ContainerStatus[]
|
|
186
|
+
containersStatuses?: ContainerStatus[]
|
|
187
|
+
podStatus?: string
|
|
188
|
+
annotations?: {[key: string]: string}
|
|
189
|
+
filterPodStatus?: FilterPodStatus
|
|
151
190
|
}
|
|
152
191
|
|
|
153
192
|
export type OwnerReference = {
|
|
@@ -161,4 +200,53 @@ export type CommonItemStatus = {
|
|
|
161
200
|
serviceAddresses?: string[]
|
|
162
201
|
webManagerAddress?: string
|
|
163
202
|
webLogAddress?: string
|
|
203
|
+
avgPvAllocatedInGb?: number
|
|
204
|
+
avgPvUsedInGb?: number
|
|
205
|
+
cpuUtilization?: number
|
|
206
|
+
memoryUtilization?: number
|
|
207
|
+
clusterStatus?: ClusterStatus
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export type AccessWhitelistInternal = {
|
|
211
|
+
namespace?: string
|
|
212
|
+
podSelector?: {[key: string]: string}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export type AccessWhitelistExternal = {
|
|
216
|
+
cidr?: string
|
|
217
|
+
ip?: string
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export type AccessWhitelist = {
|
|
221
|
+
internals?: AccessWhitelistInternal[]
|
|
222
|
+
externals?: AccessWhitelistExternal[]
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export type ContainerStatus = {
|
|
226
|
+
name?: string
|
|
227
|
+
state?: ContainerState
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export type ContainerState = {
|
|
231
|
+
waiting?: ContainerStateWaiting
|
|
232
|
+
running?: ContainerStateRunning
|
|
233
|
+
terminated?: ContainerStateTerminated
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export type ContainerStateWaiting = {
|
|
237
|
+
reason?: string
|
|
238
|
+
message?: string
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export type ContainerStateRunning = {
|
|
242
|
+
startedAt?: string
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export type ContainerStateTerminated = {
|
|
246
|
+
exitCode?: number
|
|
247
|
+
signal?: number
|
|
248
|
+
reason?: string
|
|
249
|
+
message?: string
|
|
250
|
+
startedAt?: string
|
|
251
|
+
finishedAt?: string
|
|
164
252
|
}
|
package/insight.pb.ts
CHANGED
|
@@ -20,27 +20,23 @@ export enum TargetType {
|
|
|
20
20
|
DEPLOYMENT = "DEPLOYMENT",
|
|
21
21
|
STATEFULSET = "STATEFULSET",
|
|
22
22
|
DAEMONSET = "DAEMONSET",
|
|
23
|
-
CRONJOB = "CRONJOB",
|
|
24
23
|
POD = "POD",
|
|
25
24
|
}
|
|
26
25
|
|
|
27
|
-
export enum AlertStatus {
|
|
28
|
-
ALERT_STATUS_UNSPECIFIED = "ALERT_STATUS_UNSPECIFIED",
|
|
29
|
-
ALERT_STATUS_FIRING = "ALERT_STATUS_FIRING",
|
|
30
|
-
ALERT_STATUS_RESOLVED = "ALERT_STATUS_RESOLVED",
|
|
31
|
-
}
|
|
32
|
-
|
|
33
26
|
export type AlertSummary = {
|
|
34
|
-
|
|
27
|
+
id?: string
|
|
28
|
+
groupName?: string
|
|
29
|
+
groupId?: string
|
|
35
30
|
ruleName?: string
|
|
36
|
-
|
|
31
|
+
ruleId?: string
|
|
37
32
|
clusterName?: string
|
|
38
33
|
namespace?: string
|
|
39
34
|
targetType?: TargetType
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
target?: string
|
|
36
|
+
severity?: Severity
|
|
37
|
+
value?: string
|
|
38
|
+
notifyResponse?: string
|
|
42
39
|
description?: string
|
|
43
40
|
startAt?: string
|
|
44
41
|
updateAt?: string
|
|
45
|
-
notifyResponse?: string
|
|
46
42
|
}
|