@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 CHANGED
@@ -81,6 +81,8 @@ export enum ClusterSettingPluginPluginName {
81
81
  KubeOvn = "KubeOvn",
82
82
  OLM = "OLM",
83
83
  EgressGateway = "EgressGateway",
84
+ Snapshot = "Snapshot",
85
+ DRA = "DRA",
84
86
  }
85
87
 
86
88
  export enum GetInsightAgentStatusRespInsightAgentStatus {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-mysql",
3
- "version":"0.23.0-rc5-4",
3
+ "version":"0.25.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
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
  }