@daocloud-proto/mcamel-mongodb 0.3.0-rc1-12 → 0.8.0-rc1-2

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/cluster.pb.ts CHANGED
@@ -29,6 +29,7 @@ export enum PermissionsType {
29
29
  CreateTemplate = "CreateTemplate",
30
30
  UpdateTemplate = "UpdateTemplate",
31
31
  DeleteTemplate = "DeleteTemplate",
32
+ GetUserPassword = "GetUserPassword",
32
33
  }
33
34
 
34
35
  export enum EventType {
@@ -37,6 +38,11 @@ export enum EventType {
37
38
  Warning = "Warning",
38
39
  }
39
40
 
41
+ export enum InstallFileReqGVR {
42
+ None = "None",
43
+ CustomResourceDefinition = "CustomResourceDefinition",
44
+ }
45
+
40
46
  export enum GetAllEventListReqSortDir {
41
47
  ASC = "ASC",
42
48
  DESC = "DESC",
@@ -63,6 +69,47 @@ export enum GetInsightAgentStatusRespInsightAgentStatus {
63
69
  Install = "Install",
64
70
  }
65
71
 
72
+ export type InstallFileReq = {
73
+ cluster?: string
74
+ path?: string
75
+ gvr?: InstallFileReqGVR
76
+ }
77
+
78
+ export type InstallFileResp = {
79
+ message?: string
80
+ }
81
+
82
+ export type GetInstallVersionReq = {
83
+ cluster?: string
84
+ }
85
+
86
+ export type GetInstallVersionRespSupportVersion = {
87
+ minVersion?: string
88
+ maxVersion?: string
89
+ }
90
+
91
+ export type GetInstallVersionRespStatus = {
92
+ inRange?: boolean
93
+ }
94
+
95
+ export type GetInstallVersionResp = {
96
+ clusterVersion?: string
97
+ supportVersion?: GetInstallVersionRespSupportVersion
98
+ status?: GetInstallVersionRespStatus
99
+ }
100
+
101
+ export type RestartInstanceReq = {
102
+ workspaceId?: number
103
+ cluster?: string
104
+ namespace?: string
105
+ name?: string
106
+ extra?: string
107
+ }
108
+
109
+ export type RestartInstanceResp = {
110
+ message?: string
111
+ }
112
+
66
113
  export type GetPermissionsListReq = {
67
114
  workspaceId?: number
68
115
  }
@@ -88,6 +135,7 @@ export type GetPermissionsListRespPermissions = {
88
135
  createTemplate?: boolean
89
136
  updateTemplate?: boolean
90
137
  deleteTemplate?: boolean
138
+ getUserPassword?: boolean
91
139
  }
92
140
 
93
141
  export type GetPermissionsListResp = {
@@ -168,8 +216,14 @@ export type GetClusterNodeLabelListRespLabel = {
168
216
  value?: string[]
169
217
  }
170
218
 
219
+ export type GetClusterNodeLabelListRespNode2Label = {
220
+ nodeName?: string
221
+ label?: GetClusterNodeLabelListRespLabel[]
222
+ }
223
+
171
224
  export type GetClusterNodeLabelListResp = {
172
225
  items?: GetClusterNodeLabelListRespLabel[]
226
+ items1?: GetClusterNodeLabelListRespNode2Label[]
173
227
  pagination?: CommonCommon.Pagination
174
228
  }
175
229
 
@@ -271,11 +325,20 @@ export type GetWorkspaceListResp = {
271
325
  pagination?: CommonCommon.Pagination
272
326
  }
273
327
 
328
+ export type GetClusterHostnetworkPortsReq = {
329
+ workspaceId?: number
330
+ cluster?: string
331
+ }
332
+
274
333
  export type GetClusterListReq = {
275
334
  workspaceId?: number
276
335
  searchKey?: string
277
336
  }
278
337
 
338
+ export type GetClusterHostnetworkPortsResp = {
339
+ items?: number[]
340
+ }
341
+
279
342
  export type GetClusterListResp = {
280
343
  items?: string[]
281
344
  clusters?: ClusterItem[]
@@ -302,6 +365,7 @@ export type GetClusterNamespaceListReq = {
302
365
 
303
366
  export type GetClusterNamespaceListResp = {
304
367
  items?: string[]
368
+ disableItems?: string[]
305
369
  pagination?: CommonCommon.Pagination
306
370
  }
307
371
 
@@ -311,12 +375,45 @@ export type GetInsightAgentStatusReq = {
311
375
 
312
376
  export type GetInsightAgentStatusResp = {
313
377
  status?: GetInsightAgentStatusRespInsightAgentStatus
378
+ clusterStatus?: CommonCommon.ClusterStatus
379
+ }
380
+
381
+ export type GetResourceQuotaReq = {
382
+ cluster?: string
383
+ namespace?: string
384
+ }
385
+
386
+ export type GetResourceQuotaRespMetadata = {
387
+ uid?: string
388
+ name?: string
389
+ namespace?: string
390
+ annotations?: {[key: string]: string}
391
+ resourceVersion?: string
392
+ creationTimestamp?: string
393
+ }
394
+
395
+ export type GetResourceQuotaRespSpec = {
396
+ hard?: {[key: string]: string}
397
+ }
398
+
399
+ export type GetResourceQuotaRespStatus = {
400
+ hard?: {[key: string]: string}
401
+ used?: {[key: string]: string}
402
+ }
403
+
404
+ export type GetResourceQuotaResp = {
405
+ metadata?: GetResourceQuotaRespMetadata
406
+ spec?: GetResourceQuotaRespSpec
407
+ status?: GetResourceQuotaRespStatus
314
408
  }
315
409
 
316
410
  export class Cluster {
317
411
  static GetClusterList(req: GetClusterListReq, initReq?: fm.InitReq): Promise<GetClusterListResp> {
318
412
  return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/clusters?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
319
413
  }
414
+ static GetClusterHostnetworkPorts(req: GetClusterHostnetworkPortsReq, initReq?: fm.InitReq): Promise<GetClusterHostnetworkPortsResp> {
415
+ return fm.fetchReq<GetClusterHostnetworkPortsReq, GetClusterHostnetworkPortsResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/hostnetwork-ports?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
416
+ }
320
417
  static GetClusterNamespaceList(req: GetClusterNamespaceListReq, initReq?: fm.InitReq): Promise<GetClusterNamespaceListResp> {
321
418
  return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/${req["cluster"]}/namespaces?${fm.renderURLSearchParams(req, ["workspaceId", "cluster"])}`, {...initReq, method: "GET"})
322
419
  }
@@ -350,4 +447,16 @@ export class Cluster {
350
447
  static GetPermissionsList(req: GetPermissionsListReq, initReq?: fm.InitReq): Promise<GetPermissionsListResp> {
351
448
  return fm.fetchReq<GetPermissionsListReq, GetPermissionsListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/permissions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
352
449
  }
450
+ static RestartInstance(req: RestartInstanceReq, initReq?: fm.InitReq): Promise<RestartInstanceResp> {
451
+ return fm.fetchReq<RestartInstanceReq, RestartInstanceResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/restart`, {...initReq, method: "POST", body: JSON.stringify(req)})
452
+ }
453
+ static InstallFile(req: InstallFileReq, initReq?: fm.InitReq): Promise<InstallFileResp> {
454
+ return fm.fetchReq<InstallFileReq, InstallFileResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["cluster"]}/install-file`, {...initReq, method: "POST", body: JSON.stringify(req)})
455
+ }
456
+ static GetInstallVersion(req: GetInstallVersionReq, initReq?: fm.InitReq): Promise<GetInstallVersionResp> {
457
+ return fm.fetchReq<GetInstallVersionReq, GetInstallVersionResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["cluster"]}/install-version?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
458
+ }
459
+ static GetResourceQuota(req: GetResourceQuotaReq, initReq?: fm.InitReq): Promise<GetResourceQuotaResp> {
460
+ return fm.fetchReq<GetResourceQuotaReq, GetResourceQuotaResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["cluster"]}/${req["namespace"]}/resourcequota?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
461
+ }
353
462
  }
package/common.pb.ts CHANGED
@@ -20,6 +20,16 @@ export enum ServiceType {
20
20
  LoadBalancer = "LoadBalancer",
21
21
  }
22
22
 
23
+ export enum ClusterStatus {
24
+ UNSPECIFIED = "UNSPECIFIED",
25
+ Unknown = "Unknown",
26
+ Creating = "Creating",
27
+ Running = "Running",
28
+ Updating = "Updating",
29
+ Deleting = "Deleting",
30
+ Failed = "Failed",
31
+ }
32
+
23
33
  export enum PageInfoReqSortDir {
24
34
  ASC = "ASC",
25
35
  DESC = "DESC",
@@ -170,6 +180,7 @@ export type CommonItemStatus = {
170
180
  avgPvUsedInGb?: number
171
181
  cpuUtilization?: number
172
182
  memoryUtilization?: number
183
+ clusterStatus?: ClusterStatus
173
184
  }
174
185
 
175
186
  export type AccessWhitelistInternal = {
package/metric.pb.ts CHANGED
@@ -7,7 +7,18 @@
7
7
  import * as CommonCommon from "./common.pb"
8
8
  import * as fm from "./fetch.pb"
9
9
  import * as InsightIoApiInsightV1alpha1Insight from "./insight.pb"
10
+
11
+ export enum GetAlertsListReqSortDir {
12
+ ASC = "ASC",
13
+ DESC = "DESC",
14
+ }
15
+
10
16
  export type GetAlertsListReq = {
17
+ page?: number
18
+ pageSize?: number
19
+ sortDir?: GetAlertsListReqSortDir
20
+ sortBy?: string
21
+ searchKey?: string
11
22
  cluster?: string
12
23
  namespace?: string
13
24
  name?: string
package/mongodb.pb.ts CHANGED
@@ -6,6 +6,7 @@
6
6
 
7
7
  import * as CommonCommon from "./common.pb"
8
8
  import * as fm from "./fetch.pb"
9
+ import * as TemplateTemplate from "./template.pb"
9
10
 
10
11
  type Absent<T, K extends keyof T> = { [k in Exclude<keyof T, K>]?: undefined };
11
12
  type OneOf<T> =
@@ -22,6 +23,11 @@ export enum Status {
22
23
  Creating = "Creating",
23
24
  }
24
25
 
26
+ export enum GetMinioListReqSortDir {
27
+ ASC = "ASC",
28
+ DESC = "DESC",
29
+ }
30
+
25
31
  export enum GetMongodbListReqSortDir {
26
32
  ASC = "ASC",
27
33
  DESC = "DESC",
@@ -36,6 +42,27 @@ export enum CreateMongodbReqMode {
36
42
  REPLICASET = "REPLICASET",
37
43
  }
38
44
 
45
+ export enum GetMongodbBackupListReqSortDir {
46
+ ASC = "ASC",
47
+ DESC = "DESC",
48
+ }
49
+
50
+ export enum MongodbBackupItemStatusStatus {
51
+ Running = "Running",
52
+ Failed = "Failed",
53
+ Succeeded = "Succeeded",
54
+ }
55
+
56
+ export enum MongodbBackupItemStatusBackupType {
57
+ Full = "Full",
58
+ Incremental = "Incremental",
59
+ }
60
+
61
+ export enum MongodbBackupItemStatusBackupMethod {
62
+ Manual = "Manual",
63
+ Auto = "Auto",
64
+ }
65
+
39
66
  export enum GetMongodbParamRespSelectSelectType {
40
67
  Single = "Single",
41
68
  Multiple = "Multiple",
@@ -59,12 +86,51 @@ export enum GetMongodbPodListRespPodType {
59
86
  PodTypeUnknown = "PodTypeUnknown",
60
87
  PodTypePrimary = "PodTypePrimary",
61
88
  PodTypeSecondary = "PodTypeSecondary",
89
+ PodTypeExpress = "PodTypeExpress",
62
90
  }
63
91
 
64
92
  export enum GetMongodbConfRespItemsParamType {
65
93
  conf = "conf",
66
94
  }
67
95
 
96
+ export enum MongodbItemStatusRestoreInitialStatus {
97
+ Unknown = "Unknown",
98
+ Running = "Running",
99
+ Failed = "Failed",
100
+ Succeeded = "Succeeded",
101
+ }
102
+
103
+ export type GetMinioListResp = {
104
+ items?: TenantItem[]
105
+ pagination?: CommonCommon.Pagination
106
+ }
107
+
108
+ export type GetMinioListReq = {
109
+ page?: number
110
+ pageSize?: number
111
+ sortDir?: GetMinioListReqSortDir
112
+ sortBy?: string
113
+ searchKey?: string
114
+ workspaceId?: number
115
+ }
116
+
117
+ export type TenantItemCreateMinioReq = {
118
+ name?: string
119
+ namespace?: string
120
+ cluster?: string
121
+ }
122
+
123
+ export type TenantItem = {
124
+ apiVersion?: string
125
+ kind?: string
126
+ spec?: TenantItemCreateMinioReq
127
+ status?: TenantItemStatus
128
+ }
129
+
130
+ export type TenantItemStatus = {
131
+ common?: CommonCommon.CommonItemStatus
132
+ }
133
+
68
134
  export type GetMongodbUsersReq = {
69
135
  cluster?: string
70
136
  namespace?: string
@@ -144,6 +210,92 @@ export type CreateMongodbReq = {
144
210
  lbTyp?: CommonCommon.LBTyp
145
211
  lbPoolName?: string
146
212
  lbAddress?: string
213
+ isOpenExpress?: boolean
214
+ expressServiceType?: CommonCommon.ServiceType
215
+ expressNodePort?: number
216
+ expressCpuRequest?: string
217
+ expressCpuLimit?: string
218
+ expressMemoryRequest?: string
219
+ expressMemoryLimit?: string
220
+ expressExternalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy
221
+ expressLbTyp?: CommonCommon.LBTyp
222
+ expressLbPoolName?: string
223
+ expressLbAddress?: string
224
+ storageConfigName?: string
225
+ storageConfigNamespace?: string
226
+ storageConfigCluster?: string
227
+ isOpenAutoBackup?: boolean
228
+ initSourceMongodbClusterName?: string
229
+ initSourceBackupName?: string
230
+ backupSchedule?: string
231
+ backupBucket?: string
232
+ backupBucketSubPath?: string
233
+ backupHistoryLimit?: number
234
+ confTemplateName?: string
235
+ }
236
+
237
+ export type DeleteMongodbBackupReq = {
238
+ cluster?: string
239
+ namespace?: string
240
+ backupName?: string
241
+ isOpenAutoBackup?: boolean
242
+ }
243
+
244
+ export type DeleteMongodbBackupResp = {
245
+ message?: string
246
+ }
247
+
248
+ export type CreateMongodbRecoverReq = {
249
+ workspaceId?: number
250
+ cluster?: string
251
+ namespace?: string
252
+ name?: string
253
+ backupName?: string
254
+ targetMongodbName?: string
255
+ targetMongodbNamespace?: string
256
+ targetMongodbCluster?: string
257
+ }
258
+
259
+ export type CreateMongodbRecoverResp = {
260
+ message?: string
261
+ }
262
+
263
+ export type GetMongodbBackupListReq = {
264
+ page?: number
265
+ pageSize?: number
266
+ sortDir?: GetMongodbBackupListReqSortDir
267
+ sortBy?: string
268
+ searchKey?: string
269
+ cluster?: string
270
+ namespace?: string
271
+ name?: string
272
+ }
273
+
274
+ export type GetMongodbBackupListResp = {
275
+ items?: MongodbBackupItem[]
276
+ pagination?: CommonCommon.Pagination
277
+ }
278
+
279
+ export type MongodbBackupItemMetadata = {
280
+ creationTimestamp?: string
281
+ name?: string
282
+ namespace?: string
283
+ }
284
+
285
+ export type MongodbBackupItem = {
286
+ metadata?: MongodbBackupItemMetadata
287
+ spec?: CreateMongodbBackupReq
288
+ status?: MongodbBackupItemStatus
289
+ }
290
+
291
+ export type MongodbBackupItemStatus = {
292
+ status?: MongodbBackupItemStatusStatus
293
+ message?: string
294
+ backupUrl?: string
295
+ backupType?: MongodbBackupItemStatusBackupType
296
+ backupMethod?: MongodbBackupItemStatusBackupMethod
297
+ completionTimestamp?: string
298
+ startTimestamp?: string
147
299
  }
148
300
 
149
301
  export type UpdateMongodbConfReq = {
@@ -151,6 +303,8 @@ export type UpdateMongodbConfReq = {
151
303
  namespace?: string
152
304
  name?: string
153
305
  conf?: string
306
+ confItems?: TemplateTemplate.TemplateConfigItem[]
307
+ reloadFromConfTemplateName?: string
154
308
  }
155
309
 
156
310
  export type UpdateMongodbParamsResp = {
@@ -165,13 +319,6 @@ export type GetMongodbParamRespSelectDataStringValue = {
165
319
  value?: string
166
320
  }
167
321
 
168
- export type GetMongodbParamRespSelectDataResourceValue = {
169
- cpuRequest?: string
170
- cpuLimit?: string
171
- memoryRequest?: string
172
- memoryLimit?: string
173
- }
174
-
175
322
  export type GetMongodbParamRespSelectDataIntValue = {
176
323
  value?: number
177
324
  }
@@ -186,7 +333,7 @@ type BaseGetMongodbParamRespSelectData = {
186
333
  }
187
334
 
188
335
  export type GetMongodbParamRespSelectData = BaseGetMongodbParamRespSelectData
189
- & OneOf<{ sValue: GetMongodbParamRespSelectDataStringValue; rValue: GetMongodbParamRespSelectDataResourceValue; iValue: GetMongodbParamRespSelectDataIntValue; scValue: GetMongodbParamRespSelectDataStorageClassValue }>
336
+ & OneOf<{ sValue: GetMongodbParamRespSelectDataStringValue; iValue: GetMongodbParamRespSelectDataIntValue; scValue: GetMongodbParamRespSelectDataStorageClassValue }>
190
337
 
191
338
  export type GetMongodbParamRespSelect = {
192
339
  selectType?: GetMongodbParamRespSelectSelectType
@@ -197,7 +344,6 @@ export type GetMongodbParamResp = {
197
344
  version?: GetMongodbParamRespSelect
198
345
  conf?: GetMongodbParamRespSelect
199
346
  replicas?: GetMongodbParamRespSelect
200
- resource?: GetMongodbParamRespSelect
201
347
  storage?: GetMongodbParamRespSelect
202
348
  }
203
349
 
@@ -318,6 +464,7 @@ export type MongodbItemStatus = {
318
464
  cpuUtilization?: number
319
465
  memoryUtilization?: number
320
466
  avgReplicationLagInSecond?: number
467
+ restoreInitialStatus?: MongodbItemStatusRestoreInitialStatus
321
468
  }
322
469
 
323
470
  export type MongodbItemMetadata = {
@@ -325,6 +472,7 @@ export type MongodbItemMetadata = {
325
472
  creationTimestamp?: string
326
473
  name?: string
327
474
  namespace?: string
475
+ uid?: string
328
476
  }
329
477
 
330
478
  export type MongodbItem = {
@@ -335,6 +483,39 @@ export type MongodbItem = {
335
483
  status?: MongodbItemStatus
336
484
  }
337
485
 
486
+ export type UpdateMongodbBackupConfigReq = {
487
+ workspaceId?: number
488
+ cluster?: string
489
+ namespace?: string
490
+ name?: string
491
+ backupSchedule?: string
492
+ backupBucket?: string
493
+ backupHistoryLimit?: number
494
+ backupBucketSubPath?: string
495
+ isOpenAutoBackup?: boolean
496
+ storageConfigName?: string
497
+ storageConfigNamespace?: string
498
+ storageConfigCluster?: string
499
+ }
500
+
501
+ export type UpdateMongodbBackupConfigResp = {
502
+ message?: string
503
+ }
504
+
505
+ export type CreateMongodbBackupReq = {
506
+ workspaceId?: number
507
+ cluster?: string
508
+ namespace?: string
509
+ name?: string
510
+ backupName?: string
511
+ backupBucket?: string
512
+ backupBucketSubPath?: string
513
+ }
514
+
515
+ export type CreateMongodbBackupResp = {
516
+ message?: string
517
+ }
518
+
338
519
  export class Mongodb {
339
520
  static GetMongodbList(req: GetMongodbListReq, initReq?: fm.InitReq): Promise<GetMongodbListResp> {
340
521
  return fm.fetchReq<GetMongodbListReq, GetMongodbListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/mongodbs?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
@@ -375,4 +556,22 @@ export class Mongodb {
375
556
  static GetMongodbUsers(req: GetMongodbUsersReq, initReq?: fm.InitReq): Promise<GetMongodbUsersResp> {
376
557
  return fm.fetchReq<GetMongodbUsersReq, GetMongodbUsersResp>(`/apis/mcamel.io/mongodb/v1alpha1/mongodb/${req["cluster"]}/${req["namespace"]}/${req["name"]}/users?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
377
558
  }
559
+ static GetMinioList(req: GetMinioListReq, initReq?: fm.InitReq): Promise<GetMinioListResp> {
560
+ return fm.fetchReq<GetMinioListReq, GetMinioListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/minios?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
561
+ }
562
+ static UpdateMongodbBackupConfig(req: UpdateMongodbBackupConfigReq, initReq?: fm.InitReq): Promise<UpdateMongodbBackupConfigResp> {
563
+ return fm.fetchReq<UpdateMongodbBackupConfigReq, UpdateMongodbBackupConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/mongodb/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backup/config`, {...initReq, method: "PUT", body: JSON.stringify(req)})
564
+ }
565
+ static CreateMongodbBackup(req: CreateMongodbBackupReq, initReq?: fm.InitReq): Promise<CreateMongodbBackupResp> {
566
+ return fm.fetchReq<CreateMongodbBackupReq, CreateMongodbBackupResp>(`/apis/mcamel.io/mongodb/v1alpha1/mongodb/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backup`, {...initReq, method: "POST", body: JSON.stringify(req)})
567
+ }
568
+ static GetMongodbBackupList(req: GetMongodbBackupListReq, initReq?: fm.InitReq): Promise<GetMongodbBackupListResp> {
569
+ return fm.fetchReq<GetMongodbBackupListReq, GetMongodbBackupListResp>(`/apis/mcamel.io/mongodb/v1alpha1/mongodb/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backups?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
570
+ }
571
+ static DeleteMongodbBackup(req: DeleteMongodbBackupReq, initReq?: fm.InitReq): Promise<DeleteMongodbBackupResp> {
572
+ return fm.fetchReq<DeleteMongodbBackupReq, DeleteMongodbBackupResp>(`/apis/mcamel.io/mongodb/v1alpha1/mongodb/backups/${req["cluster"]}/${req["namespace"]}/${req["backupName"]}`, {...initReq, method: "DELETE"})
573
+ }
574
+ static CreateMongodbRecover(req: CreateMongodbRecoverReq, initReq?: fm.InitReq): Promise<CreateMongodbRecoverResp> {
575
+ return fm.fetchReq<CreateMongodbRecoverReq, CreateMongodbRecoverResp>(`/apis/mcamel.io/mongodb/v1alpha1/mongodb/${req["cluster"]}/${req["namespace"]}/${req["name"]}/recover`, {...initReq, method: "POST", body: JSON.stringify(req)})
576
+ }
378
577
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-mongodb",
3
- "version":"0.3.0-rc1-12",
3
+ "version":"0.8.0-rc1-2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,188 @@
1
+ /* eslint-disable */
2
+ // @ts-nocheck
3
+ /*
4
+ * This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
5
+ */
6
+
7
+ import * as CommonCommon from "./common.pb"
8
+ import * as fm from "./fetch.pb"
9
+
10
+ type Absent<T, K extends keyof T> = { [k in Exclude<keyof T, K>]?: undefined };
11
+ type OneOf<T> =
12
+ | { [k in keyof T]?: undefined }
13
+ | (
14
+ keyof T extends infer K ?
15
+ (K extends string & keyof T ? { [k in K]: T[K] } & Absent<T, K>
16
+ : never)
17
+ : never);
18
+
19
+ export enum GetStorageConfigParamRespSelectSelectType {
20
+ Single = "Single",
21
+ Multiple = "Multiple",
22
+ }
23
+
24
+ export enum GetStorageConfigConsumersRespStorageConfigConsumerType {
25
+ STORAGE_CONFIG_CONSUMER_TYPE_UNSPECIFIED = "STORAGE_CONFIG_CONSUMER_TYPE_UNSPECIFIED",
26
+ STORAGE_CONFIG_CONSUMER_TYPE_MYSQL = "STORAGE_CONFIG_CONSUMER_TYPE_MYSQL",
27
+ STORAGE_CONFIG_CONSUMER_TYPE_REDIS = "STORAGE_CONFIG_CONSUMER_TYPE_REDIS",
28
+ }
29
+
30
+ export enum GetStorageConfigListReqSortDir {
31
+ ASC = "ASC",
32
+ DESC = "DESC",
33
+ }
34
+
35
+ export type GetStorageConfigParamReq = {
36
+ }
37
+
38
+ export type GetStorageConfigParamRespSelectDataStringValue = {
39
+ value?: string
40
+ }
41
+
42
+ export type GetStorageConfigParamRespSelectDataIntValue = {
43
+ value?: number
44
+ }
45
+
46
+
47
+ type BaseGetStorageConfigParamRespSelectData = {
48
+ }
49
+
50
+ export type GetStorageConfigParamRespSelectData = BaseGetStorageConfigParamRespSelectData
51
+ & OneOf<{ sValue: GetStorageConfigParamRespSelectDataStringValue; iValue: GetStorageConfigParamRespSelectDataIntValue }>
52
+
53
+ export type GetStorageConfigParamRespSelect = {
54
+ selectType?: GetStorageConfigParamRespSelectSelectType
55
+ data?: GetStorageConfigParamRespSelectData[]
56
+ }
57
+
58
+ export type GetStorageConfigParamResp = {
59
+ storageType?: GetStorageConfigParamRespSelect
60
+ }
61
+
62
+ export type CreateStorageConfigBucketCheckJobReq = {
63
+ storageType?: string
64
+ endpoint?: string
65
+ accessKey?: string
66
+ secretKey?: string
67
+ bucket?: string
68
+ cluster?: string
69
+ namespace?: string
70
+ name?: string
71
+ }
72
+
73
+ export type CreateStorageConfigBucketCheckJobResp = {
74
+ message?: string
75
+ }
76
+
77
+ export type CreateStorageConfigReq = {
78
+ workspaceId?: number
79
+ cluster?: string
80
+ namespace?: string
81
+ name?: string
82
+ storageType?: string
83
+ accessKey?: string
84
+ secretKey?: string
85
+ bucket?: string
86
+ endpoint?: string
87
+ minioCluster?: string
88
+ minioNamespace?: string
89
+ minioName?: string
90
+ description?: string
91
+ }
92
+
93
+ export type CreateStorageConfigResp = {
94
+ message?: string
95
+ }
96
+
97
+ export type GetStorageConfigConsumersReq = {
98
+ workspaceId?: number
99
+ name?: string
100
+ }
101
+
102
+ export type GetStorageConfigConsumersRespConsumer = {
103
+ type?: GetStorageConfigConsumersRespStorageConfigConsumerType
104
+ cluster?: string
105
+ namespace?: string
106
+ name?: string
107
+ }
108
+
109
+ export type GetStorageConfigConsumersResp = {
110
+ consumers?: GetStorageConfigConsumersRespConsumer[]
111
+ }
112
+
113
+ export type DeleteStorageConfigReq = {
114
+ workspaceId?: number
115
+ name?: string
116
+ cluster?: string
117
+ namespace?: string
118
+ }
119
+
120
+ export type DeleteStorageConfigResp = {
121
+ message?: string
122
+ }
123
+
124
+ export type UpdateStorageConfigResp = {
125
+ message?: string
126
+ }
127
+
128
+ export type StorageConfigItemStorageConfigStatus = {
129
+ lastUpdateTimestamp?: string
130
+ createTimestamp?: string
131
+ }
132
+
133
+ export type StorageConfigItem = {
134
+ spec?: CreateStorageConfigReq
135
+ status?: StorageConfigItemStorageConfigStatus
136
+ }
137
+
138
+ export type GetStorageConfigReq = {
139
+ workspaceId?: number
140
+ name?: string
141
+ namespace?: string
142
+ cluster?: string
143
+ }
144
+
145
+ export type GetStorageConfigResp = {
146
+ item?: StorageConfigItem
147
+ }
148
+
149
+ export type GetStorageConfigListReq = {
150
+ page?: number
151
+ pageSize?: number
152
+ sortDir?: GetStorageConfigListReqSortDir
153
+ sortBy?: string
154
+ searchKey?: string
155
+ workspaceId?: number
156
+ }
157
+
158
+ export type GetStorageConfigListResp = {
159
+ items?: StorageConfigItem[]
160
+ pagination?: CommonCommon.Pagination
161
+ }
162
+
163
+ export class StorageConfig {
164
+ static GetStorageConfigParam(req: GetStorageConfigParamReq, initReq?: fm.InitReq): Promise<GetStorageConfigParamResp> {
165
+ return fm.fetchReq<GetStorageConfigParamReq, GetStorageConfigParamResp>(`/apis/mcamel.io/mongodb/v1alpha1/storage-config/param?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
166
+ }
167
+ static CreateStorageConfigBucketCheckJob(req: CreateStorageConfigBucketCheckJobReq, initReq?: fm.InitReq): Promise<CreateStorageConfigBucketCheckJobResp> {
168
+ return fm.fetchReq<CreateStorageConfigBucketCheckJobReq, CreateStorageConfigBucketCheckJobResp>(`/apis/mcamel.io/mongodb/v1alpha1/storage-config/bucket/check-job`, {...initReq, method: "POST", body: JSON.stringify(req)})
169
+ }
170
+ static CreateStorageConfig(req: CreateStorageConfigReq, initReq?: fm.InitReq): Promise<CreateStorageConfigResp> {
171
+ return fm.fetchReq<CreateStorageConfigReq, CreateStorageConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/storage-config`, {...initReq, method: "POST", body: JSON.stringify(req)})
172
+ }
173
+ static GetStorageConfigConsumers(req: GetStorageConfigConsumersReq, initReq?: fm.InitReq): Promise<GetStorageConfigConsumersResp> {
174
+ return fm.fetchReq<GetStorageConfigConsumersReq, GetStorageConfigConsumersResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/storage-config/${req["name"]}/consumers?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
175
+ }
176
+ static DeleteStorageConfig(req: DeleteStorageConfigReq, initReq?: fm.InitReq): Promise<DeleteStorageConfigResp> {
177
+ return fm.fetchReq<DeleteStorageConfigReq, DeleteStorageConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/storage-config/${req["cluster"]}/${req["namespace"]}/${req["name"]}`, {...initReq, method: "DELETE"})
178
+ }
179
+ static UpdateStorageConfig(req: CreateStorageConfigReq, initReq?: fm.InitReq): Promise<UpdateStorageConfigResp> {
180
+ return fm.fetchReq<CreateStorageConfigReq, UpdateStorageConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/storage-config/${req["name"]}`, {...initReq, method: "PUT", body: JSON.stringify(req)})
181
+ }
182
+ static GetStorageConfig(req: GetStorageConfigReq, initReq?: fm.InitReq): Promise<GetStorageConfigResp> {
183
+ return fm.fetchReq<GetStorageConfigReq, GetStorageConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/storage-config/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
184
+ }
185
+ static GetStorageConfigList(req: GetStorageConfigListReq, initReq?: fm.InitReq): Promise<GetStorageConfigListResp> {
186
+ return fm.fetchReq<GetStorageConfigListReq, GetStorageConfigListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/storage-configs?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
187
+ }
188
+ }
package/template.pb.ts ADDED
@@ -0,0 +1,172 @@
1
+ /* eslint-disable */
2
+ // @ts-nocheck
3
+ /*
4
+ * This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
5
+ */
6
+
7
+ import * as CommonCommon from "./common.pb"
8
+ import * as fm from "./fetch.pb"
9
+
10
+ export enum TemplateInstanceType {
11
+ MysqlMasterReplica = "MysqlMasterReplica",
12
+ RedisStandalone = "RedisStandalone",
13
+ RedisFailover = "RedisFailover",
14
+ RedisCluster = "RedisCluster",
15
+ KafkaConfig = "KafkaConfig",
16
+ MysqlMgrConfig = "MysqlMgrConfig",
17
+ MongodbConfig = "MongodbConfig",
18
+ PostgresqlConfig = "PostgresqlConfig",
19
+ }
20
+
21
+ export enum GetTemplateConfigReqSortDir {
22
+ ASC = "ASC",
23
+ DESC = "DESC",
24
+ }
25
+
26
+ export enum GetTemplateConfigListReqSortDir {
27
+ ASC = "ASC",
28
+ DESC = "DESC",
29
+ }
30
+
31
+ export enum TemplateConfigItemValueType {
32
+ String = "String",
33
+ SingleSelection = "SingleSelection",
34
+ MultiString = "MultiString",
35
+ }
36
+
37
+ export type GetTemplateConfigVersionsReq = {
38
+ workspaceId?: number
39
+ }
40
+
41
+ export type GetTemplateConfigVersionsResp = {
42
+ versions?: string[]
43
+ }
44
+
45
+ export type GetTemplateConfigStringResp = {
46
+ conf?: string
47
+ }
48
+
49
+ export type DeleteTemplateReq = {
50
+ workspaceId?: number
51
+ name?: string
52
+ version?: string
53
+ }
54
+
55
+ export type DeleteTemplateConfigResp = {
56
+ message?: string
57
+ }
58
+
59
+ export type CreateOrUpdateTemplateConfigResp = {
60
+ message?: string
61
+ }
62
+
63
+ export type GetTemplateConfigReq = {
64
+ page?: number
65
+ pageSize?: number
66
+ sortDir?: GetTemplateConfigReqSortDir
67
+ sortBy?: string
68
+ searchKey?: string
69
+ workspaceId?: number
70
+ name?: string
71
+ version?: string
72
+ templateType?: string
73
+ type?: string
74
+ createTimestamp?: string
75
+ templateInstanceType?: TemplateInstanceType
76
+ }
77
+
78
+ export type CreateTemplateConfigResp = {
79
+ message?: string
80
+ }
81
+
82
+ export type UpdateTemplateConfigResp = {
83
+ message?: string
84
+ }
85
+
86
+ export type CreateTemplateConfigReq = {
87
+ workspaceId?: number
88
+ targetName?: string
89
+ targetVersion?: string
90
+ targetType?: string
91
+ targetTemplateType?: string
92
+ targetConf?: string
93
+ fromTemplateName?: string
94
+ }
95
+
96
+ export type UpdateTemplateConfigReq = {
97
+ workspaceId?: number
98
+ name?: string
99
+ version?: string
100
+ type?: string
101
+ templateType?: string
102
+ items?: TemplateConfigItem[]
103
+ conf?: string
104
+ }
105
+
106
+ export type GetTemplateConfigResp = {
107
+ data?: UpdateTemplateConfigReq
108
+ pagination?: CommonCommon.Pagination
109
+ }
110
+
111
+ export type GetTemplateConfigListReq = {
112
+ page?: number
113
+ pageSize?: number
114
+ sortDir?: GetTemplateConfigListReqSortDir
115
+ sortBy?: string
116
+ searchKey?: string
117
+ workspaceId?: number
118
+ version?: string
119
+ templateInstanceType?: TemplateInstanceType
120
+ }
121
+
122
+ export type TemplateConfigItem = {
123
+ name?: string
124
+ default?: string
125
+ current?: string
126
+ value?: string
127
+ isNeedRestart?: boolean
128
+ valueType?: TemplateConfigItemValueType
129
+ valueRemarksZh?: string
130
+ valueRemarksEn?: string
131
+ updateTimestamp?: string
132
+ }
133
+
134
+ export type GetTemplateConfigListResp = {
135
+ items?: GetTemplateConfigReq[]
136
+ pagination?: CommonCommon.Pagination
137
+ }
138
+
139
+ export type GetTemplateInstanceTypeListReq = {
140
+ workspaceId?: number
141
+ }
142
+
143
+ export type GetTemplateInstanceTypeListResp = {
144
+ type?: TemplateInstanceType[]
145
+ }
146
+
147
+ export class Template {
148
+ static GetTemplateConfigList(req: GetTemplateConfigListReq, initReq?: fm.InitReq): Promise<GetTemplateConfigListResp> {
149
+ return fm.fetchReq<GetTemplateConfigListReq, GetTemplateConfigListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
150
+ }
151
+ static GetTemplateInstanceTypeList(req: GetTemplateInstanceTypeListReq, initReq?: fm.InitReq): Promise<GetTemplateInstanceTypeListResp> {
152
+ return fm.fetchReq<GetTemplateInstanceTypeListReq, GetTemplateInstanceTypeListResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_instance_type?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
153
+ }
154
+ static GetTemplateConfig(req: GetTemplateConfigReq, initReq?: fm.InitReq): Promise<GetTemplateConfigResp> {
155
+ return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
156
+ }
157
+ static DeleteTemplateConfig(req: DeleteTemplateReq, initReq?: fm.InitReq): Promise<DeleteTemplateConfigResp> {
158
+ return fm.fetchReq<DeleteTemplateReq, DeleteTemplateConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config/${req["name"]}/${req["version"]}`, {...initReq, method: "DELETE"})
159
+ }
160
+ static CreateTemplateConfig(req: CreateTemplateConfigReq, initReq?: fm.InitReq): Promise<CreateTemplateConfigResp> {
161
+ return fm.fetchReq<CreateTemplateConfigReq, CreateTemplateConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config`, {...initReq, method: "POST", body: JSON.stringify(req)})
162
+ }
163
+ static UpdateTemplateConfig(req: UpdateTemplateConfigReq, initReq?: fm.InitReq): Promise<UpdateTemplateConfigResp> {
164
+ return fm.fetchReq<UpdateTemplateConfigReq, UpdateTemplateConfigResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config`, {...initReq, method: "PUT", body: JSON.stringify(req)})
165
+ }
166
+ static GetTemplateConfigString(req: GetTemplateConfigReq, initReq?: fm.InitReq): Promise<GetTemplateConfigStringResp> {
167
+ return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigStringResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config/${req["name"]}/to_string?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
168
+ }
169
+ static GetTemplateConfigVersions(req: GetTemplateConfigVersionsReq, initReq?: fm.InitReq): Promise<GetTemplateConfigVersionsResp> {
170
+ return fm.fetchReq<GetTemplateConfigVersionsReq, GetTemplateConfigVersionsResp>(`/apis/mcamel.io/mongodb/v1alpha1/${req["workspaceId"]}/template_config/versions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
171
+ }
172
+ }