@daocloud-proto/mcamel-minio 0.2.0-591 → 0.2.0-593
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 +19 -18
- package/common.pb.ts +9 -8
- package/metric.pb.ts +2 -1
- package/minio.pb.ts +21 -14
- package/package.json +1 -1
- package/storage_config.pb.ts +8 -8
- package/template.pb.ts +9 -9
- 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/minio/
|
|
70
|
+
return fm.fetchReq<CreateCloudShellRequest, CloudShell>(`/apis/mcamel.io/minio/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/minio/
|
|
73
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, CloudShell>(`/apis/mcamel.io/minio/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/minio/
|
|
76
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, GoogleProtobufEmpty.Empty>(`/apis/mcamel.io/minio/v1alpha2/cloudshells/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
77
77
|
}
|
|
78
78
|
}
|
package/cluster.pb.ts
CHANGED
|
@@ -192,6 +192,7 @@ export type GetAllEventListReq = {
|
|
|
192
192
|
name?: string
|
|
193
193
|
eventType?: EventType
|
|
194
194
|
kindName?: string
|
|
195
|
+
workspaceId?: number
|
|
195
196
|
}
|
|
196
197
|
|
|
197
198
|
export type GetAllEventListRespItemsSource = {
|
|
@@ -456,57 +457,57 @@ export type GetResourceQuotaResp = {
|
|
|
456
457
|
|
|
457
458
|
export class Cluster {
|
|
458
459
|
static GetClusterList(req: GetClusterListReq, initReq?: fm.InitReq): Promise<GetClusterListResp> {
|
|
459
|
-
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/minio/
|
|
460
|
+
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/clusters?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
460
461
|
}
|
|
461
462
|
static GetCluster(req: GetClusterReq, initReq?: fm.InitReq): Promise<GetClusterResp> {
|
|
462
|
-
return fm.fetchReq<GetClusterReq, GetClusterResp>(`/apis/mcamel.io/minio/
|
|
463
|
+
return fm.fetchReq<GetClusterReq, GetClusterResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/clusters/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
463
464
|
}
|
|
464
465
|
static GetClusterHostnetworkPorts(req: GetClusterHostnetworkPortsReq, initReq?: fm.InitReq): Promise<GetClusterHostnetworkPortsResp> {
|
|
465
|
-
return fm.fetchReq<GetClusterHostnetworkPortsReq, GetClusterHostnetworkPortsResp>(`/apis/mcamel.io/minio/
|
|
466
|
+
return fm.fetchReq<GetClusterHostnetworkPortsReq, GetClusterHostnetworkPortsResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/hostnetwork-ports?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
466
467
|
}
|
|
467
468
|
static GetClusterNamespaceList(req: GetClusterNamespaceListReq, initReq?: fm.InitReq): Promise<GetClusterNamespaceListResp> {
|
|
468
|
-
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/minio/
|
|
469
|
+
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/${req["cluster"]}/namespaces?${fm.renderURLSearchParams(req, ["workspaceId", "cluster"])}`, {...initReq, method: "GET"})
|
|
469
470
|
}
|
|
470
471
|
static GetClusterNodePortList(req: GetClusterNodePortListReq, initReq?: fm.InitReq): Promise<GetClusterNodePortListResp> {
|
|
471
|
-
return fm.fetchReq<GetClusterNodePortListReq, GetClusterNodePortListResp>(`/apis/mcamel.io/minio/
|
|
472
|
+
return fm.fetchReq<GetClusterNodePortListReq, GetClusterNodePortListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/nodeports?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
472
473
|
}
|
|
473
474
|
static GetClusterNodeLabelList(req: GetClusterNodeLabelListReq, initReq?: fm.InitReq): Promise<GetClusterNodeLabelListResp> {
|
|
474
|
-
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/minio/
|
|
475
|
+
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/nodelabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
475
476
|
}
|
|
476
477
|
static GetClusterPodLabelList(req: GetClusterPodLabelListReq, initReq?: fm.InitReq): Promise<GetClusterPodLabelListResp> {
|
|
477
|
-
return fm.fetchReq<GetClusterPodLabelListReq, GetClusterPodLabelListResp>(`/apis/mcamel.io/minio/
|
|
478
|
+
return fm.fetchReq<GetClusterPodLabelListReq, GetClusterPodLabelListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/podlabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
478
479
|
}
|
|
479
480
|
static GetWorkspaceList(req: GetWorkspaceListReq, initReq?: fm.InitReq): Promise<GetWorkspaceListResp> {
|
|
480
|
-
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/minio/
|
|
481
|
+
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/minio/v1alpha2/workspaces?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
481
482
|
}
|
|
482
483
|
static GetInsightAgentStatus(req: GetInsightAgentStatusReq, initReq?: fm.InitReq): Promise<GetInsightAgentStatusResp> {
|
|
483
|
-
return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/minio/
|
|
484
|
+
return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/insight/status?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
484
485
|
}
|
|
485
486
|
static GetEventList(req: GetEventListReq, initReq?: fm.InitReq): Promise<GetEventListResp> {
|
|
486
|
-
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/minio/
|
|
487
|
+
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/${req["namespace"]}/events?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
487
488
|
}
|
|
488
489
|
static GetAllEventList(req: GetAllEventListReq, initReq?: fm.InitReq): Promise<GetAllEventListResp> {
|
|
489
|
-
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/minio/
|
|
490
|
+
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/all-events?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
490
491
|
}
|
|
491
492
|
static GetAllEventKindsList(req: GetAllEventKindsListReq, initReq?: fm.InitReq): Promise<GetAllEventKindsListResp> {
|
|
492
|
-
return fm.fetchReq<GetAllEventKindsListReq, GetAllEventKindsListResp>(`/apis/mcamel.io/minio/
|
|
493
|
+
return fm.fetchReq<GetAllEventKindsListReq, GetAllEventKindsListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/all-events-kinds?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
493
494
|
}
|
|
494
495
|
static GetMetallbIPAddressPoolsList(req: GetMetallbIPAddressPoolsListReq, initReq?: fm.InitReq): Promise<GetMetallbIPAddressPoolsListResp> {
|
|
495
|
-
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/minio/
|
|
496
|
+
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/lbaddress/pools?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
496
497
|
}
|
|
497
498
|
static GetPermissionsList(req: GetPermissionsListReq, initReq?: fm.InitReq): Promise<GetPermissionsListResp> {
|
|
498
|
-
return fm.fetchReq<GetPermissionsListReq, GetPermissionsListResp>(`/apis/mcamel.io/minio/
|
|
499
|
+
return fm.fetchReq<GetPermissionsListReq, GetPermissionsListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/permissions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
499
500
|
}
|
|
500
501
|
static RestartInstance(req: RestartInstanceReq, initReq?: fm.InitReq): Promise<RestartInstanceResp> {
|
|
501
|
-
return fm.fetchReq<RestartInstanceReq, RestartInstanceResp>(`/apis/mcamel.io/minio/
|
|
502
|
+
return fm.fetchReq<RestartInstanceReq, RestartInstanceResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/restart`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
502
503
|
}
|
|
503
504
|
static InstallFile(req: InstallFileReq, initReq?: fm.InitReq): Promise<InstallFileResp> {
|
|
504
|
-
return fm.fetchReq<InstallFileReq, InstallFileResp>(`/apis/mcamel.io/minio/
|
|
505
|
+
return fm.fetchReq<InstallFileReq, InstallFileResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/install-file`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
505
506
|
}
|
|
506
507
|
static GetInstallVersion(req: GetInstallVersionReq, initReq?: fm.InitReq): Promise<GetInstallVersionResp> {
|
|
507
|
-
return fm.fetchReq<GetInstallVersionReq, GetInstallVersionResp>(`/apis/mcamel.io/minio/
|
|
508
|
+
return fm.fetchReq<GetInstallVersionReq, GetInstallVersionResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/install-version?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
508
509
|
}
|
|
509
510
|
static GetResourceQuota(req: GetResourceQuotaReq, initReq?: fm.InitReq): Promise<GetResourceQuotaResp> {
|
|
510
|
-
return fm.fetchReq<GetResourceQuotaReq, GetResourceQuotaResp>(`/apis/mcamel.io/minio/
|
|
511
|
+
return fm.fetchReq<GetResourceQuotaReq, GetResourceQuotaResp>(`/apis/mcamel.io/minio/v1alpha2/${req["cluster"]}/${req["namespace"]}/resourcequota?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
511
512
|
}
|
|
512
513
|
}
|
package/common.pb.ts
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
export enum FilterPodStatus {
|
|
8
|
+
FILTER_POD_STATUS_UNSPECIFIED = "FILTER_POD_STATUS_UNSPECIFIED",
|
|
9
|
+
FILTER_POD_STATUS_RUNNING = "FILTER_POD_STATUS_RUNNING",
|
|
10
|
+
FILTER_POD_STATUS_ERROR = "FILTER_POD_STATUS_ERROR",
|
|
11
|
+
FILTER_POD_STATUS_COMPLETED = "FILTER_POD_STATUS_COMPLETED",
|
|
12
|
+
FILTER_POD_STATUS_WAITING = "FILTER_POD_STATUS_WAITING",
|
|
13
|
+
}
|
|
14
|
+
|
|
7
15
|
export enum ExternalTrafficPolicy {
|
|
8
16
|
Cluster = "Cluster",
|
|
9
17
|
Local = "Local",
|
|
@@ -50,14 +58,6 @@ export enum PodCommonConditionStatus {
|
|
|
50
58
|
PodConditionStatusFalse = "PodConditionStatusFalse",
|
|
51
59
|
}
|
|
52
60
|
|
|
53
|
-
export enum PodCommonFilterPodStatus {
|
|
54
|
-
UNSPECIFIED = "UNSPECIFIED",
|
|
55
|
-
RUNNING = "RUNNING",
|
|
56
|
-
ERROR = "ERROR",
|
|
57
|
-
COMPLETED = "COMPLETED",
|
|
58
|
-
WAITING = "WAITING",
|
|
59
|
-
}
|
|
60
|
-
|
|
61
61
|
export type Affinity = {
|
|
62
62
|
nodeAffinity?: NodeAffinity
|
|
63
63
|
podAffinity?: PodAffinity
|
|
@@ -173,6 +173,7 @@ export type PodCommon = {
|
|
|
173
173
|
containersStatuses?: ContainerStatus[]
|
|
174
174
|
podStatus?: string
|
|
175
175
|
annotations?: {[key: string]: string}
|
|
176
|
+
filterPodStatus?: FilterPodStatus
|
|
176
177
|
}
|
|
177
178
|
|
|
178
179
|
export type OwnerReference = {
|
package/metric.pb.ts
CHANGED
|
@@ -22,6 +22,7 @@ export type GetAlertsListReq = {
|
|
|
22
22
|
cluster?: string
|
|
23
23
|
namespace?: string
|
|
24
24
|
name?: string
|
|
25
|
+
workspaceId?: number
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
export type GetAlertsListResp = {
|
|
@@ -31,6 +32,6 @@ export type GetAlertsListResp = {
|
|
|
31
32
|
|
|
32
33
|
export class Metric {
|
|
33
34
|
static GetAlertsList(req: GetAlertsListReq, initReq?: fm.InitReq): Promise<GetAlertsListResp> {
|
|
34
|
-
return fm.fetchReq<GetAlertsListReq, GetAlertsListResp>(`/apis/mcamel.io/minio/
|
|
35
|
+
return fm.fetchReq<GetAlertsListReq, GetAlertsListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/alerts?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
35
36
|
}
|
|
36
37
|
}
|
package/minio.pb.ts
CHANGED
|
@@ -62,6 +62,7 @@ export enum GetMinioConfRespItemsParamType {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
export type GetMinioUsersReq = {
|
|
65
|
+
workspaceId?: number
|
|
65
66
|
cluster?: string
|
|
66
67
|
namespace?: string
|
|
67
68
|
name?: string
|
|
@@ -86,6 +87,7 @@ export type GetMinioListReq = {
|
|
|
86
87
|
}
|
|
87
88
|
|
|
88
89
|
export type GetMinioConfReq = {
|
|
90
|
+
workspaceId?: number
|
|
89
91
|
page?: number
|
|
90
92
|
pageSize?: number
|
|
91
93
|
sortDir?: GetMinioConfReqSortDir
|
|
@@ -147,6 +149,7 @@ export type CreateMinioReq = {
|
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
export type UpdateMinioConfReq = {
|
|
152
|
+
workspaceId?: number
|
|
150
153
|
cluster?: string
|
|
151
154
|
namespace?: string
|
|
152
155
|
name?: string
|
|
@@ -214,6 +217,7 @@ export type GetMinioOperatorVersionListResp = {
|
|
|
214
217
|
}
|
|
215
218
|
|
|
216
219
|
export type DeleteMinioReq = {
|
|
220
|
+
workspaceId?: number
|
|
217
221
|
cluster?: string
|
|
218
222
|
namespace?: string
|
|
219
223
|
name?: string
|
|
@@ -232,6 +236,7 @@ export type DeleteMiniosResp = {
|
|
|
232
236
|
}
|
|
233
237
|
|
|
234
238
|
export type GetMinioNodeListReq = {
|
|
239
|
+
workspaceId?: number
|
|
235
240
|
cluster?: string
|
|
236
241
|
namespace?: string
|
|
237
242
|
name?: string
|
|
@@ -261,6 +266,7 @@ export type GetMinioNodeListResp = {
|
|
|
261
266
|
}
|
|
262
267
|
|
|
263
268
|
export type GetMinioGrafanaAddrReq = {
|
|
269
|
+
workspaceId?: number
|
|
264
270
|
cluster?: string
|
|
265
271
|
namespace?: string
|
|
266
272
|
name?: string
|
|
@@ -273,6 +279,7 @@ export type GetMinioGrafanaAddrResp = {
|
|
|
273
279
|
}
|
|
274
280
|
|
|
275
281
|
export type GetMinioReq = {
|
|
282
|
+
workspaceId?: number
|
|
276
283
|
cluster?: string
|
|
277
284
|
namespace?: string
|
|
278
285
|
name?: string
|
|
@@ -325,44 +332,44 @@ export type TenantItem = {
|
|
|
325
332
|
status?: TenantItemStatus
|
|
326
333
|
}
|
|
327
334
|
|
|
328
|
-
export class
|
|
335
|
+
export class MinioV1alpha2 {
|
|
329
336
|
static GetMinioList(req: GetMinioListReq, initReq?: fm.InitReq): Promise<GetMinioListResp> {
|
|
330
|
-
return fm.fetchReq<GetMinioListReq, GetMinioListResp>(`/apis/mcamel.io/minio/
|
|
337
|
+
return fm.fetchReq<GetMinioListReq, GetMinioListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/minios?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
331
338
|
}
|
|
332
339
|
static GetMinioOperatorVersionList(req: GetMinioOperatorVersionListReq, initReq?: fm.InitReq): Promise<GetMinioOperatorVersionListResp> {
|
|
333
|
-
return fm.fetchReq<GetMinioOperatorVersionListReq, GetMinioOperatorVersionListResp>(`/apis/mcamel.io/minio/
|
|
340
|
+
return fm.fetchReq<GetMinioOperatorVersionListReq, GetMinioOperatorVersionListResp>(`/apis/mcamel.io/minio/v1alpha2/minio-operator/versions?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
334
341
|
}
|
|
335
342
|
static GetMinio(req: GetMinioReq, initReq?: fm.InitReq): Promise<GetMinioResp> {
|
|
336
|
-
return fm.fetchReq<GetMinioReq, GetMinioResp>(`/apis/mcamel.io/minio/
|
|
343
|
+
return fm.fetchReq<GetMinioReq, GetMinioResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
337
344
|
}
|
|
338
345
|
static GetMinioParam(req: GetMinioParamReq, initReq?: fm.InitReq): Promise<GetMinioParamResp> {
|
|
339
|
-
return fm.fetchReq<GetMinioParamReq, GetMinioParamResp>(`/apis/mcamel.io/minio/
|
|
346
|
+
return fm.fetchReq<GetMinioParamReq, GetMinioParamResp>(`/apis/mcamel.io/minio/v1alpha2/minio-params/${req["cluster"]}?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
340
347
|
}
|
|
341
348
|
static GetMinioNodeList(req: GetMinioNodeListReq, initReq?: fm.InitReq): Promise<GetMinioNodeListResp> {
|
|
342
|
-
return fm.fetchReq<GetMinioNodeListReq, GetMinioNodeListResp>(`/apis/mcamel.io/minio/
|
|
349
|
+
return fm.fetchReq<GetMinioNodeListReq, GetMinioNodeListResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/nodes?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
343
350
|
}
|
|
344
351
|
static GetMinioGrafanaAddr(req: GetMinioGrafanaAddrReq, initReq?: fm.InitReq): Promise<GetMinioGrafanaAddrResp> {
|
|
345
|
-
return fm.fetchReq<GetMinioGrafanaAddrReq, GetMinioGrafanaAddrResp>(`/apis/mcamel.io/minio/
|
|
352
|
+
return fm.fetchReq<GetMinioGrafanaAddrReq, GetMinioGrafanaAddrResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/grafana?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
346
353
|
}
|
|
347
354
|
static CreateMinio(req: CreateMinioReq, initReq?: fm.InitReq): Promise<CreateMinioResp> {
|
|
348
|
-
return fm.fetchReq<CreateMinioReq, CreateMinioResp>(`/apis/mcamel.io/minio/
|
|
355
|
+
return fm.fetchReq<CreateMinioReq, CreateMinioResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/minio`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
349
356
|
}
|
|
350
357
|
static GetMinioConfs(req: GetMinioConfReq, initReq?: fm.InitReq): Promise<GetMinioConfResp> {
|
|
351
|
-
return fm.fetchReq<GetMinioConfReq, GetMinioConfResp>(`/apis/mcamel.io/minio/
|
|
358
|
+
return fm.fetchReq<GetMinioConfReq, GetMinioConfResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/confs?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
352
359
|
}
|
|
353
360
|
static UpdateMinioConf(req: UpdateMinioConfReq, initReq?: fm.InitReq): Promise<UpdateMinioConfResp> {
|
|
354
|
-
return fm.fetchReq<UpdateMinioConfReq, UpdateMinioConfResp>(`/apis/mcamel.io/minio/
|
|
361
|
+
return fm.fetchReq<UpdateMinioConfReq, UpdateMinioConfResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/conf`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
355
362
|
}
|
|
356
363
|
static UpdateMinioParams(req: CreateMinioReq, initReq?: fm.InitReq): Promise<UpdateMinioParamsResp> {
|
|
357
|
-
return fm.fetchReq<CreateMinioReq, UpdateMinioParamsResp>(`/apis/mcamel.io/minio/
|
|
364
|
+
return fm.fetchReq<CreateMinioReq, UpdateMinioParamsResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/params`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
358
365
|
}
|
|
359
366
|
static DeleteMinio(req: DeleteMinioReq, initReq?: fm.InitReq): Promise<DeleteMinioResp> {
|
|
360
|
-
return fm.fetchReq<DeleteMinioReq, DeleteMinioResp>(`/apis/mcamel.io/minio/
|
|
367
|
+
return fm.fetchReq<DeleteMinioReq, DeleteMinioResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
361
368
|
}
|
|
362
369
|
static DeleteMinios(req: DeleteMiniosReq, initReq?: fm.InitReq): Promise<DeleteMiniosResp> {
|
|
363
|
-
return fm.fetchReq<DeleteMiniosReq, DeleteMiniosResp>(`/apis/mcamel.io/minio/
|
|
370
|
+
return fm.fetchReq<DeleteMiniosReq, DeleteMiniosResp>(`/apis/mcamel.io/minio/v1alpha2/minios`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
364
371
|
}
|
|
365
372
|
static GetMinioUsers(req: GetMinioUsersReq, initReq?: fm.InitReq): Promise<GetMinioUsersResp> {
|
|
366
|
-
return fm.fetchReq<GetMinioUsersReq, GetMinioUsersResp>(`/apis/mcamel.io/minio/
|
|
373
|
+
return fm.fetchReq<GetMinioUsersReq, GetMinioUsersResp>(`/apis/mcamel.io/minio/v1alpha2/minio/${req["workspaceId"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/users?${fm.renderURLSearchParams(req, ["workspaceId", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
367
374
|
}
|
|
368
375
|
}
|
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/minio/
|
|
165
|
+
return fm.fetchReq<GetStorageConfigParamReq, GetStorageConfigParamResp>(`/apis/mcamel.io/minio/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/minio/
|
|
168
|
+
return fm.fetchReq<CreateStorageConfigBucketCheckJobReq, CreateStorageConfigBucketCheckJobResp>(`/apis/mcamel.io/minio/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/minio/
|
|
171
|
+
return fm.fetchReq<CreateStorageConfigReq, CreateStorageConfigResp>(`/apis/mcamel.io/minio/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/minio/
|
|
174
|
+
return fm.fetchReq<GetStorageConfigConsumersReq, GetStorageConfigConsumersResp>(`/apis/mcamel.io/minio/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/minio/
|
|
177
|
+
return fm.fetchReq<DeleteStorageConfigReq, DeleteStorageConfigResp>(`/apis/mcamel.io/minio/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/minio/
|
|
180
|
+
return fm.fetchReq<CreateStorageConfigReq, UpdateStorageConfigResp>(`/apis/mcamel.io/minio/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/minio/
|
|
183
|
+
return fm.fetchReq<GetStorageConfigReq, GetStorageConfigResp>(`/apis/mcamel.io/minio/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/minio/
|
|
186
|
+
return fm.fetchReq<GetStorageConfigListReq, GetStorageConfigListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/storage-configs?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
187
187
|
}
|
|
188
188
|
}
|
package/template.pb.ts
CHANGED
|
@@ -165,30 +165,30 @@ export type GetTemplateInstanceTypeListResp = {
|
|
|
165
165
|
|
|
166
166
|
export class Template {
|
|
167
167
|
static GetTemplateConfigList(req: GetTemplateConfigListReq, initReq?: fm.InitReq): Promise<GetTemplateConfigListResp> {
|
|
168
|
-
return fm.fetchReq<GetTemplateConfigListReq, GetTemplateConfigListResp>(`/apis/mcamel.io/minio/
|
|
168
|
+
return fm.fetchReq<GetTemplateConfigListReq, GetTemplateConfigListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
169
169
|
}
|
|
170
170
|
static GetTemplateInstanceTypeList(req: GetTemplateInstanceTypeListReq, initReq?: fm.InitReq): Promise<GetTemplateInstanceTypeListResp> {
|
|
171
|
-
return fm.fetchReq<GetTemplateInstanceTypeListReq, GetTemplateInstanceTypeListResp>(`/apis/mcamel.io/minio/
|
|
171
|
+
return fm.fetchReq<GetTemplateInstanceTypeListReq, GetTemplateInstanceTypeListResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_instance_type?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
172
172
|
}
|
|
173
173
|
static GetTemplateConfig(req: GetTemplateConfigReq, initReq?: fm.InitReq): Promise<GetTemplateConfigResp> {
|
|
174
|
-
return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigResp>(`/apis/mcamel.io/minio/
|
|
174
|
+
return fm.fetchReq<GetTemplateConfigReq, GetTemplateConfigResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config/${req["name"]}?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
175
175
|
}
|
|
176
176
|
static DeleteTemplateConfig(req: DeleteTemplateReq, initReq?: fm.InitReq): Promise<DeleteTemplateConfigResp> {
|
|
177
|
-
return fm.fetchReq<DeleteTemplateReq, DeleteTemplateConfigResp>(`/apis/mcamel.io/minio/
|
|
177
|
+
return fm.fetchReq<DeleteTemplateReq, DeleteTemplateConfigResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config/${req["name"]}/${req["version"]}`, {...initReq, method: "DELETE"})
|
|
178
178
|
}
|
|
179
179
|
static CreateTemplateConfig(req: CreateTemplateConfigReq, initReq?: fm.InitReq): Promise<CreateTemplateConfigResp> {
|
|
180
|
-
return fm.fetchReq<CreateTemplateConfigReq, CreateTemplateConfigResp>(`/apis/mcamel.io/minio/
|
|
180
|
+
return fm.fetchReq<CreateTemplateConfigReq, CreateTemplateConfigResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
181
181
|
}
|
|
182
182
|
static UpdateTemplateConfig(req: UpdateTemplateConfigReq, initReq?: fm.InitReq): Promise<UpdateTemplateConfigResp> {
|
|
183
|
-
return fm.fetchReq<UpdateTemplateConfigReq, UpdateTemplateConfigResp>(`/apis/mcamel.io/minio/
|
|
183
|
+
return fm.fetchReq<UpdateTemplateConfigReq, UpdateTemplateConfigResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
184
184
|
}
|
|
185
185
|
static GetTemplateConfigString(req: GetTemplateConfigStringReq, initReq?: fm.InitReq): Promise<GetTemplateConfigStringResp> {
|
|
186
|
-
return fm.fetchReq<GetTemplateConfigStringReq, GetTemplateConfigStringResp>(`/apis/mcamel.io/minio/
|
|
186
|
+
return fm.fetchReq<GetTemplateConfigStringReq, GetTemplateConfigStringResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config/${req["name"]}/to_string?${fm.renderURLSearchParams(req, ["workspaceId", "name"])}`, {...initReq, method: "GET"})
|
|
187
187
|
}
|
|
188
188
|
static UpdateTemplateConfigToItem(req: UpdateTemplateConfigToItemReq, initReq?: fm.InitReq): Promise<UpdateTemplateConfigToItemResp> {
|
|
189
|
-
return fm.fetchReq<UpdateTemplateConfigToItemReq, UpdateTemplateConfigToItemResp>(`/apis/mcamel.io/minio/
|
|
189
|
+
return fm.fetchReq<UpdateTemplateConfigToItemReq, UpdateTemplateConfigToItemResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config/to_template`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
190
190
|
}
|
|
191
191
|
static GetTemplateConfigVersions(req: GetTemplateConfigVersionsReq, initReq?: fm.InitReq): Promise<GetTemplateConfigVersionsResp> {
|
|
192
|
-
return fm.fetchReq<GetTemplateConfigVersionsReq, GetTemplateConfigVersionsResp>(`/apis/mcamel.io/minio/
|
|
192
|
+
return fm.fetchReq<GetTemplateConfigVersionsReq, GetTemplateConfigVersionsResp>(`/apis/mcamel.io/minio/v1alpha2/${req["workspaceId"]}/template_config/versions?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
193
193
|
}
|
|
194
194
|
}
|
package/version.pb.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type Empty = {
|
|
|
26
26
|
|
|
27
27
|
export class Version {
|
|
28
28
|
static Get(req: Empty, initReq?: fm.InitReq): Promise<GetVersionReply> {
|
|
29
|
-
return fm.fetchReq<Empty, GetVersionReply>(`/apis/mcamel.io/minio/
|
|
29
|
+
return fm.fetchReq<Empty, GetVersionReply>(`/apis/mcamel.io/minio/v1alpha2/minio/version?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
30
30
|
}
|
|
31
31
|
static Healthz(req: Empty, initReq?: fm.InitReq): Promise<HealthzReply> {
|
|
32
32
|
return fm.fetchReq<Empty, HealthzReply>(`/healthz?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|