@daocloud-proto/mcamel-rabbitmq 0.5.6-8 → 0.5.7-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/package.json +1 -1
- package/rabbitmq.pb.ts +10 -0
package/package.json
CHANGED
package/rabbitmq.pb.ts
CHANGED
|
@@ -43,6 +43,11 @@ export enum GetRabbitMqParamRespSelectSelectType {
|
|
|
43
43
|
Multiple = "Multiple",
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
export enum GetRabbitMqNodeListReqSortDir {
|
|
47
|
+
ASC = "ASC",
|
|
48
|
+
DESC = "DESC",
|
|
49
|
+
}
|
|
50
|
+
|
|
46
51
|
export enum GetRabbitMqNodeListRespPodStatus {
|
|
47
52
|
PHASE_UNSPECIFIED = "PHASE_UNSPECIFIED",
|
|
48
53
|
Unknown = "Unknown",
|
|
@@ -216,6 +221,11 @@ export type GetRabbitMqNodeListReq = {
|
|
|
216
221
|
cluster?: string
|
|
217
222
|
namespace?: string
|
|
218
223
|
name?: string
|
|
224
|
+
page?: number
|
|
225
|
+
pageSize?: number
|
|
226
|
+
sortDir?: GetRabbitMqNodeListReqSortDir
|
|
227
|
+
sortBy?: string
|
|
228
|
+
searchKey?: string
|
|
219
229
|
}
|
|
220
230
|
|
|
221
231
|
export type GetRabbitMqNodeListRespData = {
|