@daocloud-proto/mcamel-postgresql 0.0.2-648 → 0.0.2-651

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/common.pb.ts CHANGED
@@ -4,6 +4,19 @@
4
4
  * This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
5
5
  */
6
6
 
7
+ export enum TolerationOperator {
8
+ TOLERATION_OPERATOR_UNSPECIFIED = "TOLERATION_OPERATOR_UNSPECIFIED",
9
+ Exists = "Exists",
10
+ Equal = "Equal",
11
+ }
12
+
13
+ export enum TaintEffect {
14
+ TAINT_EFFECT_UNSPECIFIED = "TAINT_EFFECT_UNSPECIFIED",
15
+ NoSchedule = "NoSchedule",
16
+ NoExecute = "NoExecute",
17
+ PreferNoSchedule = "PreferNoSchedule",
18
+ }
19
+
7
20
  export enum FilterPodStatus {
8
21
  FILTER_POD_STATUS_UNSPECIFIED = "FILTER_POD_STATUS_UNSPECIFIED",
9
22
  FILTER_POD_STATUS_RUNNING = "FILTER_POD_STATUS_RUNNING",
@@ -124,9 +137,9 @@ export type LabelSelectorRequirement = {
124
137
 
125
138
  export type Toleration = {
126
139
  key?: string
127
- operator?: string
140
+ operator?: TolerationOperator
128
141
  value?: string
129
- effect?: string
142
+ effect?: TaintEffect
130
143
  tolerationSeconds?: string
131
144
  }
132
145
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-postgresql",
3
- "version":"0.0.2-648",
3
+ "version":"0.0.2-651",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/postgresql.pb.ts CHANGED
@@ -452,6 +452,7 @@ export type CreatePostgresqlReq = {
452
452
  pgAdminLbAddress?: string
453
453
  initSourcePostgresqlClusterName?: string
454
454
  initSourceBackupName?: string
455
+ tolerations?: CommonCommon.Toleration[]
455
456
  }
456
457
 
457
458
  export type UpdatePostgresqlConfReq = {
package/template.pb.ts CHANGED
@@ -53,6 +53,7 @@ export type GetTemplateConfigVersionsReq = {
53
53
 
54
54
  export type GetTemplateConfigVersionsResp = {
55
55
  versions?: string[]
56
+ templateTypeMap?: {[key: string]: TemplateInstanceTypeList}
56
57
  }
57
58
 
58
59
  export type GetTemplateConfigStringResp = {
@@ -160,6 +161,10 @@ export type GetTemplateInstanceTypeListReq = {
160
161
  workspaceId?: number
161
162
  }
162
163
 
164
+ export type TemplateInstanceTypeList = {
165
+ values?: TemplateInstanceType[]
166
+ }
167
+
163
168
  export type GetTemplateInstanceTypeListResp = {
164
169
  type?: TemplateInstanceType[]
165
170
  }