@daocloud-proto/mcamel-mysql 0.3.1-90 → 0.3.1-92
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/package.json +1 -1
- package/storage_config.pb.ts +12 -12
package/package.json
CHANGED
package/storage_config.pb.ts
CHANGED
|
@@ -16,13 +16,6 @@ type OneOf<T> =
|
|
|
16
16
|
: never)
|
|
17
17
|
: never);
|
|
18
18
|
|
|
19
|
-
export enum StorageType {
|
|
20
|
-
STORAGE_TYPE_UNSPECIFIED = "STORAGE_TYPE_UNSPECIFIED",
|
|
21
|
-
STORAGE_TYPE_MINIO = "STORAGE_TYPE_MINIO",
|
|
22
|
-
STORAGE_TYPE_AWS_S3 = "STORAGE_TYPE_AWS_S3",
|
|
23
|
-
STORAGE_TYPE_MINIO_WILD = "STORAGE_TYPE_MINIO_WILD",
|
|
24
|
-
}
|
|
25
|
-
|
|
26
19
|
export enum GetStorageConfigParamRespSelectSelectType {
|
|
27
20
|
Single = "Single",
|
|
28
21
|
Multiple = "Multiple",
|
|
@@ -33,6 +26,11 @@ export enum GetStorageConfigConsumersRespStorageConfigConsumerType {
|
|
|
33
26
|
STORAGE_CONFIG_CONSUMER_TYPE_MYSQL = "STORAGE_CONFIG_CONSUMER_TYPE_MYSQL",
|
|
34
27
|
}
|
|
35
28
|
|
|
29
|
+
export enum GetStorageConfigListReqSortDir {
|
|
30
|
+
ASC = "ASC",
|
|
31
|
+
DESC = "DESC",
|
|
32
|
+
}
|
|
33
|
+
|
|
36
34
|
export type GetStorageConfigParamReq = {
|
|
37
35
|
}
|
|
38
36
|
|
|
@@ -65,13 +63,13 @@ export type CreateStorageConfigReq = {
|
|
|
65
63
|
cluster?: string
|
|
66
64
|
namespace?: string
|
|
67
65
|
name?: string
|
|
68
|
-
storageType?:
|
|
66
|
+
storageType?: string
|
|
67
|
+
endpoint?: string
|
|
69
68
|
minioCluster?: string
|
|
70
69
|
minioNamespace?: string
|
|
71
70
|
minioName?: string
|
|
72
71
|
accessKey?: string
|
|
73
72
|
secretKey?: string
|
|
74
|
-
endpoint?: string
|
|
75
73
|
description?: string
|
|
76
74
|
}
|
|
77
75
|
|
|
@@ -111,7 +109,6 @@ export type UpdateStorageConfigResp = {
|
|
|
111
109
|
export type StorageConfigItemStorageConfigStatus = {
|
|
112
110
|
lastUpdateTimestamp?: string
|
|
113
111
|
createTimestamp?: string
|
|
114
|
-
status?: string
|
|
115
112
|
}
|
|
116
113
|
|
|
117
114
|
export type StorageConfigItem = {
|
|
@@ -129,9 +126,12 @@ export type GetStorageConfigResp = {
|
|
|
129
126
|
}
|
|
130
127
|
|
|
131
128
|
export type GetStorageConfigListReq = {
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
page?: number
|
|
130
|
+
pageSize?: number
|
|
131
|
+
sortDir?: GetStorageConfigListReqSortDir
|
|
132
|
+
sortBy?: string
|
|
134
133
|
searchKey?: string
|
|
134
|
+
workspaceId?: number
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
export type GetStorageConfigListResp = {
|