@daocloud-proto/mcamel-redis 0.2.1-2 → 0.2.1-21

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/cluster.pb.ts CHANGED
@@ -56,7 +56,6 @@ export type GetClusterNamespaceListResp = {
56
56
 
57
57
  export type GetInsightAgentStatusReq = {
58
58
  cluster?: string
59
- mcamelType?: string
60
59
  }
61
60
 
62
61
  export type GetInsightAgentStatusResp = {
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-redis",
3
- "version":"0.2.1-2",
3
+ "version":"0.2.1-21",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/redis.pb.ts CHANGED
@@ -265,6 +265,7 @@ export type GetRedisNodeListRespData = {
265
265
  memoryLimit?: number
266
266
  createTimestamp?: string
267
267
  redisType?: RedisPodType
268
+ common?: CommonCommon.PodCommon
268
269
  }
269
270
 
270
271
  export type GetRedisNodeListResp = {