@daocloud-proto/mcamel-rabbitmq 0.3.0-9 → 0.3.1
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 +11 -0
- package/package.json +1 -1
- package/rabbitmq.pb.ts +2 -2
package/cluster.pb.ts
CHANGED
|
@@ -6,7 +6,18 @@
|
|
|
6
6
|
|
|
7
7
|
import * as CommonCommon from "./common.pb"
|
|
8
8
|
import * as fm from "./fetch.pb"
|
|
9
|
+
|
|
10
|
+
export enum GetWorkspaceListReqSortDir {
|
|
11
|
+
ASC = "ASC",
|
|
12
|
+
DESC = "DESC",
|
|
13
|
+
}
|
|
14
|
+
|
|
9
15
|
export type GetWorkspaceListReq = {
|
|
16
|
+
page?: number
|
|
17
|
+
pageSize?: number
|
|
18
|
+
sortDir?: GetWorkspaceListReqSortDir
|
|
19
|
+
sortBy?: string
|
|
20
|
+
searchKey?: string
|
|
10
21
|
}
|
|
11
22
|
|
|
12
23
|
export type GetWorkspaceListRespItem = {
|
package/package.json
CHANGED
package/rabbitmq.pb.ts
CHANGED
|
@@ -227,7 +227,7 @@ export type GetRabbitMqNodeListRespData = {
|
|
|
227
227
|
cpuLimit?: number
|
|
228
228
|
memoryUsage?: number
|
|
229
229
|
memoryLimit?: number
|
|
230
|
-
|
|
230
|
+
createTimestamp?: string
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
export type GetRabbitMqNodeListResp = {
|
|
@@ -281,7 +281,7 @@ export type RabbitmqClusterItemStatus = {
|
|
|
281
281
|
|
|
282
282
|
export type RabbitmqClusterItemMetadata = {
|
|
283
283
|
annotations?: {[key: string]: string}
|
|
284
|
-
creationTimestamp?:
|
|
284
|
+
creationTimestamp?: string
|
|
285
285
|
name?: string
|
|
286
286
|
namespace?: string
|
|
287
287
|
}
|