@daocloud-proto/skoala 0.27.2-22 → 0.27.2-24
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.
|
@@ -34,6 +34,15 @@ export enum Status {
|
|
|
34
34
|
Exception = "Exception",
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
+
export enum MeshPhase {
|
|
38
|
+
MESH_STATUS_UNSPECIFIED = "MESH_STATUS_UNSPECIFIED",
|
|
39
|
+
CREATING = "CREATING",
|
|
40
|
+
UPDATING = "UPDATING",
|
|
41
|
+
FAILED = "FAILED",
|
|
42
|
+
SUCCEEDED = "SUCCEEDED",
|
|
43
|
+
TERMINATING = "TERMINATING",
|
|
44
|
+
}
|
|
45
|
+
|
|
37
46
|
export enum ClusterPhase {
|
|
38
47
|
CLUSTER_PHASE_UNSPECIFIED = "CLUSTER_PHASE_UNSPECIFIED",
|
|
39
48
|
ClusterPhaseUnknown = "ClusterPhaseUnknown",
|
|
@@ -130,6 +139,8 @@ export type Cluster = {
|
|
|
130
139
|
export type Mesh = {
|
|
131
140
|
id?: string
|
|
132
141
|
name?: string
|
|
142
|
+
meshVersion?: string
|
|
143
|
+
phase?: MeshPhase
|
|
133
144
|
}
|
|
134
145
|
|
|
135
146
|
export type Workspace = {
|
|
@@ -593,6 +593,7 @@ export type NacosConfigBrief = {
|
|
|
593
593
|
md5?: string
|
|
594
594
|
tenant?: string
|
|
595
595
|
type?: NacosConfigFileType
|
|
596
|
+
existBeta?: boolean
|
|
596
597
|
}
|
|
597
598
|
|
|
598
599
|
export type ListNacosConfigReq = {
|
|
@@ -642,6 +643,7 @@ export type GetNacosConfigRes = {
|
|
|
642
643
|
tenant?: string
|
|
643
644
|
type?: NacosConfigFileType
|
|
644
645
|
use?: string
|
|
646
|
+
existBeta?: boolean
|
|
645
647
|
}
|
|
646
648
|
|
|
647
649
|
export type NacosConfigHistoryBrief = {
|