@daocloud-proto/mcamel-mysql 0.23.0-rc5-4 → 0.25.0
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/cluster.pb.ts +2 -0
- package/package.json +1 -1
- package/template.pb.ts +6 -0
package/cluster.pb.ts
CHANGED
package/package.json
CHANGED
package/template.pb.ts
CHANGED
|
@@ -8,6 +8,7 @@ import * as CommonCommon from "./common.pb"
|
|
|
8
8
|
import * as fm from "./fetch.pb"
|
|
9
9
|
|
|
10
10
|
export enum TemplateInstanceType {
|
|
11
|
+
TemplateInstanceTypeUnspecified = "TemplateInstanceTypeUnspecified",
|
|
11
12
|
MysqlMasterReplica = "MysqlMasterReplica",
|
|
12
13
|
RedisStandalone = "RedisStandalone",
|
|
13
14
|
RedisFailover = "RedisFailover",
|
|
@@ -52,6 +53,7 @@ export type GetTemplateConfigVersionsReq = {
|
|
|
52
53
|
|
|
53
54
|
export type GetTemplateConfigVersionsResp = {
|
|
54
55
|
versions?: string[]
|
|
56
|
+
templateTypeMap?: {[key: string]: TemplateInstanceTypeList}
|
|
55
57
|
}
|
|
56
58
|
|
|
57
59
|
export type GetTemplateConfigStringResp = {
|
|
@@ -159,6 +161,10 @@ export type GetTemplateInstanceTypeListReq = {
|
|
|
159
161
|
workspaceId?: number
|
|
160
162
|
}
|
|
161
163
|
|
|
164
|
+
export type TemplateInstanceTypeList = {
|
|
165
|
+
values?: TemplateInstanceType[]
|
|
166
|
+
}
|
|
167
|
+
|
|
162
168
|
export type GetTemplateInstanceTypeListResp = {
|
|
163
169
|
type?: TemplateInstanceType[]
|
|
164
170
|
}
|