@daocloud-proto/skoala 0.7.2-60 → 0.7.2-64
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.
|
@@ -8,6 +8,13 @@ import * as SkoalaApiGeneralV1alpha1Common from "../../general/v1alpha1/common.p
|
|
|
8
8
|
import * as SkoalaApiGeneralV1alpha1Resource from "../../general/v1alpha1/resource.pb"
|
|
9
9
|
import * as SkoalaApiGeneralV1alpha1Service from "../../general/v1alpha1/service.pb"
|
|
10
10
|
|
|
11
|
+
export enum GetMeshPluginResMeshMode {
|
|
12
|
+
MESH_MODE_UNSPECIFIED = "MESH_MODE_UNSPECIFIED",
|
|
13
|
+
HOSTED = "HOSTED",
|
|
14
|
+
DEDICATED = "DEDICATED",
|
|
15
|
+
EXTERNAL = "EXTERNAL",
|
|
16
|
+
}
|
|
17
|
+
|
|
11
18
|
export enum GetGovernResMode {
|
|
12
19
|
Unknown = "Unknown",
|
|
13
20
|
Sentinel = "Sentinel",
|
|
@@ -68,6 +75,10 @@ export type GetMeshPluginReq = {
|
|
|
68
75
|
export type GetMeshPluginRes = {
|
|
69
76
|
name?: string
|
|
70
77
|
enabled?: boolean
|
|
78
|
+
mode?: GetMeshPluginResMeshMode
|
|
79
|
+
ownerCluster?: string
|
|
80
|
+
version?: string
|
|
81
|
+
capacity?: string
|
|
71
82
|
}
|
|
72
83
|
|
|
73
84
|
export type UpdatePluginReq = {
|
|
@@ -67,12 +67,11 @@ export type GetAppsSentinelGrafanaReq = {
|
|
|
67
67
|
namespaceName?: string
|
|
68
68
|
sentinelName?: string
|
|
69
69
|
app?: string
|
|
70
|
-
from?: string
|
|
71
|
-
to?: string
|
|
72
70
|
}
|
|
73
71
|
|
|
74
72
|
export type GetAppsSentinelGrafanaRes = {
|
|
75
73
|
url?: string
|
|
74
|
+
zhUrl?: string
|
|
76
75
|
}
|
|
77
76
|
|
|
78
77
|
export type FlowRule = {
|