@daocloud-proto/skoala 0.4.1-75 → 0.4.1-83
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.
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import * as SkoalaApiGeneralV1alpha1Common from "./common.pb"
|
|
8
|
+
|
|
9
|
+
export enum ListNamespaceReqGatewayStatus {
|
|
10
|
+
NoFilter = "NoFilter",
|
|
11
|
+
Available = "Available",
|
|
12
|
+
Unavailable = "Unavailable",
|
|
13
|
+
}
|
|
14
|
+
|
|
8
15
|
export type ListWorkspaceReq = {
|
|
9
16
|
page?: number
|
|
10
17
|
pageSize?: number
|
|
@@ -37,7 +44,7 @@ export type ListClusterRes = {
|
|
|
37
44
|
export type ListNamespaceReq = {
|
|
38
45
|
workspaceId?: string
|
|
39
46
|
clusterName?: string
|
|
40
|
-
gatewayStatus?:
|
|
47
|
+
gatewayStatus?: ListNamespaceReqGatewayStatus
|
|
41
48
|
page?: number
|
|
42
49
|
pageSize?: number
|
|
43
50
|
}
|