@daocloud-proto/mcamel-minio 0.2.0-21 → 0.2.0-210
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 +78 -0
- package/cluster.pb.ts +116 -0
- package/common.pb.ts +32 -0
- package/insight.pb.ts +8 -12
- package/minio.pb.ts +8 -8
- package/package.json +1 -1
package/cloudshell.pb.ts
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
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 GoogleProtobufEmpty from "../../../google/protobuf/empty.pb"
|
|
8
|
+
import * as CommonCommon from "./common.pb"
|
|
9
|
+
import * as fm from "./fetch.pb"
|
|
10
|
+
|
|
11
|
+
export enum CreateCloudShellRequestType {
|
|
12
|
+
TYPE_UNSPECIFIED = "TYPE_UNSPECIFIED",
|
|
13
|
+
bash = "bash",
|
|
14
|
+
exec = "exec",
|
|
15
|
+
logs = "logs",
|
|
16
|
+
upload = "upload",
|
|
17
|
+
download = "download",
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export type ObjectMeta = {
|
|
21
|
+
name?: string
|
|
22
|
+
namespace?: string
|
|
23
|
+
uid?: string
|
|
24
|
+
resourceVersion?: string
|
|
25
|
+
creationTimestamp?: string
|
|
26
|
+
deletionTimestamp?: string
|
|
27
|
+
labels?: {[key: string]: string}
|
|
28
|
+
annotations?: {[key: string]: string}
|
|
29
|
+
ownerReferences?: CommonCommon.OwnerReference[]
|
|
30
|
+
cluster?: string
|
|
31
|
+
workspaceAlias?: string
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type CloudShell = {
|
|
35
|
+
metadata?: ObjectMeta
|
|
36
|
+
spec?: CloudShellSpec
|
|
37
|
+
status?: CloudShellStatus
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export type CloudShellSpec = {
|
|
41
|
+
configMapName?: string
|
|
42
|
+
once?: boolean
|
|
43
|
+
commandAction?: string
|
|
44
|
+
ttl?: number
|
|
45
|
+
cleanup?: boolean
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export type CloudShellStatus = {
|
|
49
|
+
phase?: string
|
|
50
|
+
accessUrl?: string
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export type CreateCloudShellRequest = {
|
|
54
|
+
type?: CreateCloudShellRequestType
|
|
55
|
+
cluster?: string
|
|
56
|
+
namespace?: string
|
|
57
|
+
podName?: string
|
|
58
|
+
filePath?: string
|
|
59
|
+
container?: string
|
|
60
|
+
logCount?: number
|
|
61
|
+
data?: CloudShell
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export type GetorDeleteCloudShellRequest = {
|
|
65
|
+
name?: string
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export class CloudShellService {
|
|
69
|
+
static CreateCloudShell(req: CreateCloudShellRequest, initReq?: fm.InitReq): Promise<CloudShell> {
|
|
70
|
+
return fm.fetchReq<CreateCloudShellRequest, CloudShell>(`/apis/mcamel.io/minio/v1alpha1/cloudshells`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
71
|
+
}
|
|
72
|
+
static GetCloudShell(req: GetorDeleteCloudShellRequest, initReq?: fm.InitReq): Promise<CloudShell> {
|
|
73
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, CloudShell>(`/apis/mcamel.io/minio/v1alpha1/cloudshells/${req["name"]}?${fm.renderURLSearchParams(req, ["name"])}`, {...initReq, method: "GET"})
|
|
74
|
+
}
|
|
75
|
+
static DeleteCloudShell(req: GetorDeleteCloudShellRequest, initReq?: fm.InitReq): Promise<GoogleProtobufEmpty.Empty> {
|
|
76
|
+
return fm.fetchReq<GetorDeleteCloudShellRequest, GoogleProtobufEmpty.Empty>(`/apis/mcamel.io/minio/v1alpha1/cloudshells/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
77
|
+
}
|
|
78
|
+
}
|
package/cluster.pb.ts
CHANGED
|
@@ -13,6 +13,11 @@ export enum EventType {
|
|
|
13
13
|
Warning = "Warning",
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
export enum GetAllEventListReqSortDir {
|
|
17
|
+
ASC = "ASC",
|
|
18
|
+
DESC = "DESC",
|
|
19
|
+
}
|
|
20
|
+
|
|
16
21
|
export enum GetEventListReqKind {
|
|
17
22
|
KIND_UNSPECIFIED = "KIND_UNSPECIFIED",
|
|
18
23
|
Pod = "Pod",
|
|
@@ -28,6 +33,70 @@ export enum GetInsightAgentStatusRespInsightAgentStatus {
|
|
|
28
33
|
Install = "Install",
|
|
29
34
|
}
|
|
30
35
|
|
|
36
|
+
export type GetAllEventKindsListResp = {
|
|
37
|
+
data?: string[]
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export type GetAllEventKindsListReq = {
|
|
41
|
+
cluster?: string
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export type GetAllEventListReq = {
|
|
45
|
+
page?: number
|
|
46
|
+
pageSize?: number
|
|
47
|
+
sortDir?: GetAllEventListReqSortDir
|
|
48
|
+
sortBy?: string
|
|
49
|
+
searchKey?: string
|
|
50
|
+
cluster?: string
|
|
51
|
+
namespace?: string
|
|
52
|
+
name?: string
|
|
53
|
+
eventType?: EventType
|
|
54
|
+
kindName?: string
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export type GetAllEventListRespItemsSource = {
|
|
58
|
+
component?: string
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export type GetAllEventListRespItemsMetadata = {
|
|
62
|
+
uid?: string
|
|
63
|
+
name?: string
|
|
64
|
+
namespace?: string
|
|
65
|
+
annotations?: {[key: string]: string}
|
|
66
|
+
resourceVersion?: string
|
|
67
|
+
creationTimestamp?: string
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export type GetAllEventListRespItemsInvolvedObject = {
|
|
71
|
+
uid?: string
|
|
72
|
+
kind?: string
|
|
73
|
+
name?: string
|
|
74
|
+
namespace?: string
|
|
75
|
+
apiVersion?: string
|
|
76
|
+
resourceVersion?: string
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export type GetAllEventListRespItems = {
|
|
80
|
+
kind?: string
|
|
81
|
+
type?: string
|
|
82
|
+
count?: number
|
|
83
|
+
reason?: string
|
|
84
|
+
source?: GetAllEventListRespItemsSource
|
|
85
|
+
message?: string
|
|
86
|
+
metadata?: GetAllEventListRespItemsMetadata
|
|
87
|
+
apiVersion?: string
|
|
88
|
+
lastTimestamp?: string
|
|
89
|
+
firstTimestamp?: string
|
|
90
|
+
involvedObject?: GetAllEventListRespItemsInvolvedObject
|
|
91
|
+
reportingInstance?: string
|
|
92
|
+
reportingComponent?: string
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export type GetAllEventListResp = {
|
|
96
|
+
items?: GetAllEventListRespItems[]
|
|
97
|
+
pagination?: CommonCommon.Pagination
|
|
98
|
+
}
|
|
99
|
+
|
|
31
100
|
export type GetClusterNodeLabelListReq = {
|
|
32
101
|
cluster?: string
|
|
33
102
|
}
|
|
@@ -42,6 +111,23 @@ export type GetClusterNodeLabelListResp = {
|
|
|
42
111
|
pagination?: CommonCommon.Pagination
|
|
43
112
|
}
|
|
44
113
|
|
|
114
|
+
export type GetClusterPodLabelListReq = {
|
|
115
|
+
page?: number
|
|
116
|
+
pageSize?: number
|
|
117
|
+
searchKey?: string
|
|
118
|
+
cluster?: string
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export type GetClusterPodLabelListRespLabel = {
|
|
122
|
+
key?: string
|
|
123
|
+
value?: string[]
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export type GetClusterPodLabelListResp = {
|
|
127
|
+
items?: GetClusterPodLabelListRespLabel[]
|
|
128
|
+
pagination?: CommonCommon.Pagination
|
|
129
|
+
}
|
|
130
|
+
|
|
45
131
|
export type GetClusterNodePortListReq = {
|
|
46
132
|
cluster?: string
|
|
47
133
|
}
|
|
@@ -56,6 +142,24 @@ export type EventSource = {
|
|
|
56
142
|
host?: string
|
|
57
143
|
}
|
|
58
144
|
|
|
145
|
+
export type GetMetallbIPAddressPoolsListReq = {
|
|
146
|
+
cluster?: string
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export type GetMetallbIPAddressPoolsListRespItem = {
|
|
150
|
+
name?: string
|
|
151
|
+
addresses?: string[]
|
|
152
|
+
autoAssign?: boolean
|
|
153
|
+
avoidBuggyIPs?: boolean
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export type GetMetallbIPAddressPoolsListResp = {
|
|
157
|
+
items?: GetMetallbIPAddressPoolsListRespItem[]
|
|
158
|
+
isSupportLb?: boolean
|
|
159
|
+
externalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy[]
|
|
160
|
+
lbTyp?: CommonCommon.LBTyp[]
|
|
161
|
+
}
|
|
162
|
+
|
|
59
163
|
export type GetEventListReq = {
|
|
60
164
|
cluster?: string
|
|
61
165
|
namespace?: string
|
|
@@ -143,6 +247,9 @@ export class Cluster {
|
|
|
143
247
|
static GetClusterNodeLabelList(req: GetClusterNodeLabelListReq, initReq?: fm.InitReq): Promise<GetClusterNodeLabelListResp> {
|
|
144
248
|
return fm.fetchReq<GetClusterNodeLabelListReq, GetClusterNodeLabelListResp>(`/apis/mcamel.io/minio/v1alpha1/${req["cluster"]}/nodelabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
145
249
|
}
|
|
250
|
+
static GetClusterPodLabelList(req: GetClusterPodLabelListReq, initReq?: fm.InitReq): Promise<GetClusterPodLabelListResp> {
|
|
251
|
+
return fm.fetchReq<GetClusterPodLabelListReq, GetClusterPodLabelListResp>(`/apis/mcamel.io/minio/v1alpha1/${req["cluster"]}/podlabels?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
252
|
+
}
|
|
146
253
|
static GetWorkspaceList(req: GetWorkspaceListReq, initReq?: fm.InitReq): Promise<GetWorkspaceListResp> {
|
|
147
254
|
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/minio/v1alpha1/workspaces?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
148
255
|
}
|
|
@@ -152,4 +259,13 @@ export class Cluster {
|
|
|
152
259
|
static GetEventList(req: GetEventListReq, initReq?: fm.InitReq): Promise<GetEventListResp> {
|
|
153
260
|
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/minio/v1alpha1/${req["cluster"]}/${req["namespace"]}/events?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
154
261
|
}
|
|
262
|
+
static GetAllEventList(req: GetAllEventListReq, initReq?: fm.InitReq): Promise<GetAllEventListResp> {
|
|
263
|
+
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/minio/v1alpha1/${req["cluster"]}/${req["namespace"]}/${req["name"]}/all-events?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
264
|
+
}
|
|
265
|
+
static GetAllEventKindsList(req: GetAllEventKindsListReq, initReq?: fm.InitReq): Promise<GetAllEventKindsListResp> {
|
|
266
|
+
return fm.fetchReq<GetAllEventKindsListReq, GetAllEventKindsListResp>(`/apis/mcamel.io/minio/v1alpha1/${req["cluster"]}/all-events-kinds?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
267
|
+
}
|
|
268
|
+
static GetMetallbIPAddressPoolsList(req: GetMetallbIPAddressPoolsListReq, initReq?: fm.InitReq): Promise<GetMetallbIPAddressPoolsListResp> {
|
|
269
|
+
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/minio/v1alpha1/${req["cluster"]}/lbaddress/pools?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
270
|
+
}
|
|
155
271
|
}
|
package/common.pb.ts
CHANGED
|
@@ -4,6 +4,22 @@
|
|
|
4
4
|
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
export enum ExternalTrafficPolicy {
|
|
8
|
+
Cluster = "Cluster",
|
|
9
|
+
Local = "Local",
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export enum LBTyp {
|
|
13
|
+
MetalLB = "MetalLB",
|
|
14
|
+
Others = "Others",
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export enum ServiceType {
|
|
18
|
+
ClusterIP = "ClusterIP",
|
|
19
|
+
NodePort = "NodePort",
|
|
20
|
+
LoadBalancer = "LoadBalancer",
|
|
21
|
+
}
|
|
22
|
+
|
|
7
23
|
export enum PageInfoReqSortDir {
|
|
8
24
|
ASC = "ASC",
|
|
9
25
|
DESC = "DESC",
|
|
@@ -129,10 +145,26 @@ export type PodCommon = {
|
|
|
129
145
|
cpuLimit?: number
|
|
130
146
|
memoryUsage?: number
|
|
131
147
|
memoryLimit?: number
|
|
148
|
+
pvUsedInGb?: number
|
|
149
|
+
pvAllocatedInGb?: number
|
|
132
150
|
conditions?: PodCommonCondition[]
|
|
151
|
+
containersName?: string[]
|
|
152
|
+
ownerReference?: OwnerReference[]
|
|
153
|
+
initContainersName?: string[]
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export type OwnerReference = {
|
|
157
|
+
uid?: string
|
|
158
|
+
controller?: boolean
|
|
159
|
+
name?: string
|
|
160
|
+
kind?: string
|
|
133
161
|
}
|
|
134
162
|
|
|
135
163
|
export type CommonItemStatus = {
|
|
136
164
|
serviceAddresses?: string[]
|
|
137
165
|
webManagerAddress?: string
|
|
166
|
+
webLogAddress?: string
|
|
167
|
+
isHwameistorSc?: boolean
|
|
168
|
+
avgPvAllocatedInGb?: number
|
|
169
|
+
avgPvUsedInGb?: number
|
|
138
170
|
}
|
package/insight.pb.ts
CHANGED
|
@@ -20,27 +20,23 @@ export enum TargetType {
|
|
|
20
20
|
DEPLOYMENT = "DEPLOYMENT",
|
|
21
21
|
STATEFULSET = "STATEFULSET",
|
|
22
22
|
DAEMONSET = "DAEMONSET",
|
|
23
|
-
CRONJOB = "CRONJOB",
|
|
24
23
|
POD = "POD",
|
|
25
24
|
}
|
|
26
25
|
|
|
27
|
-
export enum AlertStatus {
|
|
28
|
-
ALERT_STATUS_UNSPECIFIED = "ALERT_STATUS_UNSPECIFIED",
|
|
29
|
-
ALERT_STATUS_FIRING = "ALERT_STATUS_FIRING",
|
|
30
|
-
ALERT_STATUS_RESOLVED = "ALERT_STATUS_RESOLVED",
|
|
31
|
-
}
|
|
32
|
-
|
|
33
26
|
export type AlertSummary = {
|
|
34
|
-
|
|
27
|
+
id?: string
|
|
28
|
+
groupName?: string
|
|
29
|
+
groupId?: string
|
|
35
30
|
ruleName?: string
|
|
36
|
-
|
|
31
|
+
ruleId?: string
|
|
37
32
|
clusterName?: string
|
|
38
33
|
namespace?: string
|
|
39
34
|
targetType?: TargetType
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
target?: string
|
|
36
|
+
severity?: Severity
|
|
37
|
+
value?: string
|
|
38
|
+
notifyResponse?: string
|
|
42
39
|
description?: string
|
|
43
40
|
startAt?: string
|
|
44
41
|
updateAt?: string
|
|
45
|
-
notifyResponse?: string
|
|
46
42
|
}
|
package/minio.pb.ts
CHANGED
|
@@ -32,12 +32,6 @@ export enum GetMinioConfReqSortDir {
|
|
|
32
32
|
DESC = "DESC",
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
export enum CreateMinioReqServiceType {
|
|
36
|
-
ClusterIP = "ClusterIP",
|
|
37
|
-
NodePort = "NodePort",
|
|
38
|
-
LoadBalancer = "LoadBalancer",
|
|
39
|
-
}
|
|
40
|
-
|
|
41
35
|
export enum CreateMinioReqInstanceType {
|
|
42
36
|
HighAvailable = "HighAvailable",
|
|
43
37
|
Single = "Single",
|
|
@@ -128,7 +122,7 @@ export type CreateMinioReq = {
|
|
|
128
122
|
volumesPerServer?: number
|
|
129
123
|
storageClassName?: string
|
|
130
124
|
storageCapacity?: string
|
|
131
|
-
serviceType?:
|
|
125
|
+
serviceType?: CommonCommon.ServiceType
|
|
132
126
|
serviceAnnotations?: {[key: string]: string}
|
|
133
127
|
ports?: CreateMinioReqPorts[]
|
|
134
128
|
cpuRequest?: string
|
|
@@ -138,13 +132,17 @@ export type CreateMinioReq = {
|
|
|
138
132
|
instanceType?: CreateMinioReqInstanceType
|
|
139
133
|
consoleAccessKey?: string
|
|
140
134
|
consoleSecretKey?: string
|
|
141
|
-
consoleServiceType?:
|
|
135
|
+
consoleServiceType?: CommonCommon.ServiceType
|
|
142
136
|
consoleNodePort?: number
|
|
143
137
|
consoleServiceAnnotations?: {[key: string]: string}
|
|
144
138
|
minioRootUser?: string
|
|
145
139
|
minioRootPassword?: string
|
|
146
140
|
buckets?: CreateMinioReqBucket[]
|
|
147
141
|
affinity?: CommonCommon.Affinity
|
|
142
|
+
externalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy
|
|
143
|
+
lbTyp?: CommonCommon.LBTyp
|
|
144
|
+
lbPoolName?: string
|
|
145
|
+
lbAddress?: string
|
|
148
146
|
}
|
|
149
147
|
|
|
150
148
|
export type UpdateMinioConfReq = {
|
|
@@ -272,6 +270,8 @@ export type GetMinioGrafanaAddrReq = {
|
|
|
272
270
|
cluster?: string
|
|
273
271
|
namespace?: string
|
|
274
272
|
name?: string
|
|
273
|
+
from?: string
|
|
274
|
+
to?: string
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
export type GetMinioGrafanaAddrResp = {
|