@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 +15 -2
- package/package.json +1 -1
- package/postgresql.pb.ts +1 -0
- package/template.pb.ts +5 -0
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?:
|
|
140
|
+
operator?: TolerationOperator
|
|
128
141
|
value?: string
|
|
129
|
-
effect?:
|
|
142
|
+
effect?: TaintEffect
|
|
130
143
|
tolerationSeconds?: string
|
|
131
144
|
}
|
|
132
145
|
|
package/package.json
CHANGED
package/postgresql.pb.ts
CHANGED
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
|
}
|