@daocloud-proto/skoala 0.8.0 → 0.9.0
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.
|
@@ -46,6 +46,12 @@ export enum NacosConfigType {
|
|
|
46
46
|
cluster = "cluster",
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
export enum NacosServiceInstancePluginsHealthy {
|
|
50
|
+
UNKNOWN = "UNKNOWN",
|
|
51
|
+
HEALTHY = "HEALTHY",
|
|
52
|
+
UNHEALTHY = "UNHEALTHY",
|
|
53
|
+
}
|
|
54
|
+
|
|
49
55
|
export enum NacosConfigHistoryBriefOpType {
|
|
50
56
|
OP_TYPE_UNSPECIFIED = "OP_TYPE_UNSPECIFIED",
|
|
51
57
|
CREATE = "CREATE",
|
|
@@ -254,7 +260,7 @@ export type NacosServiceInstance = {
|
|
|
254
260
|
port?: number
|
|
255
261
|
serviceName?: string
|
|
256
262
|
weight?: number
|
|
257
|
-
pluginsHealthy?:
|
|
263
|
+
pluginsHealthy?: NacosServiceInstancePluginsHealthy
|
|
258
264
|
nacosNamespace?: string
|
|
259
265
|
insight?: SkoalaApiGeneralV1alpha1Insight.InsightBrief
|
|
260
266
|
}
|