@daocloud-proto/mcamel-rabbitmq 0.6.0-22 → 0.6.0-24

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.
Files changed (2) hide show
  1. package/cluster.pb.ts +48 -1
  2. package/package.json +1 -1
package/cluster.pb.ts CHANGED
@@ -7,6 +7,17 @@
7
7
  import * as CommonCommon from "./common.pb"
8
8
  import * as fm from "./fetch.pb"
9
9
 
10
+ export enum EventType {
11
+ EVENT_TYPE_UNSPECIFIED = "EVENT_TYPE_UNSPECIFIED",
12
+ Normal = "Normal",
13
+ Warning = "Warning",
14
+ }
15
+
16
+ export enum GetEventListReqKind {
17
+ KIND_UNSPECIFIED = "KIND_UNSPECIFIED",
18
+ Pod = "Pod",
19
+ }
20
+
10
21
  export enum GetWorkspaceListReqSortDir {
11
22
  ASC = "ASC",
12
23
  DESC = "DESC",
@@ -17,6 +28,40 @@ export enum GetInsightAgentStatusRespInsightAgentStatus {
17
28
  Install = "Install",
18
29
  }
19
30
 
31
+ export type EventSource = {
32
+ component?: string
33
+ host?: string
34
+ }
35
+
36
+ export type GetEventListReq = {
37
+ cluster?: string
38
+ namespace?: string
39
+ kind?: GetEventListReqKind
40
+ kindName?: string
41
+ page?: number
42
+ pageSize?: number
43
+ type?: EventType[]
44
+ }
45
+
46
+ export type ObjectReference = {
47
+ kind?: string
48
+ name?: string
49
+ }
50
+
51
+ export type GetEventListRespItem = {
52
+ involvedObject?: ObjectReference
53
+ reason?: string
54
+ message?: string
55
+ source?: EventSource
56
+ lastTimestamp?: string
57
+ type?: EventType
58
+ }
59
+
60
+ export type GetEventListResp = {
61
+ items?: GetEventListRespItem[]
62
+ pagination?: CommonCommon.Pagination
63
+ }
64
+
20
65
  export type GetWorkspaceListReq = {
21
66
  page?: number
22
67
  pageSize?: number
@@ -56,7 +101,6 @@ export type GetClusterNamespaceListResp = {
56
101
 
57
102
  export type GetInsightAgentStatusReq = {
58
103
  cluster?: string
59
- mcamelType?: string
60
104
  }
61
105
 
62
106
  export type GetInsightAgentStatusResp = {
@@ -76,4 +120,7 @@ export class Cluster {
76
120
  static GetInsightAgentStatus(req: GetInsightAgentStatusReq, initReq?: fm.InitReq): Promise<GetInsightAgentStatusResp> {
77
121
  return fm.fetchReq<GetInsightAgentStatusReq, GetInsightAgentStatusResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/${req["cluster"]}/insight/status?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
78
122
  }
123
+ static GetEventList(req: GetEventListReq, initReq?: fm.InitReq): Promise<GetEventListResp> {
124
+ return fm.fetchReq<GetEventListReq, GetEventListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/${req["cluster"]}/${req["namespace"]}/events?${fm.renderURLSearchParams(req, ["cluster", "namespace"])}`, {...initReq, method: "GET"})
125
+ }
79
126
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/mcamel-rabbitmq",
3
- "version":"0.6.0-22",
3
+ "version":"0.6.0-24",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {