@daocloud-proto/mcamel-mysql 0.22.0-rc1-6 → 0.23.0-rc5-4
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 +9 -8
- package/package.json +1 -1
package/common.pb.ts
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
export enum FilterPodStatus {
|
|
8
|
+
FILTER_POD_STATUS_UNSPECIFIED = "FILTER_POD_STATUS_UNSPECIFIED",
|
|
9
|
+
FILTER_POD_STATUS_RUNNING = "FILTER_POD_STATUS_RUNNING",
|
|
10
|
+
FILTER_POD_STATUS_ERROR = "FILTER_POD_STATUS_ERROR",
|
|
11
|
+
FILTER_POD_STATUS_COMPLETED = "FILTER_POD_STATUS_COMPLETED",
|
|
12
|
+
FILTER_POD_STATUS_WAITING = "FILTER_POD_STATUS_WAITING",
|
|
13
|
+
}
|
|
14
|
+
|
|
7
15
|
export enum ExternalTrafficPolicy {
|
|
8
16
|
Cluster = "Cluster",
|
|
9
17
|
Local = "Local",
|
|
@@ -50,14 +58,6 @@ export enum PodCommonConditionStatus {
|
|
|
50
58
|
PodConditionStatusFalse = "PodConditionStatusFalse",
|
|
51
59
|
}
|
|
52
60
|
|
|
53
|
-
export enum PodCommonFilterPodStatus {
|
|
54
|
-
UNSPECIFIED = "UNSPECIFIED",
|
|
55
|
-
RUNNING = "RUNNING",
|
|
56
|
-
ERROR = "ERROR",
|
|
57
|
-
COMPLETED = "COMPLETED",
|
|
58
|
-
WAITING = "WAITING",
|
|
59
|
-
}
|
|
60
|
-
|
|
61
61
|
export type Affinity = {
|
|
62
62
|
nodeAffinity?: NodeAffinity
|
|
63
63
|
podAffinity?: PodAffinity
|
|
@@ -173,6 +173,7 @@ export type PodCommon = {
|
|
|
173
173
|
containersStatuses?: ContainerStatus[]
|
|
174
174
|
podStatus?: string
|
|
175
175
|
annotations?: {[key: string]: string}
|
|
176
|
+
filterPodStatus?: FilterPodStatus
|
|
176
177
|
}
|
|
177
178
|
|
|
178
179
|
export type OwnerReference = {
|