@daocloud-proto/kpanda 0.22.0-dev-8bed2808 → 0.22.0-dev-12cb14dc
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.
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
import * as KpandaIoApiTypesObjectmeta from "../../types/objectmeta.pb"
|
|
8
8
|
import * as KpandaIoApiTypesPage from "../../types/page.pb"
|
|
9
9
|
|
|
10
|
+
export enum FilterPodStatus {
|
|
11
|
+
FILTER_POD_STATUS_UNSPECIFIED = "FILTER_POD_STATUS_UNSPECIFIED",
|
|
12
|
+
FILTER_POD_STATUS_RUNNING = "FILTER_POD_STATUS_RUNNING",
|
|
13
|
+
FILTER_POD_STATUS_ERROR = "FILTER_POD_STATUS_ERROR",
|
|
14
|
+
FILTER_POD_STATUS_COMPLETED = "FILTER_POD_STATUS_COMPLETED",
|
|
15
|
+
FILTER_POD_STATUS_WAITING = "FILTER_POD_STATUS_WAITING",
|
|
16
|
+
}
|
|
17
|
+
|
|
10
18
|
export enum PodStatusPhase {
|
|
11
19
|
PHASE_UNSPECIFIED = "PHASE_UNSPECIFIED",
|
|
12
20
|
Unknown = "Unknown",
|
|
@@ -500,6 +508,7 @@ export type ListClusterPodsRequest = {
|
|
|
500
508
|
labelSelector?: string
|
|
501
509
|
fieldSelector?: string
|
|
502
510
|
fuzzyName?: string
|
|
511
|
+
status?: FilterPodStatus
|
|
503
512
|
}
|
|
504
513
|
|
|
505
514
|
export type ListAllPodsRequest = {
|