@daocloud-proto/mcamel-rabbitmq 0.2.6-9 → 0.2.6-93
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 +17 -15
- package/package.json +1 -1
- package/rabbitmq.pb.ts +1 -0
package/cluster.pb.ts
CHANGED
|
@@ -6,31 +6,30 @@
|
|
|
6
6
|
|
|
7
7
|
import * as CommonCommon from "./common.pb"
|
|
8
8
|
import * as fm from "./fetch.pb"
|
|
9
|
+
export type GetWorkspaceListReq = {
|
|
10
|
+
}
|
|
9
11
|
|
|
10
|
-
export
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
CREATING = "CREATING",
|
|
14
|
-
RUNNING = "RUNNING",
|
|
15
|
-
UPDATING = "UPDATING",
|
|
16
|
-
DELETING = "DELETING",
|
|
12
|
+
export type GetWorkspaceListRespItem = {
|
|
13
|
+
workspaceId?: number
|
|
14
|
+
alias?: string
|
|
17
15
|
}
|
|
18
16
|
|
|
19
|
-
export type
|
|
17
|
+
export type GetWorkspaceListResp = {
|
|
18
|
+
items?: GetWorkspaceListRespItem[]
|
|
19
|
+
pagination?: CommonCommon.Pagination
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
export type
|
|
23
|
-
|
|
24
|
-
phase?: GetClusterListRespGetClusterListDataClusterPhase
|
|
25
|
-
kubeSystemID?: string
|
|
22
|
+
export type GetClusterListReq = {
|
|
23
|
+
workspaceId?: number
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
export type GetClusterListResp = {
|
|
29
|
-
items?:
|
|
27
|
+
items?: string[]
|
|
30
28
|
pagination?: CommonCommon.Pagination
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
export type GetClusterNamespaceListReq = {
|
|
32
|
+
workspaceId?: number
|
|
34
33
|
cluster?: string
|
|
35
34
|
}
|
|
36
35
|
|
|
@@ -41,9 +40,12 @@ export type GetClusterNamespaceListResp = {
|
|
|
41
40
|
|
|
42
41
|
export class Cluster {
|
|
43
42
|
static GetClusterList(req: GetClusterListReq, initReq?: fm.InitReq): Promise<GetClusterListResp> {
|
|
44
|
-
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/clusters?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
43
|
+
return fm.fetchReq<GetClusterListReq, GetClusterListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/${req["workspaceId"]}/clusters?${fm.renderURLSearchParams(req, ["workspaceId"])}`, {...initReq, method: "GET"})
|
|
45
44
|
}
|
|
46
45
|
static GetClusterNamespaceList(req: GetClusterNamespaceListReq, initReq?: fm.InitReq): Promise<GetClusterNamespaceListResp> {
|
|
47
|
-
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/${req["cluster"]}/namespaces?${fm.renderURLSearchParams(req, ["cluster"])}`, {...initReq, method: "GET"})
|
|
46
|
+
return fm.fetchReq<GetClusterNamespaceListReq, GetClusterNamespaceListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/${req["workspaceId"]}/${req["cluster"]}/namespaces?${fm.renderURLSearchParams(req, ["workspaceId", "cluster"])}`, {...initReq, method: "GET"})
|
|
47
|
+
}
|
|
48
|
+
static GetWorkspaceList(req: GetWorkspaceListReq, initReq?: fm.InitReq): Promise<GetWorkspaceListResp> {
|
|
49
|
+
return fm.fetchReq<GetWorkspaceListReq, GetWorkspaceListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/workspaces?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
48
50
|
}
|
|
49
51
|
}
|
package/package.json
CHANGED