@daocloud-proto/mcamel-mysql 0.11.0-rc2-15 → 0.15.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/cloudshell.pb.ts +3 -3
- package/cluster.pb.ts +49 -12
- package/metric.pb.ts +14 -3
- package/mysql.pb.ts +125 -24
- package/package.json +1 -1
- package/storage_config.pb.ts +8 -8
- package/template.pb.ts +30 -7
- package/version.pb.ts +1 -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/mysql/
|
|
70
|
+
return fm.fetchReq<CreateCloudShellRequest, CloudShell>(`/apis/mcamel.io/mysql/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/mysql/
|
|
73
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, CloudShell>(`/apis/mcamel.io/mysql/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/mysql/
|
|
76
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, GoogleProtobufEmpty.Empty>(`/apis/mcamel.io/mysql/v1alpha2/cloudshells/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
77
77
|
}
|
|
78
78
|
}
|
package/cluster.pb.ts
CHANGED
|
@@ -63,6 +63,37 @@ export enum GetInsightAgentStatusRespInsightAgentStatus {
|
|
|
63
63
|
Install = "Install",
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
export type GetInstallVersionReq = {
|
|
67
|
+
cluster?: string
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export type GetInstallVersionRespSupportVersion = {
|
|
71
|
+
minVersion?: string
|
|
72
|
+
maxVersion?: string
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export type GetInstallVersionRespStatus = {
|
|
76
|
+
inRange?: boolean
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export type GetInstallVersionResp = {
|
|
80
|
+
clusterVersion?: string
|
|
81
|
+
supportVersion?: GetInstallVersionRespSupportVersion
|
|
82
|
+
status?: GetInstallVersionRespStatus
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export type RestartInstanceReq = {
|
|
86
|
+
workspaceId?: number
|
|
87
|
+
cluster?: string
|
|
88
|
+
namespace?: string
|
|
89
|
+
name?: string
|
|
90
|
+
extra?: string
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export type RestartInstanceResp = {
|
|
94
|
+
message?: string
|
|
95
|
+
}
|
|
96
|
+
|
|
66
97
|
export type GetPermissionsListReq = {
|
|
67
98
|
workspaceId?: number
|
|
68
99
|
}
|
|
@@ -315,39 +346,45 @@ export type GetInsightAgentStatusResp = {
|
|
|
315
346
|
|
|
316
347
|
export class Cluster {
|
|
317
348
|
static GetClusterList(req: GetClusterListReq, initReq?: fm.InitReq): Promise<GetClusterListResp> {
|
|
318
|
-
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/mysql/
|
|
349
|
+
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/clusters?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
319
350
|
}
|
|
320
351
|
static GetClusterNamespaceList(req: GetClusterNamespaceListReq, initReq?: fm.InitReq): Promise<GetClusterNamespaceListResp> {
|
|
321
|
-
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/mysql/
|
|
352
|
+
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/${req["cluster"]}/namespaces?${fm.renderURLSearchParams(req, ["workspaceId", "cluster"])}`, {...initReq, method: "GET"})
|
|
322
353
|
}
|
|
323
354
|
static GetClusterNodePortList(req: GetClusterNodePortListReq, initReq?: fm.InitReq): Promise<GetClusterNodePortListResp> {
|
|
324
|
-
return fm.fetchReq<GetClusterNodePortListReq, GetClusterNodePortListResp>(`/apis/mcamel.io/mysql/
|
|
355
|
+
return fm.fetchReq<GetClusterNodePortListReq, GetClusterNodePortListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/nodeports?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
325
356
|
}
|
|
326
357
|
static GetClusterNodeLabelList(req: GetClusterNodeLabelListReq, initReq?: fm.InitReq): Promise<GetClusterNodeLabelListResp> {
|
|
327
|
-
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/mysql/
|
|
358
|
+
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/nodelabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
328
359
|
}
|
|
329
360
|
static GetClusterPodLabelList(req: GetClusterPodLabelListReq, initReq?: fm.InitReq): Promise<GetClusterPodLabelListResp> {
|
|
330
|
-
return fm.fetchReq<GetClusterPodLabelListReq, GetClusterPodLabelListResp>(`/apis/mcamel.io/mysql/
|
|
361
|
+
return fm.fetchReq<GetClusterPodLabelListReq, GetClusterPodLabelListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/podlabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
331
362
|
}
|
|
332
363
|
static GetWorkspaceList(req: GetWorkspaceListReq, initReq?: fm.InitReq): Promise<GetWorkspaceListResp> {
|
|
333
|
-
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/mysql/
|
|
364
|
+
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/mysql/v1alpha2/workspaces?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
334
365
|
}
|
|
335
366
|
static GetInsightAgentStatus(req: GetInsightAgentStatusReq, initReq?: fm.InitReq): Promise<GetInsightAgentStatusResp> {
|
|
336
|
-
return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/mysql/
|
|
367
|
+
return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/insight/status?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
337
368
|
}
|
|
338
369
|
static GetEventList(req: GetEventListReq, initReq?: fm.InitReq): Promise<GetEventListResp> {
|
|
339
|
-
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/mysql/
|
|
370
|
+
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/${req["namespace"]}/events?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
340
371
|
}
|
|
341
372
|
static GetAllEventList(req: GetAllEventListReq, initReq?: fm.InitReq): Promise<GetAllEventListResp> {
|
|
342
|
-
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/mysql/
|
|
373
|
+
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/${req["namespace"]}/${req["name"]}/all-events?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
343
374
|
}
|
|
344
375
|
static GetAllEventKindsList(req: GetAllEventKindsListReq, initReq?: fm.InitReq): Promise<GetAllEventKindsListResp> {
|
|
345
|
-
return fm.fetchReq<GetAllEventKindsListReq, GetAllEventKindsListResp>(`/apis/mcamel.io/mysql/
|
|
376
|
+
return fm.fetchReq<GetAllEventKindsListReq, GetAllEventKindsListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/all-events-kinds?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
346
377
|
}
|
|
347
378
|
static GetMetallbIPAddressPoolsList(req: GetMetallbIPAddressPoolsListReq, initReq?: fm.InitReq): Promise<GetMetallbIPAddressPoolsListResp> {
|
|
348
|
-
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/mysql/
|
|
379
|
+
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/lbaddress/pools?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
349
380
|
}
|
|
350
381
|
static GetPermissionsList(req: GetPermissionsListReq, initReq?: fm.InitReq): Promise<GetPermissionsListResp> {
|
|
351
|
-
return fm.fetchReq<GetPermissionsListReq, GetPermissionsListResp>(`/apis/mcamel.io/mysql/
|
|
382
|
+
return fm.fetchReq<GetPermissionsListReq, GetPermissionsListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/permissions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
383
|
+
}
|
|
384
|
+
static RestartInstance(req: RestartInstanceReq, initReq?: fm.InitReq): Promise<RestartInstanceResp> {
|
|
385
|
+
return fm.fetchReq<RestartInstanceReq, RestartInstanceResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/restart`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
386
|
+
}
|
|
387
|
+
static GetInstallVersion(req: GetInstallVersionReq, initReq?: fm.InitReq): Promise<GetInstallVersionResp> {
|
|
388
|
+
return fm.fetchReq<GetInstallVersionReq, GetInstallVersionResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/install-version?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
352
389
|
}
|
|
353
390
|
}
|
package/metric.pb.ts
CHANGED
|
@@ -6,20 +6,31 @@
|
|
|
6
6
|
|
|
7
7
|
import * as CommonCommon from "./common.pb"
|
|
8
8
|
import * as fm from "./fetch.pb"
|
|
9
|
-
import * as
|
|
9
|
+
import * as InsightIoApiInsightV1alpha2Insight 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
|
|
14
25
|
}
|
|
15
26
|
|
|
16
27
|
export type GetAlertsListResp = {
|
|
17
|
-
items?:
|
|
28
|
+
items?: InsightIoApiInsightV1alpha2Insight.AlertSummary[]
|
|
18
29
|
pagination?: CommonCommon.Pagination
|
|
19
30
|
}
|
|
20
31
|
|
|
21
32
|
export class Metric {
|
|
22
33
|
static GetAlertsList(req: GetAlertsListReq, initReq?: fm.InitReq): Promise<GetAlertsListResp> {
|
|
23
|
-
return fm.fetchReq<GetAlertsListReq, GetAlertsListResp>(`/apis/mcamel.io/mysql/
|
|
34
|
+
return fm.fetchReq<GetAlertsListReq, GetAlertsListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/${req["namespace"]}/${req["name"]}/alerts?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
24
35
|
}
|
|
25
36
|
}
|
package/mysql.pb.ts
CHANGED
|
@@ -17,10 +17,25 @@ type OneOf<T> =
|
|
|
17
17
|
: never)
|
|
18
18
|
: never);
|
|
19
19
|
|
|
20
|
+
export enum InstanceType {
|
|
21
|
+
UnKnown = "UnKnown",
|
|
22
|
+
SingleNode = "SingleNode",
|
|
23
|
+
MasterSlave = "MasterSlave",
|
|
24
|
+
Mgr = "Mgr",
|
|
25
|
+
}
|
|
26
|
+
|
|
20
27
|
export enum Status {
|
|
21
28
|
Failed = "Failed",
|
|
22
29
|
Running = "Running",
|
|
23
30
|
Creating = "Creating",
|
|
31
|
+
MgrOnline = "MgrOnline",
|
|
32
|
+
MgrRecovering = "MgrRecovering",
|
|
33
|
+
MgrError = "MgrError",
|
|
34
|
+
MgrOffline = "MgrOffline",
|
|
35
|
+
MgrNotManaged = "MgrNotManaged",
|
|
36
|
+
MgrUnmanaged = "MgrUnmanaged",
|
|
37
|
+
MgrUnreachable = "MgrUnreachable",
|
|
38
|
+
MgrUnknown = "MgrUnknown",
|
|
24
39
|
}
|
|
25
40
|
|
|
26
41
|
export enum GetMinioListReqSortDir {
|
|
@@ -108,6 +123,8 @@ export enum GetMysqlNodeListRespNodeType {
|
|
|
108
123
|
Master = "Master",
|
|
109
124
|
Replica = "Replica",
|
|
110
125
|
PhpAdmin = "PhpAdmin",
|
|
126
|
+
PRIMARY = "PRIMARY",
|
|
127
|
+
SECONDARY = "SECONDARY",
|
|
111
128
|
}
|
|
112
129
|
|
|
113
130
|
export enum GetMysqlConfRespItemsParamType {
|
|
@@ -121,6 +138,67 @@ export enum MysqlClusterItemStatusRestoreInitialStatus {
|
|
|
121
138
|
Succeeded = "Succeeded",
|
|
122
139
|
}
|
|
123
140
|
|
|
141
|
+
export type GetTopologyRequest = {
|
|
142
|
+
cluster?: string
|
|
143
|
+
namespace?: string
|
|
144
|
+
name?: string
|
|
145
|
+
instanceType?: InstanceType
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export type GetTopologyResp = {
|
|
149
|
+
cluster?: string
|
|
150
|
+
namespace?: string
|
|
151
|
+
name?: string
|
|
152
|
+
instanceType?: InstanceType
|
|
153
|
+
version?: string
|
|
154
|
+
topology?: Topology
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export type Topology = {
|
|
158
|
+
masterSlave?: MasterSlaveTopology
|
|
159
|
+
mgr?: MgrTopology
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export type MasterSlaveTopology = {
|
|
163
|
+
replicaSet?: MasterSlaveReplicaSet[]
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export type MasterSlaveReplicaSet = {
|
|
167
|
+
master?: Node
|
|
168
|
+
slaves?: Node[]
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export type Node = {
|
|
172
|
+
serverId?: number
|
|
173
|
+
detail?: {[key: string]: string}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export type MgrTopology = {
|
|
177
|
+
replicaset?: MgrReplicaset[]
|
|
178
|
+
groupInformationSourceMember?: string
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export type MgrReplicaset = {
|
|
182
|
+
name?: string
|
|
183
|
+
primaryHost?: string
|
|
184
|
+
ssl?: string
|
|
185
|
+
status?: string
|
|
186
|
+
statusText?: string
|
|
187
|
+
primary?: MgrNode
|
|
188
|
+
secondaries?: MgrNode[]
|
|
189
|
+
topologyMode?: string
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export type MgrNode = {
|
|
193
|
+
address?: string
|
|
194
|
+
memberRole?: string
|
|
195
|
+
mode?: string
|
|
196
|
+
replicationLag?: string
|
|
197
|
+
role?: string
|
|
198
|
+
status?: string
|
|
199
|
+
version?: string
|
|
200
|
+
}
|
|
201
|
+
|
|
124
202
|
export type GetMinioListReq = {
|
|
125
203
|
page?: number
|
|
126
204
|
pageSize?: number
|
|
@@ -156,6 +234,7 @@ export type GetMysqlUsersReq = {
|
|
|
156
234
|
cluster?: string
|
|
157
235
|
namespace?: string
|
|
158
236
|
name?: string
|
|
237
|
+
instanceType?: InstanceType
|
|
159
238
|
}
|
|
160
239
|
|
|
161
240
|
export type GetMysqlUsersRespUserItem = {
|
|
@@ -180,6 +259,7 @@ export type UpdateMysqlBackupConfigReq = {
|
|
|
180
259
|
storageConfigName?: string
|
|
181
260
|
storageConfigNamespace?: string
|
|
182
261
|
storageConfigCluster?: string
|
|
262
|
+
instanceType?: InstanceType
|
|
183
263
|
}
|
|
184
264
|
|
|
185
265
|
export type UpdateMysqlBackupConfigResp = {
|
|
@@ -193,6 +273,9 @@ export type CreateMysqlRecoverReq = {
|
|
|
193
273
|
name?: string
|
|
194
274
|
backupName?: string
|
|
195
275
|
targetMysqlClusterName?: string
|
|
276
|
+
targetMysqlClusterNamespace?: string
|
|
277
|
+
targetMysqlClusterCluster?: string
|
|
278
|
+
instanceType?: InstanceType
|
|
196
279
|
}
|
|
197
280
|
|
|
198
281
|
export type CreateMysqlRecoverResp = {
|
|
@@ -208,6 +291,7 @@ export type GetMysqlBackupListReq = {
|
|
|
208
291
|
cluster?: string
|
|
209
292
|
namespace?: string
|
|
210
293
|
name?: string
|
|
294
|
+
instanceType?: InstanceType
|
|
211
295
|
}
|
|
212
296
|
|
|
213
297
|
export type GetMysqlBackupJobListReq = {
|
|
@@ -318,6 +402,7 @@ export type CreateMysqlBackupReq = {
|
|
|
318
402
|
backupName?: string
|
|
319
403
|
backupBucket?: string
|
|
320
404
|
backupBucketSubPath?: string
|
|
405
|
+
instanceType?: InstanceType
|
|
321
406
|
}
|
|
322
407
|
|
|
323
408
|
export type CreateMysqlBackupResp = {
|
|
@@ -332,10 +417,12 @@ export type DeleteMysqlBackupReq = {
|
|
|
332
417
|
cluster?: string
|
|
333
418
|
namespace?: string
|
|
334
419
|
name?: string
|
|
420
|
+
instanceType?: InstanceType
|
|
335
421
|
}
|
|
336
422
|
|
|
337
423
|
export type DeleteMysqlBackupResp = {
|
|
338
424
|
message?: string
|
|
425
|
+
instanceType?: InstanceType
|
|
339
426
|
}
|
|
340
427
|
|
|
341
428
|
export type GetMysqlListReq = {
|
|
@@ -358,6 +445,7 @@ export type GetMysqlConfReq = {
|
|
|
358
445
|
cluster?: string
|
|
359
446
|
namespace?: string
|
|
360
447
|
name?: string
|
|
448
|
+
instanceType?: InstanceType
|
|
361
449
|
}
|
|
362
450
|
|
|
363
451
|
export type GetMysqlParamReq = {
|
|
@@ -380,6 +468,7 @@ export type CreateMysqlReq = {
|
|
|
380
468
|
describe?: string
|
|
381
469
|
version?: string
|
|
382
470
|
replicas?: number
|
|
471
|
+
instanceType?: InstanceType
|
|
383
472
|
storageClassName?: string
|
|
384
473
|
storageCapacity?: string
|
|
385
474
|
rootPassword?: string
|
|
@@ -414,6 +503,7 @@ export type CreateMysqlReq = {
|
|
|
414
503
|
storageConfigCluster?: string
|
|
415
504
|
affinity?: CommonCommon.Affinity
|
|
416
505
|
serviceMonitorInterval?: string
|
|
506
|
+
accessWhitelist?: CommonCommon.AccessWhitelist
|
|
417
507
|
externalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy
|
|
418
508
|
lbTyp?: CommonCommon.LBTyp
|
|
419
509
|
lbPoolName?: string
|
|
@@ -430,6 +520,7 @@ export type UpdateMysqlConfReq = {
|
|
|
430
520
|
name?: string
|
|
431
521
|
confItems?: TemplateTemplate.TemplateConfigItem[]
|
|
432
522
|
reloadFromConfTemplateName?: string
|
|
523
|
+
instanceType?: InstanceType
|
|
433
524
|
}
|
|
434
525
|
|
|
435
526
|
export type UpdateMysqlParamsResp = {
|
|
@@ -479,6 +570,7 @@ export type GetMysqlParamResp = {
|
|
|
479
570
|
storage?: GetMysqlParamRespSelect
|
|
480
571
|
cnf?: GetMysqlParamRespSelect
|
|
481
572
|
eightXcnf?: GetMysqlParamRespSelect
|
|
573
|
+
mgrVersion?: GetMysqlParamRespSelect
|
|
482
574
|
}
|
|
483
575
|
|
|
484
576
|
export type GetMysqlBackupProviderListResp = {
|
|
@@ -490,12 +582,14 @@ export type CreateMysqlResp = {
|
|
|
490
582
|
}
|
|
491
583
|
|
|
492
584
|
export type GetMysqlOperatorVersionListReq = {
|
|
585
|
+
cluster?: string
|
|
493
586
|
}
|
|
494
587
|
|
|
495
588
|
export type GetMysqlOperatorVersionListRespGetMysqlOperatorVersionListData = {
|
|
496
589
|
cluster?: string
|
|
497
590
|
namespace?: string
|
|
498
591
|
version?: string
|
|
592
|
+
instanceType?: InstanceType[]
|
|
499
593
|
}
|
|
500
594
|
|
|
501
595
|
export type GetMysqlOperatorVersionListResp = {
|
|
@@ -507,6 +601,7 @@ export type DeleteMysqlReq = {
|
|
|
507
601
|
cluster?: string
|
|
508
602
|
namespace?: string
|
|
509
603
|
name?: string
|
|
604
|
+
instanceType?: InstanceType
|
|
510
605
|
}
|
|
511
606
|
|
|
512
607
|
export type DeleteMysqlsReq = {
|
|
@@ -530,6 +625,7 @@ export type GetMysqlNodeListReq = {
|
|
|
530
625
|
sortDir?: GetMysqlNodeListReqSortDir
|
|
531
626
|
sortBy?: string
|
|
532
627
|
searchKey?: string
|
|
628
|
+
instanceType?: InstanceType
|
|
533
629
|
}
|
|
534
630
|
|
|
535
631
|
export type GetMysqlNodeListRespData = {
|
|
@@ -558,6 +654,7 @@ export type GetMysqlGrafanaAddrReq = {
|
|
|
558
654
|
name?: string
|
|
559
655
|
from?: string
|
|
560
656
|
to?: string
|
|
657
|
+
instanceType?: InstanceType
|
|
561
658
|
}
|
|
562
659
|
|
|
563
660
|
export type GetMysqlGrafanaAddrResp = {
|
|
@@ -568,6 +665,7 @@ export type GetMysqlReq = {
|
|
|
568
665
|
cluster?: string
|
|
569
666
|
namespace?: string
|
|
570
667
|
name?: string
|
|
668
|
+
instanceType?: InstanceType
|
|
571
669
|
}
|
|
572
670
|
|
|
573
671
|
export type GetMysqlResp = {
|
|
@@ -621,74 +719,77 @@ export type MysqlClusterItem = {
|
|
|
621
719
|
status?: MysqlClusterItemStatus
|
|
622
720
|
}
|
|
623
721
|
|
|
624
|
-
export class
|
|
722
|
+
export class MysqlMgr {
|
|
625
723
|
static GetMysqlList(req: GetMysqlListReq, initReq?: fm.InitReq): Promise<GetMysqlListResp> {
|
|
626
|
-
return fm.fetchReq<GetMysqlListReq, GetMysqlListResp>(`/apis/mcamel.io/mysql/
|
|
724
|
+
return fm.fetchReq<GetMysqlListReq, GetMysqlListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/mysqls?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
627
725
|
}
|
|
628
726
|
static GetMysqlOperatorVersionList(req: GetMysqlOperatorVersionListReq, initReq?: fm.InitReq): Promise<GetMysqlOperatorVersionListResp> {
|
|
629
|
-
return fm.fetchReq<GetMysqlOperatorVersionListReq, GetMysqlOperatorVersionListResp>(`/apis/mcamel.io/mysql/
|
|
727
|
+
return fm.fetchReq<GetMysqlOperatorVersionListReq, GetMysqlOperatorVersionListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/mysql-operator/versions?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
630
728
|
}
|
|
631
729
|
static GetMysql(req: GetMysqlReq, initReq?: fm.InitReq): Promise<GetMysqlResp> {
|
|
632
|
-
return fm.fetchReq<GetMysqlReq, GetMysqlResp>(`/apis/mcamel.io/mysql/
|
|
730
|
+
return fm.fetchReq<GetMysqlReq, GetMysqlResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
633
731
|
}
|
|
634
732
|
static GetMysqlParam(req: GetMysqlParamReq, initReq?: fm.InitReq): Promise<GetMysqlParamResp> {
|
|
635
|
-
return fm.fetchReq<GetMysqlParamReq, GetMysqlParamResp>(`/apis/mcamel.io/mysql/
|
|
733
|
+
return fm.fetchReq<GetMysqlParamReq, GetMysqlParamResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql-params/${req["cluster"]}?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
636
734
|
}
|
|
637
735
|
static GetMysqlNodeList(req: GetMysqlNodeListReq, initReq?: fm.InitReq): Promise<GetMysqlNodeListResp> {
|
|
638
|
-
return fm.fetchReq<GetMysqlNodeListReq, GetMysqlNodeListResp>(`/apis/mcamel.io/mysql/
|
|
736
|
+
return fm.fetchReq<GetMysqlNodeListReq, GetMysqlNodeListResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/nodes?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
639
737
|
}
|
|
640
738
|
static GetMysqlGrafanaAddr(req: GetMysqlGrafanaAddrReq, initReq?: fm.InitReq): Promise<GetMysqlGrafanaAddrResp> {
|
|
641
|
-
return fm.fetchReq<GetMysqlGrafanaAddrReq, GetMysqlGrafanaAddrResp>(`/apis/mcamel.io/mysql/
|
|
739
|
+
return fm.fetchReq<GetMysqlGrafanaAddrReq, GetMysqlGrafanaAddrResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/grafana?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
642
740
|
}
|
|
643
741
|
static CreateMysql(req: CreateMysqlReq, initReq?: fm.InitReq): Promise<CreateMysqlResp> {
|
|
644
|
-
return fm.fetchReq<CreateMysqlReq, CreateMysqlResp>(`/apis/mcamel.io/mysql/
|
|
742
|
+
return fm.fetchReq<CreateMysqlReq, CreateMysqlResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
645
743
|
}
|
|
646
744
|
static GetMysqlConfs(req: GetMysqlConfReq, initReq?: fm.InitReq): Promise<GetMysqlConfResp> {
|
|
647
|
-
return fm.fetchReq<GetMysqlConfReq, GetMysqlConfResp>(`/apis/mcamel.io/mysql/
|
|
745
|
+
return fm.fetchReq<GetMysqlConfReq, GetMysqlConfResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/confs?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
648
746
|
}
|
|
649
747
|
static UpdateMysqlConf(req: UpdateMysqlConfReq, initReq?: fm.InitReq): Promise<UpdateMysqlConfResp> {
|
|
650
|
-
return fm.fetchReq<UpdateMysqlConfReq, UpdateMysqlConfResp>(`/apis/mcamel.io/mysql/
|
|
748
|
+
return fm.fetchReq<UpdateMysqlConfReq, UpdateMysqlConfResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/conf`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
651
749
|
}
|
|
652
750
|
static UpdateMysqlParams(req: CreateMysqlReq, initReq?: fm.InitReq): Promise<UpdateMysqlParamsResp> {
|
|
653
|
-
return fm.fetchReq<CreateMysqlReq, UpdateMysqlParamsResp>(`/apis/mcamel.io/mysql/
|
|
751
|
+
return fm.fetchReq<CreateMysqlReq, UpdateMysqlParamsResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/params`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
654
752
|
}
|
|
655
753
|
static DeleteMysql(req: DeleteMysqlReq, initReq?: fm.InitReq): Promise<DeleteMysqlResp> {
|
|
656
|
-
return fm.fetchReq<DeleteMysqlReq, DeleteMysqlResp>(`/apis/mcamel.io/mysql/
|
|
754
|
+
return fm.fetchReq<DeleteMysqlReq, DeleteMysqlResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["instanceType"]}/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
657
755
|
}
|
|
658
756
|
static DeleteMysqls(req: DeleteMysqlsReq, initReq?: fm.InitReq): Promise<DeleteMysqlsResp> {
|
|
659
|
-
return fm.fetchReq<DeleteMysqlsReq, DeleteMysqlsResp>(`/apis/mcamel.io/mysql/
|
|
757
|
+
return fm.fetchReq<DeleteMysqlsReq, DeleteMysqlsResp>(`/apis/mcamel.io/mysql/v1alpha2/mysqls`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
660
758
|
}
|
|
661
759
|
static GetMysqlBackupList(req: GetMysqlBackupListReq, initReq?: fm.InitReq): Promise<GetMysqlBackupListResp> {
|
|
662
|
-
return fm.fetchReq<GetMysqlBackupListReq, GetMysqlBackupListResp>(`/apis/mcamel.io/mysql/
|
|
760
|
+
return fm.fetchReq<GetMysqlBackupListReq, GetMysqlBackupListResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backups?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
663
761
|
}
|
|
664
762
|
static GetMysqlBackupJobList(req: GetMysqlBackupJobListReq, initReq?: fm.InitReq): Promise<GetMysqlBackupJobListResp> {
|
|
665
|
-
return fm.fetchReq<GetMysqlBackupJobListReq, GetMysqlBackupJobListResp>(`/apis/mcamel.io/mysql/
|
|
763
|
+
return fm.fetchReq<GetMysqlBackupJobListReq, GetMysqlBackupJobListResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backup/jobs?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
666
764
|
}
|
|
667
765
|
static CreateMysqlBackup(req: CreateMysqlBackupReq, initReq?: fm.InitReq): Promise<CreateMysqlBackupResp> {
|
|
668
|
-
return fm.fetchReq<CreateMysqlBackupReq, CreateMysqlBackupResp>(`/apis/mcamel.io/mysql/
|
|
766
|
+
return fm.fetchReq<CreateMysqlBackupReq, CreateMysqlBackupResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backup`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
669
767
|
}
|
|
670
768
|
static DeleteMysqlBackup(req: DeleteMysqlBackupReq, initReq?: fm.InitReq): Promise<DeleteMysqlBackupResp> {
|
|
671
|
-
return fm.fetchReq<DeleteMysqlBackupReq, DeleteMysqlBackupResp>(`/apis/mcamel.io/mysql/
|
|
769
|
+
return fm.fetchReq<DeleteMysqlBackupReq, DeleteMysqlBackupResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["instanceType"]}/${req["name"]}/backup`, {...initReq, method: "DELETE"})
|
|
672
770
|
}
|
|
673
771
|
static GetMysqlBackupSecret(req: GetMysqlBackupSecretReq, initReq?: fm.InitReq): Promise<GetMysqlBackupSecretResp> {
|
|
674
|
-
return fm.fetchReq<GetMysqlBackupSecretReq, GetMysqlBackupSecretResp>(`/apis/mcamel.io/mysql/
|
|
772
|
+
return fm.fetchReq<GetMysqlBackupSecretReq, GetMysqlBackupSecretResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["workspaceId"]}/secret?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
675
773
|
}
|
|
676
774
|
static GetMysqlBackupProviderList(req: GetMysqlBackupProviderListReq, initReq?: fm.InitReq): Promise<GetMysqlBackupProviderListResp> {
|
|
677
|
-
return fm.fetchReq<GetMysqlBackupProviderListReq, GetMysqlBackupProviderListResp>(`/apis/mcamel.io/mysql/
|
|
775
|
+
return fm.fetchReq<GetMysqlBackupProviderListReq, GetMysqlBackupProviderListResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["workspaceId"]}/providers?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
678
776
|
}
|
|
679
777
|
static SetMysqlBackupSecret(req: SetMysqlBackupSecretReq, initReq?: fm.InitReq): Promise<SetMysqlBackupSecretResp> {
|
|
680
|
-
return fm.fetchReq<SetMysqlBackupSecretReq, SetMysqlBackupSecretResp>(`/apis/mcamel.io/mysql/
|
|
778
|
+
return fm.fetchReq<SetMysqlBackupSecretReq, SetMysqlBackupSecretResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["workspaceId"]}/secret`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
681
779
|
}
|
|
682
780
|
static CreateMysqlRecover(req: CreateMysqlRecoverReq, initReq?: fm.InitReq): Promise<CreateMysqlRecoverResp> {
|
|
683
|
-
return fm.fetchReq<CreateMysqlRecoverReq, CreateMysqlRecoverResp>(`/apis/mcamel.io/mysql/
|
|
781
|
+
return fm.fetchReq<CreateMysqlRecoverReq, CreateMysqlRecoverResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/recover`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
684
782
|
}
|
|
685
783
|
static UpdateMysqlBackupConfig(req: UpdateMysqlBackupConfigReq, initReq?: fm.InitReq): Promise<UpdateMysqlBackupConfigResp> {
|
|
686
|
-
return fm.fetchReq<UpdateMysqlBackupConfigReq, UpdateMysqlBackupConfigResp>(`/apis/mcamel.io/mysql/
|
|
784
|
+
return fm.fetchReq<UpdateMysqlBackupConfigReq, UpdateMysqlBackupConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/backup/config`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
687
785
|
}
|
|
688
786
|
static GetMysqlUsers(req: GetMysqlUsersReq, initReq?: fm.InitReq): Promise<GetMysqlUsersResp> {
|
|
689
|
-
return fm.fetchReq<GetMysqlUsersReq, GetMysqlUsersResp>(`/apis/mcamel.io/mysql/
|
|
787
|
+
return fm.fetchReq<GetMysqlUsersReq, GetMysqlUsersResp>(`/apis/mcamel.io/mysql/v1alpha2/mysql/${req["cluster"]}/${req["namespace"]}/${req["name"]}/users?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
690
788
|
}
|
|
691
789
|
static GetMinioList(req: GetMinioListReq, initReq?: fm.InitReq): Promise<GetMinioListResp> {
|
|
692
|
-
return fm.fetchReq<GetMinioListReq, GetMinioListResp>(`/apis/mcamel.io/mysql/
|
|
790
|
+
return fm.fetchReq<GetMinioListReq, GetMinioListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/minios?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
791
|
+
}
|
|
792
|
+
static GetTopology(req: GetTopologyRequest, initReq?: fm.InitReq): Promise<GetTopologyResp> {
|
|
793
|
+
return fm.fetchReq<GetTopologyRequest, GetTopologyResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["cluster"]}/${req["namespace"]}/${req["name"]}/${req["instanceType"]}/topology?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name", "instanceType"])}`, {...initReq, method: "GET"})
|
|
693
794
|
}
|
|
694
795
|
}
|
package/package.json
CHANGED
package/storage_config.pb.ts
CHANGED
|
@@ -162,27 +162,27 @@ export type GetStorageConfigListResp = {
|
|
|
162
162
|
|
|
163
163
|
export class StorageConfig {
|
|
164
164
|
static GetStorageConfigParam(req: GetStorageConfigParamReq, initReq?: fm.InitReq): Promise<GetStorageConfigParamResp> {
|
|
165
|
-
return fm.fetchReq<GetStorageConfigParamReq, GetStorageConfigParamResp>(`/apis/mcamel.io/mysql/
|
|
165
|
+
return fm.fetchReq<GetStorageConfigParamReq, GetStorageConfigParamResp>(`/apis/mcamel.io/mysql/v1alpha2/storage-config/param?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
166
166
|
}
|
|
167
167
|
static CreateStorageConfigBucketCheckJob(req: CreateStorageConfigBucketCheckJobReq, initReq?: fm.InitReq): Promise<CreateStorageConfigBucketCheckJobResp> {
|
|
168
|
-
return fm.fetchReq<CreateStorageConfigBucketCheckJobReq, CreateStorageConfigBucketCheckJobResp>(`/apis/mcamel.io/mysql/
|
|
168
|
+
return fm.fetchReq<CreateStorageConfigBucketCheckJobReq, CreateStorageConfigBucketCheckJobResp>(`/apis/mcamel.io/mysql/v1alpha2/storage-config/bucket/check-job`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
169
169
|
}
|
|
170
170
|
static CreateStorageConfig(req: CreateStorageConfigReq, initReq?: fm.InitReq): Promise<CreateStorageConfigResp> {
|
|
171
|
-
return fm.fetchReq<CreateStorageConfigReq, CreateStorageConfigResp>(`/apis/mcamel.io/mysql/
|
|
171
|
+
return fm.fetchReq<CreateStorageConfigReq, CreateStorageConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/storage-config`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
172
172
|
}
|
|
173
173
|
static GetStorageConfigConsumers(req: GetStorageConfigConsumersReq, initReq?: fm.InitReq): Promise<GetStorageConfigConsumersResp> {
|
|
174
|
-
return fm.fetchReq<GetStorageConfigConsumersReq, GetStorageConfigConsumersResp>(`/apis/mcamel.io/mysql/
|
|
174
|
+
return fm.fetchReq<GetStorageConfigConsumersReq, GetStorageConfigConsumersResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/storage-config/${req["name"]}/consumers?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
175
175
|
}
|
|
176
176
|
static DeleteStorageConfig(req: DeleteStorageConfigReq, initReq?: fm.InitReq): Promise<DeleteStorageConfigResp> {
|
|
177
|
-
return fm.fetchReq<DeleteStorageConfigReq, DeleteStorageConfigResp>(`/apis/mcamel.io/mysql/
|
|
177
|
+
return fm.fetchReq<DeleteStorageConfigReq, DeleteStorageConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/storage-config/${req["cluster"]}/${req["namespace"]}/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
178
178
|
}
|
|
179
179
|
static UpdateStorageConfig(req: CreateStorageConfigReq, initReq?: fm.InitReq): Promise<UpdateStorageConfigResp> {
|
|
180
|
-
return fm.fetchReq<CreateStorageConfigReq, UpdateStorageConfigResp>(`/apis/mcamel.io/mysql/
|
|
180
|
+
return fm.fetchReq<CreateStorageConfigReq, UpdateStorageConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/storage-config/${req["name"]}`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
181
181
|
}
|
|
182
182
|
static GetStorageConfig(req: GetStorageConfigReq, initReq?: fm.InitReq): Promise<GetStorageConfigResp> {
|
|
183
|
-
return fm.fetchReq<GetStorageConfigReq, GetStorageConfigResp>(`/apis/mcamel.io/mysql/
|
|
183
|
+
return fm.fetchReq<GetStorageConfigReq, GetStorageConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/storage-config/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
184
184
|
}
|
|
185
185
|
static GetStorageConfigList(req: GetStorageConfigListReq, initReq?: fm.InitReq): Promise<GetStorageConfigListResp> {
|
|
186
|
-
return fm.fetchReq<GetStorageConfigListReq, GetStorageConfigListResp>(`/apis/mcamel.io/mysql/
|
|
186
|
+
return fm.fetchReq<GetStorageConfigListReq, GetStorageConfigListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/storage-configs?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
187
187
|
}
|
|
188
188
|
}
|
package/template.pb.ts
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
import * as CommonCommon from "./common.pb"
|
|
8
8
|
import * as fm from "./fetch.pb"
|
|
9
9
|
|
|
10
|
+
export enum TemplateInstanceType {
|
|
11
|
+
MysqlMasterReplica = "MysqlMasterReplica",
|
|
12
|
+
RedisStandalone = "RedisStandalone",
|
|
13
|
+
RedisFailover = "RedisFailover",
|
|
14
|
+
RedisCluster = "RedisCluster",
|
|
15
|
+
KafkaConfig = "KafkaConfig",
|
|
16
|
+
MysqlMgrConfig = "MysqlMgrConfig",
|
|
17
|
+
}
|
|
18
|
+
|
|
10
19
|
export enum GetTemplateConfigReqSortDir {
|
|
11
20
|
ASC = "ASC",
|
|
12
21
|
DESC = "DESC",
|
|
@@ -20,6 +29,7 @@ export enum GetTemplateConfigListReqSortDir {
|
|
|
20
29
|
export enum TemplateConfigItemValueType {
|
|
21
30
|
String = "String",
|
|
22
31
|
SingleSelection = "SingleSelection",
|
|
32
|
+
MultiString = "MultiString",
|
|
23
33
|
}
|
|
24
34
|
|
|
25
35
|
export type GetTemplateConfigVersionsReq = {
|
|
@@ -60,6 +70,7 @@ export type GetTemplateConfigReq = {
|
|
|
60
70
|
templateType?: string
|
|
61
71
|
type?: string
|
|
62
72
|
createTimestamp?: string
|
|
73
|
+
templateInstanceType?: TemplateInstanceType
|
|
63
74
|
}
|
|
64
75
|
|
|
65
76
|
export type CreateTemplateConfigResp = {
|
|
@@ -103,6 +114,7 @@ export type GetTemplateConfigListReq = {
|
|
|
103
114
|
searchKey?: string
|
|
104
115
|
workspaceId?: number
|
|
105
116
|
version?: string
|
|
117
|
+
templateInstanceType?: TemplateInstanceType
|
|
106
118
|
}
|
|
107
119
|
|
|
108
120
|
export type TemplateConfigItem = {
|
|
@@ -122,26 +134,37 @@ export type GetTemplateConfigListResp = {
|
|
|
122
134
|
pagination?: CommonCommon.Pagination
|
|
123
135
|
}
|
|
124
136
|
|
|
137
|
+
export type GetTemplateInstanceTypeListReq = {
|
|
138
|
+
workspaceId?: number
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export type GetTemplateInstanceTypeListResp = {
|
|
142
|
+
type?: TemplateInstanceType[]
|
|
143
|
+
}
|
|
144
|
+
|
|
125
145
|
export class Template {
|
|
126
146
|
static GetTemplateConfigList(req: GetTemplateConfigListReq, initReq?: fm.InitReq): Promise<GetTemplateConfigListResp> {
|
|
127
|
-
return fm.fetchReq<GetTemplateConfigListReq, GetTemplateConfigListResp>(`/apis/mcamel.io/mysql/
|
|
147
|
+
return fm.fetchReq<GetTemplateConfigListReq, GetTemplateConfigListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
148
|
+
}
|
|
149
|
+
static GetTemplateInstanceTypeList(req: GetTemplateInstanceTypeListReq, initReq?: fm.InitReq): Promise<GetTemplateInstanceTypeListResp> {
|
|
150
|
+
return fm.fetchReq<GetTemplateInstanceTypeListReq, GetTemplateInstanceTypeListResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_instance_type?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
128
151
|
}
|
|
129
152
|
static GetTemplateConfig(req: GetTemplateConfigReq, initReq?: fm.InitReq): Promise<GetTemplateConfigResp> {
|
|
130
|
-
return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigResp>(`/apis/mcamel.io/mysql/
|
|
153
|
+
return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
131
154
|
}
|
|
132
155
|
static DeleteTemplateConfig(req: DeleteTemplateReq, initReq?: fm.InitReq): Promise<DeleteTemplateConfigResp> {
|
|
133
|
-
return fm.fetchReq<DeleteTemplateReq, DeleteTemplateConfigResp>(`/apis/mcamel.io/mysql/
|
|
156
|
+
return fm.fetchReq<DeleteTemplateReq, DeleteTemplateConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config/${req["name"]}/${req["version"]}`, {...initReq, method: "DELETE"})
|
|
134
157
|
}
|
|
135
158
|
static CreateTemplateConfig(req: CreateTemplateConfigReq, initReq?: fm.InitReq): Promise<CreateTemplateConfigResp> {
|
|
136
|
-
return fm.fetchReq<CreateTemplateConfigReq, CreateTemplateConfigResp>(`/apis/mcamel.io/mysql/
|
|
159
|
+
return fm.fetchReq<CreateTemplateConfigReq, CreateTemplateConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
137
160
|
}
|
|
138
161
|
static UpdateTemplateConfig(req: UpdateTemplateConfigReq, initReq?: fm.InitReq): Promise<UpdateTemplateConfigResp> {
|
|
139
|
-
return fm.fetchReq<UpdateTemplateConfigReq, UpdateTemplateConfigResp>(`/apis/mcamel.io/mysql/
|
|
162
|
+
return fm.fetchReq<UpdateTemplateConfigReq, UpdateTemplateConfigResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
140
163
|
}
|
|
141
164
|
static GetTemplateConfigString(req: GetTemplateConfigReq, initReq?: fm.InitReq): Promise<GetTemplateConfigStringResp> {
|
|
142
|
-
return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigStringResp>(`/apis/mcamel.io/mysql/
|
|
165
|
+
return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigStringResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config/${req["name"]}/to_string?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
143
166
|
}
|
|
144
167
|
static GetTemplateConfigVersions(req: GetTemplateConfigVersionsReq, initReq?: fm.InitReq): Promise<GetTemplateConfigVersionsResp> {
|
|
145
|
-
return fm.fetchReq<GetTemplateConfigVersionsReq, GetTemplateConfigVersionsResp>(`/apis/mcamel.io/mysql/
|
|
168
|
+
return fm.fetchReq<GetTemplateConfigVersionsReq, GetTemplateConfigVersionsResp>(`/apis/mcamel.io/mysql/v1alpha2/${req["workspaceId"]}/template_config/versions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
146
169
|
}
|
|
147
170
|
}
|
package/version.pb.ts
CHANGED
|
@@ -22,6 +22,6 @@ export type Empty = {
|
|
|
22
22
|
|
|
23
23
|
export class Version {
|
|
24
24
|
static Get(req: Empty, initReq?: fm.InitReq): Promise<GetVersionReply> {
|
|
25
|
-
return fm.fetchReq<Empty, GetVersionReply>(`/apis/mcamel.io/mysql/
|
|
25
|
+
return fm.fetchReq<Empty, GetVersionReply>(`/apis/mcamel.io/mysql/v1alpha2/mysql/version?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
26
26
|
}
|
|
27
27
|
}
|