@daocloud-proto/mcamel-mysql 0.3.1-84 → 0.3.1-86

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/mysql.pb.ts CHANGED
@@ -366,6 +366,7 @@ export type CreateMysqlReq = {
366
366
  isOpenAutoBackup?: boolean
367
367
  initSourceMysqlClusterName?: string
368
368
  initSourceBackupName?: string
369
+ storageConfigName?: string
369
370
  }
370
371
 
371
372
  export type UpdateMysqlConfReq = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-mysql",
3
- "version":"0.3.1-84",
3
+ "version":"0.3.1-86",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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?: 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
- workspaceId?: number
133
- pageInfoReq?: CommonCommon.PageInfoReq
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 = {