@daocloud-proto/mcamel-rabbitmq 0.5.8-4 → 0.6.0-10

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
@@ -9,6 +9,21 @@ export enum PageInfoReqSortDir {
9
9
  DESC = "DESC",
10
10
  }
11
11
 
12
+ export enum PodCommonPodPhase {
13
+ PHASE_UNSPECIFIED = "PHASE_UNSPECIFIED",
14
+ Unknown = "Unknown",
15
+ Pending = "Pending",
16
+ Running = "Running",
17
+ Succeeded = "Succeeded",
18
+ Failed = "Failed",
19
+ }
20
+
21
+ export enum PodCommonConditionStatus {
22
+ PodConditionStatusUnknown = "PodConditionStatusUnknown",
23
+ PodConditionStatusTrue = "PodConditionStatusTrue",
24
+ PodConditionStatusFalse = "PodConditionStatusFalse",
25
+ }
26
+
12
27
  export type Pagination = {
13
28
  total?: number
14
29
  page?: number
@@ -21,4 +36,26 @@ export type PageInfoReq = {
21
36
  pageSize?: number
22
37
  sortDir?: PageInfoReqSortDir
23
38
  sortBy?: string
39
+ }
40
+
41
+ export type PodCommonCondition = {
42
+ lastTransitionTime?: string
43
+ lastUpdateTime?: string
44
+ message?: string
45
+ reason?: string
46
+ status?: PodCommonConditionStatus
47
+ type?: string
48
+ }
49
+
50
+ export type PodCommon = {
51
+ name?: string
52
+ phase?: PodCommonPodPhase
53
+ ip?: string
54
+ restartCount?: number
55
+ createTimestamp?: string
56
+ cpuUsage?: number
57
+ cpuLimit?: number
58
+ memoryUsage?: number
59
+ memoryLimit?: number
60
+ conditions?: PodCommonCondition[]
24
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-rabbitmq",
3
- "version":"0.5.8-4",
3
+ "version":"0.6.0-10",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/rabbitmq.pb.ts CHANGED
@@ -238,6 +238,7 @@ export type GetRabbitMqNodeListRespData = {
238
238
  memoryUsage?: number
239
239
  memoryLimit?: number
240
240
  createTimestamp?: string
241
+ common?: CommonCommon.PodCommon
241
242
  }
242
243
 
243
244
  export type GetRabbitMqNodeListResp = {