@daocloud-proto/skoala 0.10.0 → 0.10.1
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.
|
@@ -75,7 +75,7 @@ export type GetAppsSentinelGrafanaRes = {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
export type FlowRule = {
|
|
78
|
-
id?:
|
|
78
|
+
id?: string
|
|
79
79
|
app?: string
|
|
80
80
|
ip?: string
|
|
81
81
|
port?: number
|
|
@@ -121,7 +121,7 @@ export type GetFlowRuleReq = {
|
|
|
121
121
|
namespaceName?: string
|
|
122
122
|
sentinelName?: string
|
|
123
123
|
appName?: string
|
|
124
|
-
ruleId?:
|
|
124
|
+
ruleId?: string
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
export type GetFlowRuleRes = {
|
|
@@ -134,7 +134,7 @@ export type UpdateFlowRuleReq = {
|
|
|
134
134
|
namespaceName?: string
|
|
135
135
|
sentinelName?: string
|
|
136
136
|
appName?: string
|
|
137
|
-
ruleId?:
|
|
137
|
+
ruleId?: string
|
|
138
138
|
flowRule?: FlowRule
|
|
139
139
|
}
|
|
140
140
|
|
|
@@ -144,11 +144,11 @@ export type DeleteFlowRuleReq = {
|
|
|
144
144
|
namespaceName?: string
|
|
145
145
|
sentinelName?: string
|
|
146
146
|
appName?: string
|
|
147
|
-
ruleId?:
|
|
147
|
+
ruleId?: string
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
export type DegradeRule = {
|
|
151
|
-
id?:
|
|
151
|
+
id?: string
|
|
152
152
|
app?: string
|
|
153
153
|
ip?: string
|
|
154
154
|
port?: number
|
|
@@ -192,7 +192,7 @@ export type GetDegradeRuleReq = {
|
|
|
192
192
|
namespaceName?: string
|
|
193
193
|
sentinelName?: string
|
|
194
194
|
appName?: string
|
|
195
|
-
ruleId?:
|
|
195
|
+
ruleId?: string
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
export type GetDegradeRuleRes = {
|
|
@@ -205,7 +205,7 @@ export type UpdateDegradeRuleReq = {
|
|
|
205
205
|
namespaceName?: string
|
|
206
206
|
sentinelName?: string
|
|
207
207
|
appName?: string
|
|
208
|
-
ruleId?:
|
|
208
|
+
ruleId?: string
|
|
209
209
|
degradeRule?: DegradeRule
|
|
210
210
|
}
|
|
211
211
|
|
|
@@ -215,7 +215,7 @@ export type DeleteDegradeRuleReq = {
|
|
|
215
215
|
namespaceName?: string
|
|
216
216
|
sentinelName?: string
|
|
217
217
|
appName?: string
|
|
218
|
-
ruleId?:
|
|
218
|
+
ruleId?: string
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
export type ParamFlowRuleParamFlowItemList = {
|
|
@@ -225,7 +225,7 @@ export type ParamFlowRuleParamFlowItemList = {
|
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
export type ParamFlowRule = {
|
|
228
|
-
id?:
|
|
228
|
+
id?: string
|
|
229
229
|
app?: string
|
|
230
230
|
ip?: string
|
|
231
231
|
port?: number
|
|
@@ -267,7 +267,7 @@ export type GetParamFlowRuleReq = {
|
|
|
267
267
|
namespaceName?: string
|
|
268
268
|
sentinelName?: string
|
|
269
269
|
appName?: string
|
|
270
|
-
ruleId?:
|
|
270
|
+
ruleId?: string
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
export type GetParamFlowRuleRes = {
|
|
@@ -280,7 +280,7 @@ export type UpdateParamFlowRuleReq = {
|
|
|
280
280
|
namespaceName?: string
|
|
281
281
|
sentinelName?: string
|
|
282
282
|
appName?: string
|
|
283
|
-
ruleId?:
|
|
283
|
+
ruleId?: string
|
|
284
284
|
paramFlowRule?: ParamFlowRule
|
|
285
285
|
}
|
|
286
286
|
|
|
@@ -290,11 +290,11 @@ export type DeleteParamFlowRuleReq = {
|
|
|
290
290
|
namespaceName?: string
|
|
291
291
|
sentinelName?: string
|
|
292
292
|
appName?: string
|
|
293
|
-
ruleId?:
|
|
293
|
+
ruleId?: string
|
|
294
294
|
}
|
|
295
295
|
|
|
296
296
|
export type SystemRule = {
|
|
297
|
-
id?:
|
|
297
|
+
id?: string
|
|
298
298
|
app?: string
|
|
299
299
|
ip?: string
|
|
300
300
|
port?: number
|
|
@@ -335,7 +335,7 @@ export type GetSystemRuleReq = {
|
|
|
335
335
|
namespaceName?: string
|
|
336
336
|
sentinelName?: string
|
|
337
337
|
appName?: string
|
|
338
|
-
ruleId?:
|
|
338
|
+
ruleId?: string
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
export type GetSystemRuleRes = {
|
|
@@ -348,7 +348,7 @@ export type UpdateSystemRuleReq = {
|
|
|
348
348
|
namespaceName?: string
|
|
349
349
|
sentinelName?: string
|
|
350
350
|
appName?: string
|
|
351
|
-
ruleId?:
|
|
351
|
+
ruleId?: string
|
|
352
352
|
systemRule?: SystemRule
|
|
353
353
|
}
|
|
354
354
|
|
|
@@ -358,11 +358,11 @@ export type DeleteSystemRuleReq = {
|
|
|
358
358
|
namespaceName?: string
|
|
359
359
|
sentinelName?: string
|
|
360
360
|
appName?: string
|
|
361
|
-
ruleId?:
|
|
361
|
+
ruleId?: string
|
|
362
362
|
}
|
|
363
363
|
|
|
364
364
|
export type AuthorityRule = {
|
|
365
|
-
id?:
|
|
365
|
+
id?: string
|
|
366
366
|
app?: string
|
|
367
367
|
ip?: string
|
|
368
368
|
port?: number
|
|
@@ -401,7 +401,7 @@ export type GetAuthorityRuleReq = {
|
|
|
401
401
|
namespaceName?: string
|
|
402
402
|
sentinelName?: string
|
|
403
403
|
appName?: string
|
|
404
|
-
ruleId?:
|
|
404
|
+
ruleId?: string
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
export type GetAuthorityRuleRes = {
|
|
@@ -414,7 +414,7 @@ export type UpdateAuthorityRuleReq = {
|
|
|
414
414
|
namespaceName?: string
|
|
415
415
|
sentinelName?: string
|
|
416
416
|
appName?: string
|
|
417
|
-
ruleId?:
|
|
417
|
+
ruleId?: string
|
|
418
418
|
authorityRule?: AuthorityRule
|
|
419
419
|
}
|
|
420
420
|
|
|
@@ -424,5 +424,5 @@ export type DeleteAuthorityRuleReq = {
|
|
|
424
424
|
namespaceName?: string
|
|
425
425
|
sentinelName?: string
|
|
426
426
|
appName?: string
|
|
427
|
-
ruleId?:
|
|
427
|
+
ruleId?: string
|
|
428
428
|
}
|