@daocloud-proto/skoala 0.27.2-54 → 0.27.2-56
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.
|
@@ -17,6 +17,13 @@ type OneOf<T> =
|
|
|
17
17
|
: never)
|
|
18
18
|
: never);
|
|
19
19
|
|
|
20
|
+
export enum GetSeataPluginResPhase {
|
|
21
|
+
Waiting = "Waiting",
|
|
22
|
+
Running = "Running",
|
|
23
|
+
Deleting = "Deleting",
|
|
24
|
+
NotReady = "NotReady",
|
|
25
|
+
}
|
|
26
|
+
|
|
20
27
|
export enum GetMeshPluginResMeshMode {
|
|
21
28
|
MESH_MODE_UNSPECIFIED = "MESH_MODE_UNSPECIFIED",
|
|
22
29
|
HOSTED = "HOSTED",
|
|
@@ -94,6 +101,8 @@ export type GetSeataPluginRes = {
|
|
|
94
101
|
visitAddress?: string
|
|
95
102
|
workloadState?: SkoalaApiGeneralV1alpha1Common.WorkloadState
|
|
96
103
|
pwd?: string
|
|
104
|
+
mysql?: MySql
|
|
105
|
+
phase?: GetSeataPluginResPhase
|
|
97
106
|
}
|
|
98
107
|
|
|
99
108
|
export type GetMeshPluginReq = {
|
|
@@ -138,6 +147,15 @@ export type UpdateSeataPluginReq = {
|
|
|
138
147
|
ports?: SkoalaApiGeneralV1alpha1Service.ServicePort[]
|
|
139
148
|
pwd?: string
|
|
140
149
|
deleteConfigs?: boolean
|
|
150
|
+
mysql?: MySql
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export type MySql = {
|
|
154
|
+
host?: string
|
|
155
|
+
port?: string
|
|
156
|
+
name?: string
|
|
157
|
+
user?: string
|
|
158
|
+
password?: string
|
|
141
159
|
}
|
|
142
160
|
|
|
143
161
|
export type UpdateMeshPluginReq = {
|