@daocloud-proto/mcamel-redis 0.4.0-23 → 0.4.0-230
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 +94 -0
- package/common.pb.ts +27 -0
- package/insight.pb.ts +8 -12
- package/package.json +1 -1
- package/redis.pb.ts +212 -5
- package/storage_config.pb.ts +188 -0
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/redis/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/redis/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/redis/v1alpha1/cloudshells/${req["name"]}`, {...initReq, method: "DELETE"})
|
|
77
|
+
}
|
|
78
|
+
}
|
package/cluster.pb.ts
CHANGED
|
@@ -13,9 +13,24 @@ 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",
|
|
23
|
+
Deployment = "Deployment",
|
|
24
|
+
StatefulSet = "StatefulSet",
|
|
25
|
+
DaemonSet = "DaemonSet",
|
|
18
26
|
Pod = "Pod",
|
|
27
|
+
Service = "Service",
|
|
28
|
+
Ingress = "Ingress",
|
|
29
|
+
Job = "Job",
|
|
30
|
+
CronJob = "CronJob",
|
|
31
|
+
HorizontalPodAutoscaler = "HorizontalPodAutoscaler",
|
|
32
|
+
ReplicaSet = "ReplicaSet",
|
|
33
|
+
CronHPA = "CronHPA",
|
|
19
34
|
}
|
|
20
35
|
|
|
21
36
|
export enum GetWorkspaceListReqSortDir {
|
|
@@ -28,6 +43,61 @@ export enum GetInsightAgentStatusRespInsightAgentStatus {
|
|
|
28
43
|
Install = "Install",
|
|
29
44
|
}
|
|
30
45
|
|
|
46
|
+
export type GetAllEventListReq = {
|
|
47
|
+
page?: number
|
|
48
|
+
pageSize?: number
|
|
49
|
+
sortDir?: GetAllEventListReqSortDir
|
|
50
|
+
sortBy?: string
|
|
51
|
+
searchKey?: string
|
|
52
|
+
cluster?: string
|
|
53
|
+
namespace?: string
|
|
54
|
+
name?: string
|
|
55
|
+
eventType?: EventType
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export type GetAllEventListRespItemsSource = {
|
|
59
|
+
component?: string
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export type GetAllEventListRespItemsMetadata = {
|
|
63
|
+
uid?: string
|
|
64
|
+
name?: string
|
|
65
|
+
namespace?: string
|
|
66
|
+
annotations?: {[key: string]: string}
|
|
67
|
+
resourceVersion?: string
|
|
68
|
+
creationTimestamp?: string
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export type GetAllEventListRespItemsInvolvedObject = {
|
|
72
|
+
uid?: string
|
|
73
|
+
kind?: string
|
|
74
|
+
name?: string
|
|
75
|
+
namespace?: string
|
|
76
|
+
apiVersion?: string
|
|
77
|
+
resourceVersion?: string
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export type GetAllEventListRespItems = {
|
|
81
|
+
kind?: string
|
|
82
|
+
type?: string
|
|
83
|
+
count?: number
|
|
84
|
+
reason?: string
|
|
85
|
+
source?: GetAllEventListRespItemsSource
|
|
86
|
+
message?: string
|
|
87
|
+
metadata?: GetAllEventListRespItemsMetadata
|
|
88
|
+
apiVersion?: string
|
|
89
|
+
lastTimestamp?: string
|
|
90
|
+
firstTimestamp?: string
|
|
91
|
+
involvedObject?: GetAllEventListRespItemsInvolvedObject
|
|
92
|
+
reportingInstance?: string
|
|
93
|
+
reportingComponent?: string
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export type GetAllEventListResp = {
|
|
97
|
+
items?: GetAllEventListRespItems[]
|
|
98
|
+
pagination?: CommonCommon.Pagination
|
|
99
|
+
}
|
|
100
|
+
|
|
31
101
|
export type GetClusterNodeLabelListReq = {
|
|
32
102
|
cluster?: string
|
|
33
103
|
}
|
|
@@ -56,6 +126,24 @@ export type EventSource = {
|
|
|
56
126
|
host?: string
|
|
57
127
|
}
|
|
58
128
|
|
|
129
|
+
export type GetMetallbIPAddressPoolsListReq = {
|
|
130
|
+
cluster?: string
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export type GetMetallbIPAddressPoolsListRespItem = {
|
|
134
|
+
name?: string
|
|
135
|
+
addresses?: string[]
|
|
136
|
+
autoAssign?: boolean
|
|
137
|
+
avoidBuggyIPs?: boolean
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export type GetMetallbIPAddressPoolsListResp = {
|
|
141
|
+
items?: GetMetallbIPAddressPoolsListRespItem[]
|
|
142
|
+
isSupportLb?: boolean
|
|
143
|
+
externalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy[]
|
|
144
|
+
lbTyp?: CommonCommon.LBTyp[]
|
|
145
|
+
}
|
|
146
|
+
|
|
59
147
|
export type GetEventListReq = {
|
|
60
148
|
cluster?: string
|
|
61
149
|
namespace?: string
|
|
@@ -152,4 +240,10 @@ export class Cluster {
|
|
|
152
240
|
static GetEventList(req: GetEventListReq, initReq?: fm.InitReq): Promise<GetEventListResp> {
|
|
153
241
|
return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/redis/v1alpha1/${req["cluster"]}/${req["namespace"]}/events?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
|
|
154
242
|
}
|
|
243
|
+
static GetAllEventList(req: GetAllEventListReq, initReq?: fm.InitReq): Promise<GetAllEventListResp> {
|
|
244
|
+
return fm.fetchReq<GetAllEventListReq, GetAllEventListResp>(`/apis/mcamel.io/redis/v1alpha1/${req["cluster"]}/${req["namespace"]}/${req["name"]}/all-events?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
245
|
+
}
|
|
246
|
+
static GetMetallbIPAddressPoolsList(req: GetMetallbIPAddressPoolsListReq, initReq?: fm.InitReq): Promise<GetMetallbIPAddressPoolsListResp> {
|
|
247
|
+
return fm.fetchReq<GetMetallbIPAddressPoolsListReq, GetMetallbIPAddressPoolsListResp>(`/apis/mcamel.io/redis/v1alpha1/${req["cluster"]}/lbaddress/pools?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
248
|
+
}
|
|
155
249
|
}
|
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",
|
|
@@ -130,9 +146,20 @@ export type PodCommon = {
|
|
|
130
146
|
memoryUsage?: number
|
|
131
147
|
memoryLimit?: number
|
|
132
148
|
conditions?: PodCommonCondition[]
|
|
149
|
+
containersName?: string[]
|
|
150
|
+
ownerReference?: OwnerReference[]
|
|
151
|
+
initContainersName?: string[]
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export type OwnerReference = {
|
|
155
|
+
uid?: string
|
|
156
|
+
controller?: boolean
|
|
157
|
+
name?: string
|
|
158
|
+
kind?: string
|
|
133
159
|
}
|
|
134
160
|
|
|
135
161
|
export type CommonItemStatus = {
|
|
136
162
|
serviceAddresses?: string[]
|
|
137
163
|
webManagerAddress?: string
|
|
164
|
+
webLogAddress?: string
|
|
138
165
|
}
|
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/package.json
CHANGED
package/redis.pb.ts
CHANGED
|
@@ -34,6 +34,34 @@ export enum RedisPodType {
|
|
|
34
34
|
Sentinel = "Sentinel",
|
|
35
35
|
LeaderRedis = "LeaderRedis",
|
|
36
36
|
FollowerRedis = "FollowerRedis",
|
|
37
|
+
SentinelRedisMaster = "SentinelRedisMaster",
|
|
38
|
+
SentinelRedisReplica = "SentinelRedisReplica",
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export enum GetRedisBackupListReqSortDir {
|
|
42
|
+
ASC = "ASC",
|
|
43
|
+
DESC = "DESC",
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export enum GetMinioListReqSortDir {
|
|
47
|
+
ASC = "ASC",
|
|
48
|
+
DESC = "DESC",
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export enum GetRedisBackupListRespRedisBackupItemStatusStatus {
|
|
52
|
+
Running = "Running",
|
|
53
|
+
Failed = "Failed",
|
|
54
|
+
Succeeded = "Succeeded",
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export enum CreateRedisBackupReqProvider {
|
|
58
|
+
Minio = "Minio",
|
|
59
|
+
Other = "Other",
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export enum UpdateRedisAutoBackupReqProvider {
|
|
63
|
+
Minio = "Minio",
|
|
64
|
+
Other = "Other",
|
|
37
65
|
}
|
|
38
66
|
|
|
39
67
|
export enum GetRedisListReqSortDir {
|
|
@@ -46,10 +74,9 @@ export enum GetRedisConfReqSortDir {
|
|
|
46
74
|
DESC = "DESC",
|
|
47
75
|
}
|
|
48
76
|
|
|
49
|
-
export enum
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
LoadBalancer = "LoadBalancer",
|
|
77
|
+
export enum CreateRedisReqRestoreProvider {
|
|
78
|
+
Minio = "Minio",
|
|
79
|
+
Other = "Other",
|
|
53
80
|
}
|
|
54
81
|
|
|
55
82
|
export enum GetRedisParamRespSelectSelectType {
|
|
@@ -76,6 +103,149 @@ export enum GetRedisConfRespItemsParamType {
|
|
|
76
103
|
conf = "conf",
|
|
77
104
|
}
|
|
78
105
|
|
|
106
|
+
export type CreateRedisRecoverReq = {
|
|
107
|
+
workspaceId?: number
|
|
108
|
+
cluster?: string
|
|
109
|
+
namespace?: string
|
|
110
|
+
name?: string
|
|
111
|
+
backupName?: string
|
|
112
|
+
targetRedisName?: string
|
|
113
|
+
instanceType?: InstanceType
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export type CreateRedisRecoverResp = {
|
|
117
|
+
message?: string
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export type DeleteRedisBackupReq = {
|
|
121
|
+
cluster?: string
|
|
122
|
+
namespace?: string
|
|
123
|
+
backupName?: string
|
|
124
|
+
isOpenAutoBackup?: boolean
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export type DeleteRedisBackupResp = {
|
|
128
|
+
message?: string
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export type GetRedisBackupListReq = {
|
|
132
|
+
page?: number
|
|
133
|
+
pageSize?: number
|
|
134
|
+
sortDir?: GetRedisBackupListReqSortDir
|
|
135
|
+
sortBy?: string
|
|
136
|
+
searchKey?: string
|
|
137
|
+
cluster?: string
|
|
138
|
+
namespace?: string
|
|
139
|
+
name?: string
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export type GetMinioListReq = {
|
|
143
|
+
page?: number
|
|
144
|
+
pageSize?: number
|
|
145
|
+
sortDir?: GetMinioListReqSortDir
|
|
146
|
+
sortBy?: string
|
|
147
|
+
searchKey?: string
|
|
148
|
+
workspaceId?: number
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export type GetMinioListResp = {
|
|
152
|
+
items?: TenantItem[]
|
|
153
|
+
pagination?: CommonCommon.Pagination
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export type TenantItemCreateMinioReq = {
|
|
157
|
+
name?: string
|
|
158
|
+
namespace?: string
|
|
159
|
+
cluster?: string
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export type TenantItem = {
|
|
163
|
+
apiVersion?: string
|
|
164
|
+
kind?: string
|
|
165
|
+
spec?: TenantItemCreateMinioReq
|
|
166
|
+
status?: TenantItemStatus
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export type TenantItemStatus = {
|
|
170
|
+
common?: CommonCommon.CommonItemStatus
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export type GetRedisBackupListRespRedisBackupItemMetadata = {
|
|
174
|
+
creationTimestamp?: string
|
|
175
|
+
name?: string
|
|
176
|
+
namespace?: string
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export type GetRedisBackupListRespRedisBackupItemStatusJobCondition = {
|
|
180
|
+
type?: string
|
|
181
|
+
status?: string
|
|
182
|
+
reason?: string
|
|
183
|
+
message?: string
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export type GetRedisBackupListRespRedisBackupItemStatus = {
|
|
187
|
+
completionTime?: string
|
|
188
|
+
startTime?: string
|
|
189
|
+
active?: number
|
|
190
|
+
succeeded?: number
|
|
191
|
+
failed?: number
|
|
192
|
+
conditions?: GetRedisBackupListRespRedisBackupItemStatusJobCondition[]
|
|
193
|
+
isAutoBackup?: boolean
|
|
194
|
+
status?: GetRedisBackupListRespRedisBackupItemStatusStatus
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export type GetRedisBackupListRespRedisBackupItem = {
|
|
198
|
+
metadata?: GetRedisBackupListRespRedisBackupItemMetadata
|
|
199
|
+
spec?: CreateRedisBackupReq
|
|
200
|
+
status?: GetRedisBackupListRespRedisBackupItemStatus
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export type GetRedisBackupListResp = {
|
|
204
|
+
items?: GetRedisBackupListRespRedisBackupItem[]
|
|
205
|
+
pagination?: CommonCommon.Pagination
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export type CreateRedisBackupReq = {
|
|
209
|
+
cluster?: string
|
|
210
|
+
namespace?: string
|
|
211
|
+
name?: string
|
|
212
|
+
instanceType?: InstanceType
|
|
213
|
+
backupName?: string
|
|
214
|
+
accessKeyId?: string
|
|
215
|
+
accessKeySecret?: string
|
|
216
|
+
endpoint?: string
|
|
217
|
+
provider?: CreateRedisBackupReqProvider
|
|
218
|
+
storePath?: string
|
|
219
|
+
genCreateTime?: string
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export type UpdateRedisAutoBackupReq = {
|
|
223
|
+
workspaceId?: number
|
|
224
|
+
cluster?: string
|
|
225
|
+
namespace?: string
|
|
226
|
+
name?: string
|
|
227
|
+
instanceType?: InstanceType
|
|
228
|
+
accessKeyId?: string
|
|
229
|
+
accessKeySecret?: string
|
|
230
|
+
endpoint?: string
|
|
231
|
+
provider?: UpdateRedisAutoBackupReqProvider
|
|
232
|
+
storePath?: string
|
|
233
|
+
isOpenAutoBackup?: boolean
|
|
234
|
+
backupSchedule?: string
|
|
235
|
+
backupHistoryLimit?: number
|
|
236
|
+
storageConfigName?: string
|
|
237
|
+
storageConfigNamespace?: string
|
|
238
|
+
storageConfigCluster?: string
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export type UpdateRedisAutoBackupResp = {
|
|
242
|
+
message?: string
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export type CreateRedisBackupResp = {
|
|
246
|
+
message?: string
|
|
247
|
+
}
|
|
248
|
+
|
|
79
249
|
export type GetRedisUsersReq = {
|
|
80
250
|
cluster?: string
|
|
81
251
|
namespace?: string
|
|
@@ -126,6 +296,18 @@ export type CreateRedisReqPorts = {
|
|
|
126
296
|
nodePort?: number
|
|
127
297
|
}
|
|
128
298
|
|
|
299
|
+
export type CreateRedisReqRestore = {
|
|
300
|
+
enable?: boolean
|
|
301
|
+
accessKeyId?: string
|
|
302
|
+
accessKeySecret?: string
|
|
303
|
+
endpoint?: string
|
|
304
|
+
provider?: CreateRedisReqRestoreProvider
|
|
305
|
+
storePath?: string
|
|
306
|
+
backupName?: string
|
|
307
|
+
targetRedisName?: string
|
|
308
|
+
instanceType?: InstanceType
|
|
309
|
+
}
|
|
310
|
+
|
|
129
311
|
export type CreateRedisReq = {
|
|
130
312
|
cluster?: string
|
|
131
313
|
namespace?: string
|
|
@@ -136,7 +318,7 @@ export type CreateRedisReq = {
|
|
|
136
318
|
storageCapacity?: string
|
|
137
319
|
instanceType?: InstanceType
|
|
138
320
|
authPass?: string
|
|
139
|
-
serviceType?:
|
|
321
|
+
serviceType?: CommonCommon.ServiceType
|
|
140
322
|
serviceAnnotations?: {[key: string]: string}
|
|
141
323
|
ports?: CreateRedisReqPorts[]
|
|
142
324
|
cpuRequest?: string
|
|
@@ -147,6 +329,12 @@ export type CreateRedisReq = {
|
|
|
147
329
|
version?: string
|
|
148
330
|
followerReplicas?: number
|
|
149
331
|
affinity?: CommonCommon.Affinity
|
|
332
|
+
externalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy
|
|
333
|
+
lbTyp?: CommonCommon.LBTyp
|
|
334
|
+
lbPoolName?: string
|
|
335
|
+
lbAddress?: string
|
|
336
|
+
restore?: CreateRedisReqRestore
|
|
337
|
+
autoBackupConfig?: UpdateRedisAutoBackupReq
|
|
150
338
|
}
|
|
151
339
|
|
|
152
340
|
export type UpdateRedisConfReq = {
|
|
@@ -324,6 +512,7 @@ export type RedisItemStatus = {
|
|
|
324
512
|
clusterIPs?: string[]
|
|
325
513
|
serviceAddr?: string
|
|
326
514
|
common?: CommonCommon.CommonItemStatus
|
|
515
|
+
isControl?: boolean
|
|
327
516
|
}
|
|
328
517
|
|
|
329
518
|
export type RedisItemMetadata = {
|
|
@@ -381,4 +570,22 @@ export class Redis {
|
|
|
381
570
|
static GetRedisUsers(req: GetRedisUsersReq, initReq?: fm.InitReq): Promise<GetRedisUsersResp> {
|
|
382
571
|
return fm.fetchReq<GetRedisUsersReq, GetRedisUsersResp>(`/apis/mcamel.io/redis/v1alpha1/redis/${req["instanceType"]}/${req["cluster"]}/${req["namespace"]}/${req["name"]}/users?${fm.renderURLSearchParams(req, ["instanceType", "cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
383
572
|
}
|
|
573
|
+
static CreateRedisBackup(req: CreateRedisBackupReq, initReq?: fm.InitReq): Promise<CreateRedisBackupResp> {
|
|
574
|
+
return fm.fetchReq<CreateRedisBackupReq, CreateRedisBackupResp>(`/apis/mcamel.io/redis/v1alpha1/redis/backup`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
575
|
+
}
|
|
576
|
+
static UpdateRedisAutoBackup(req: UpdateRedisAutoBackupReq, initReq?: fm.InitReq): Promise<UpdateRedisAutoBackupResp> {
|
|
577
|
+
return fm.fetchReq<UpdateRedisAutoBackupReq, UpdateRedisAutoBackupResp>(`/apis/mcamel.io/redis/v1alpha1/redis/${req["cluster"]}/${req["namespace"]}/${req["name"]}/auto-backup`, {...initReq, method: "PUT", body: JSON.stringify(req)})
|
|
578
|
+
}
|
|
579
|
+
static GetRedisBackupList(req: GetRedisBackupListReq, initReq?: fm.InitReq): Promise<GetRedisBackupListResp> {
|
|
580
|
+
return fm.fetchReq<GetRedisBackupListReq, GetRedisBackupListResp>(`/apis/mcamel.io/redis/v1alpha1/redis/backups?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
581
|
+
}
|
|
582
|
+
static DeleteRedisBackup(req: DeleteRedisBackupReq, initReq?: fm.InitReq): Promise<DeleteRedisBackupResp> {
|
|
583
|
+
return fm.fetchReq<DeleteRedisBackupReq, DeleteRedisBackupResp>(`/apis/mcamel.io/redis/v1alpha1/redis/backups/${req["cluster"]}/${req["namespace"]}/${req["backupName"]}`, {...initReq, method: "DELETE"})
|
|
584
|
+
}
|
|
585
|
+
static GetMinioList(req: GetMinioListReq, initReq?: fm.InitReq): Promise<GetMinioListResp> {
|
|
586
|
+
return fm.fetchReq<GetMinioListReq, GetMinioListResp>(`/apis/mcamel.io/redis/v1alpha1/${req["workspaceId"]}/minios?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
587
|
+
}
|
|
588
|
+
static CreateRedisRecover(req: CreateRedisRecoverReq, initReq?: fm.InitReq): Promise<CreateRedisRecoverResp> {
|
|
589
|
+
return fm.fetchReq<CreateRedisRecoverReq, CreateRedisRecoverResp>(`/apis/mcamel.io/redis/v1alpha1/redis/${req["cluster"]}/${req["namespace"]}/${req["name"]}/recover`, {...initReq, method: "POST", body: JSON.stringify(req)})
|
|
590
|
+
}
|
|
384
591
|
}
|
|
@@ -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/redis/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/redis/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/redis/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/redis/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/redis/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/redis/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/redis/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/redis/v1alpha1/${req["workspaceId"]}/storage-configs?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
187
|
+
}
|
|
188
|
+
}
|