@daocloud-proto/skoala 0.27.2-50 → 0.27.2-54
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.
|
@@ -66,7 +66,7 @@ type BaseGetPluginRes = {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
export type GetPluginRes = BaseGetPluginRes
|
|
69
|
-
& OneOf<{ sentinel: GetSentinelPluginRes; mesh: GetMeshPluginRes }>
|
|
69
|
+
& OneOf<{ sentinel: GetSentinelPluginRes; mesh: GetMeshPluginRes; seata: GetSeataPluginRes }>
|
|
70
70
|
|
|
71
71
|
export type GetSentinelPluginReq = {
|
|
72
72
|
}
|
|
@@ -82,6 +82,20 @@ export type GetSentinelPluginRes = {
|
|
|
82
82
|
pwd?: string
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
export type GetSeataPluginReq = {
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export type GetSeataPluginRes = {
|
|
89
|
+
image?: string
|
|
90
|
+
replicas?: number
|
|
91
|
+
resources?: SkoalaApiGeneralV1alpha1Resource.ResourceRequirements
|
|
92
|
+
type?: SkoalaApiGeneralV1alpha1Service.ServiceType
|
|
93
|
+
ports?: SkoalaApiGeneralV1alpha1Service.ServicePort[]
|
|
94
|
+
visitAddress?: string
|
|
95
|
+
workloadState?: SkoalaApiGeneralV1alpha1Common.WorkloadState
|
|
96
|
+
pwd?: string
|
|
97
|
+
}
|
|
98
|
+
|
|
85
99
|
export type GetMeshPluginReq = {
|
|
86
100
|
}
|
|
87
101
|
|
|
@@ -103,7 +117,7 @@ type BaseUpdatePluginReq = {
|
|
|
103
117
|
}
|
|
104
118
|
|
|
105
119
|
export type UpdatePluginReq = BaseUpdatePluginReq
|
|
106
|
-
& OneOf<{ sentinel: UpdateSentinelPluginReq; mesh: UpdateMeshPluginReq }>
|
|
120
|
+
& OneOf<{ sentinel: UpdateSentinelPluginReq; mesh: UpdateMeshPluginReq; seata: UpdateSeataPluginReq }>
|
|
107
121
|
|
|
108
122
|
export type UpdateSentinelPluginReq = {
|
|
109
123
|
enabled?: boolean
|
|
@@ -115,6 +129,17 @@ export type UpdateSentinelPluginReq = {
|
|
|
115
129
|
pwd?: string
|
|
116
130
|
}
|
|
117
131
|
|
|
132
|
+
export type UpdateSeataPluginReq = {
|
|
133
|
+
enabled?: boolean
|
|
134
|
+
chart?: SkoalaApiGeneralV1alpha1Common.Component
|
|
135
|
+
replicas?: number
|
|
136
|
+
resources?: SkoalaApiGeneralV1alpha1Resource.ResourceRequirements
|
|
137
|
+
type?: SkoalaApiGeneralV1alpha1Service.ServiceType
|
|
138
|
+
ports?: SkoalaApiGeneralV1alpha1Service.ServicePort[]
|
|
139
|
+
pwd?: string
|
|
140
|
+
deleteConfigs?: boolean
|
|
141
|
+
}
|
|
142
|
+
|
|
118
143
|
export type UpdateMeshPluginReq = {
|
|
119
144
|
enabled?: boolean
|
|
120
145
|
name?: string
|