tencentcloud-sdk-nodejs-teo 4.0.361 → 4.0.364
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.
- package/CHANGELOG.md +709 -0
- package/SERVICE_CHANGELOG.md +727 -93
- package/package.json +1 -1
- package/products.md +26 -25
- package/src/services/teo/v20220106/teo_client.ts +680 -412
- package/src/services/teo/v20220106/teo_models.ts +2929 -579
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +205 -125
- package/tencentcloud/services/teo/v20220106/teo_client.js +306 -186
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +2556 -577
|
@@ -27,6 +27,41 @@ off:关闭
|
|
|
27
27
|
Switch: string
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
/**
|
|
31
|
+
* web攻击日志Data
|
|
32
|
+
*/
|
|
33
|
+
export interface WebLogData {
|
|
34
|
+
/**
|
|
35
|
+
* 数据
|
|
36
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
37
|
+
*/
|
|
38
|
+
List: Array<WebLogs>
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* 当前页
|
|
42
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
43
|
+
*/
|
|
44
|
+
PageNo: number
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* 每页展示条数
|
|
48
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
49
|
+
*/
|
|
50
|
+
PageSize: number
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* 总页数
|
|
54
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
55
|
+
*/
|
|
56
|
+
Pages: number
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* 总条数
|
|
60
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
61
|
+
*/
|
|
62
|
+
TotalSize: number
|
|
63
|
+
}
|
|
64
|
+
|
|
30
65
|
/**
|
|
31
66
|
* 域名证书配置
|
|
32
67
|
*/
|
|
@@ -146,113 +181,113 @@ disabled:禁用证书
|
|
|
146
181
|
}
|
|
147
182
|
|
|
148
183
|
/**
|
|
149
|
-
*
|
|
184
|
+
* DescribeWebManagedRulesTopData返回参数结构体
|
|
150
185
|
*/
|
|
151
|
-
export interface
|
|
186
|
+
export interface DescribeWebManagedRulesTopDataResponse {
|
|
152
187
|
/**
|
|
153
|
-
*
|
|
188
|
+
* topn数据
|
|
154
189
|
*/
|
|
155
|
-
|
|
190
|
+
Data: Array<TopNEntry>
|
|
156
191
|
|
|
157
192
|
/**
|
|
158
|
-
*
|
|
193
|
+
* 状态,1:失败,0:成功
|
|
159
194
|
*/
|
|
160
|
-
|
|
195
|
+
Status: number
|
|
161
196
|
|
|
162
197
|
/**
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
OriginalNameServers: Array<string>
|
|
198
|
+
* 返回消息
|
|
199
|
+
*/
|
|
200
|
+
Msg: string
|
|
167
201
|
|
|
168
202
|
/**
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
203
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
204
|
+
*/
|
|
205
|
+
RequestId?: string
|
|
206
|
+
}
|
|
173
207
|
|
|
208
|
+
/**
|
|
209
|
+
* DescribeOriginGroup返回参数结构体
|
|
210
|
+
*/
|
|
211
|
+
export interface DescribeOriginGroupResponse {
|
|
174
212
|
/**
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
- moved:NS 已切走
|
|
179
|
-
- deactivated:被封禁
|
|
180
|
-
*/
|
|
181
|
-
Status: string
|
|
213
|
+
* 源站组信息
|
|
214
|
+
*/
|
|
215
|
+
Data: Array<OriginGroup>
|
|
182
216
|
|
|
183
217
|
/**
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
*/
|
|
188
|
-
Type: string
|
|
218
|
+
* 记录总数
|
|
219
|
+
*/
|
|
220
|
+
TotalCount: number
|
|
189
221
|
|
|
190
222
|
/**
|
|
191
|
-
*
|
|
223
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
192
224
|
*/
|
|
193
|
-
|
|
225
|
+
RequestId?: string
|
|
226
|
+
}
|
|
194
227
|
|
|
228
|
+
/**
|
|
229
|
+
* DescribeWebManagedRulesAttackEvents返回参数结构体
|
|
230
|
+
*/
|
|
231
|
+
export interface DescribeWebManagedRulesAttackEventsResponse {
|
|
195
232
|
/**
|
|
196
|
-
*
|
|
233
|
+
* Web攻击事件数据
|
|
197
234
|
*/
|
|
198
|
-
|
|
235
|
+
Data: WebEventData
|
|
199
236
|
|
|
200
237
|
/**
|
|
201
|
-
*
|
|
238
|
+
* 状态,1:失败,0:成功
|
|
202
239
|
*/
|
|
203
|
-
|
|
240
|
+
Status: number
|
|
204
241
|
|
|
205
242
|
/**
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
VanityNameServers: VanityNameServers
|
|
243
|
+
* 返回数据
|
|
244
|
+
*/
|
|
245
|
+
Msg: string
|
|
210
246
|
|
|
211
247
|
/**
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
248
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
249
|
+
*/
|
|
250
|
+
RequestId?: string
|
|
251
|
+
}
|
|
216
252
|
|
|
253
|
+
/**
|
|
254
|
+
* DescribeTopL7CacheData请求参数结构体
|
|
255
|
+
*/
|
|
256
|
+
export interface DescribeTopL7CacheDataRequest {
|
|
217
257
|
/**
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
*/
|
|
222
|
-
CnameSpeedUp: string
|
|
258
|
+
* RFC3339标准,客户端时间
|
|
259
|
+
*/
|
|
260
|
+
StartTime: string
|
|
223
261
|
|
|
224
262
|
/**
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
229
|
-
*/
|
|
230
|
-
CnameStatus: string
|
|
263
|
+
* RFC3339标准,客户端时间
|
|
264
|
+
*/
|
|
265
|
+
EndTime: string
|
|
231
266
|
|
|
232
267
|
/**
|
|
233
|
-
*
|
|
268
|
+
* 时序类访问流量指标
|
|
234
269
|
*/
|
|
235
|
-
|
|
236
|
-
}
|
|
270
|
+
MetricName: string
|
|
237
271
|
|
|
238
|
-
/**
|
|
239
|
-
* DescribeOriginGroup返回参数结构体
|
|
240
|
-
*/
|
|
241
|
-
export interface DescribeOriginGroupResponse {
|
|
242
272
|
/**
|
|
243
|
-
*
|
|
273
|
+
* topN,填0时返回全量数据
|
|
244
274
|
*/
|
|
245
|
-
|
|
275
|
+
Limit: number
|
|
246
276
|
|
|
247
277
|
/**
|
|
248
|
-
*
|
|
278
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
249
279
|
*/
|
|
250
|
-
|
|
280
|
+
Interval: string
|
|
251
281
|
|
|
252
282
|
/**
|
|
253
|
-
*
|
|
283
|
+
* ZoneId数组
|
|
254
284
|
*/
|
|
255
|
-
|
|
285
|
+
ZoneIds?: Array<string>
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* 筛选条件
|
|
289
|
+
*/
|
|
290
|
+
Filters?: Array<Filter>
|
|
256
291
|
}
|
|
257
292
|
|
|
258
293
|
/**
|
|
@@ -304,6 +339,31 @@ off:关闭
|
|
|
304
339
|
Hsts?: Hsts
|
|
305
340
|
}
|
|
306
341
|
|
|
342
|
+
/**
|
|
343
|
+
* 安全防护实例
|
|
344
|
+
*/
|
|
345
|
+
export interface SecurityEntity {
|
|
346
|
+
/**
|
|
347
|
+
* 用户appid
|
|
348
|
+
*/
|
|
349
|
+
AppId: number
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* 一级域名
|
|
353
|
+
*/
|
|
354
|
+
ZoneId: string
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* 二级域名
|
|
358
|
+
*/
|
|
359
|
+
Entity: string
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* 类型 domain/application
|
|
363
|
+
*/
|
|
364
|
+
EntityType: string
|
|
365
|
+
}
|
|
366
|
+
|
|
307
367
|
/**
|
|
308
368
|
* 源站组查询过滤参数
|
|
309
369
|
*/
|
|
@@ -320,18 +380,75 @@ export interface OriginFilter {
|
|
|
320
380
|
}
|
|
321
381
|
|
|
322
382
|
/**
|
|
323
|
-
*
|
|
383
|
+
* 限速拦截日志
|
|
324
384
|
*/
|
|
325
|
-
export interface
|
|
385
|
+
export interface BotLogData {
|
|
326
386
|
/**
|
|
327
|
-
|
|
387
|
+
* Bot攻击日志数据集合
|
|
388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
389
|
+
*/
|
|
390
|
+
List: Array<BotLog>
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* 当前页
|
|
394
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
395
|
+
*/
|
|
396
|
+
PageNo: number
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* 每页展示条数
|
|
400
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
401
|
+
*/
|
|
402
|
+
PageSize: number
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* 总页数
|
|
406
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
407
|
+
*/
|
|
408
|
+
Pages: number
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* 总条数
|
|
412
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
413
|
+
*/
|
|
414
|
+
TotalSize: number
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* DescribeZones请求参数结构体
|
|
419
|
+
*/
|
|
420
|
+
export interface DescribeZonesRequest {
|
|
421
|
+
/**
|
|
422
|
+
* 分页参数,页偏移
|
|
328
423
|
*/
|
|
329
|
-
|
|
424
|
+
Offset?: number
|
|
330
425
|
|
|
331
426
|
/**
|
|
332
|
-
*
|
|
427
|
+
* 分页参数,每页返回的站点个数
|
|
333
428
|
*/
|
|
334
|
-
|
|
429
|
+
Limit?: number
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* 查询条件过滤器,复杂类型
|
|
433
|
+
*/
|
|
434
|
+
Filters?: Array<ZoneFilter>
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* 速率限制模板
|
|
439
|
+
*/
|
|
440
|
+
export interface RateLimitTemplate {
|
|
441
|
+
/**
|
|
442
|
+
* 模板名称
|
|
443
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
444
|
+
*/
|
|
445
|
+
Mode?: string
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* 模板值详情
|
|
449
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
450
|
+
*/
|
|
451
|
+
Detail?: RateLimitTemplateDetail
|
|
335
452
|
}
|
|
336
453
|
|
|
337
454
|
/**
|
|
@@ -472,6 +589,31 @@ export interface DescribePrefetchTasksResponse {
|
|
|
472
589
|
RequestId?: string
|
|
473
590
|
}
|
|
474
591
|
|
|
592
|
+
/**
|
|
593
|
+
* DescribeDDosAttackEvent返回参数结构体
|
|
594
|
+
*/
|
|
595
|
+
export interface DescribeDDosAttackEventResponse {
|
|
596
|
+
/**
|
|
597
|
+
* DDos攻击事件数据
|
|
598
|
+
*/
|
|
599
|
+
Data: DDosAttackEventData
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
* 状态,1:失败,0:成功
|
|
603
|
+
*/
|
|
604
|
+
Status: number
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* 返回信息
|
|
608
|
+
*/
|
|
609
|
+
Msg: string
|
|
610
|
+
|
|
611
|
+
/**
|
|
612
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
613
|
+
*/
|
|
614
|
+
RequestId?: string
|
|
615
|
+
}
|
|
616
|
+
|
|
475
617
|
/**
|
|
476
618
|
* DeleteApplicationProxy请求参数结构体
|
|
477
619
|
*/
|
|
@@ -898,38 +1040,200 @@ export interface ModifyOriginGroupResponse {
|
|
|
898
1040
|
}
|
|
899
1041
|
|
|
900
1042
|
/**
|
|
901
|
-
*
|
|
1043
|
+
* DescribeZoneDetails返回参数结构体
|
|
902
1044
|
*/
|
|
903
|
-
export interface
|
|
1045
|
+
export interface DescribeZoneDetailsResponse {
|
|
904
1046
|
/**
|
|
905
|
-
*
|
|
1047
|
+
* 站点 ID
|
|
906
1048
|
*/
|
|
907
|
-
|
|
1049
|
+
Id: string
|
|
908
1050
|
|
|
909
1051
|
/**
|
|
910
|
-
*
|
|
1052
|
+
* 站点名称
|
|
911
1053
|
*/
|
|
912
|
-
|
|
1054
|
+
Name: string
|
|
913
1055
|
|
|
914
1056
|
/**
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
1057
|
+
* 用户当前使用的 NS 列表
|
|
1058
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1059
|
+
*/
|
|
1060
|
+
OriginalNameServers: Array<string>
|
|
918
1061
|
|
|
919
1062
|
/**
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
1063
|
+
* 腾讯云分配给用户的 NS 列表
|
|
1064
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1065
|
+
*/
|
|
1066
|
+
NameServers: Array<string>
|
|
923
1067
|
|
|
924
1068
|
/**
|
|
925
|
-
|
|
1069
|
+
* 站点状态
|
|
1070
|
+
- active:NS 已切换
|
|
1071
|
+
- pending:NS 未切换
|
|
1072
|
+
- moved:NS 已切走
|
|
1073
|
+
- deactivated:被封禁
|
|
1074
|
+
*/
|
|
1075
|
+
Status: string
|
|
1076
|
+
|
|
1077
|
+
/**
|
|
1078
|
+
* 站点接入方式
|
|
1079
|
+
- full:NS 接入
|
|
1080
|
+
- partial:CNAME 接入
|
|
1081
|
+
*/
|
|
1082
|
+
Type: string
|
|
1083
|
+
|
|
1084
|
+
/**
|
|
1085
|
+
* 站点是否关闭
|
|
926
1086
|
*/
|
|
927
|
-
|
|
1087
|
+
Paused: boolean
|
|
928
1088
|
|
|
929
1089
|
/**
|
|
930
|
-
*
|
|
1090
|
+
* 站点创建时间
|
|
931
1091
|
*/
|
|
932
|
-
|
|
1092
|
+
CreatedOn: string
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* 站点修改时间
|
|
1096
|
+
*/
|
|
1097
|
+
ModifiedOn: string
|
|
1098
|
+
|
|
1099
|
+
/**
|
|
1100
|
+
* 用户自定义 NS 信息
|
|
1101
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1102
|
+
*/
|
|
1103
|
+
VanityNameServers: VanityNameServers
|
|
1104
|
+
|
|
1105
|
+
/**
|
|
1106
|
+
* 用户自定义 NS IP 信息
|
|
1107
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1108
|
+
*/
|
|
1109
|
+
VanityNameServersIps: Array<VanityNameServersIps>
|
|
1110
|
+
|
|
1111
|
+
/**
|
|
1112
|
+
* 是否开启 CNAME 加速
|
|
1113
|
+
- enabled:开启
|
|
1114
|
+
- disabled:关闭
|
|
1115
|
+
*/
|
|
1116
|
+
CnameSpeedUp: string
|
|
1117
|
+
|
|
1118
|
+
/**
|
|
1119
|
+
* cname切换验证状态
|
|
1120
|
+
- finished 切换完成
|
|
1121
|
+
- pending 切换验证中
|
|
1122
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1123
|
+
*/
|
|
1124
|
+
CnameStatus: string
|
|
1125
|
+
|
|
1126
|
+
/**
|
|
1127
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1128
|
+
*/
|
|
1129
|
+
RequestId?: string
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
/**
|
|
1133
|
+
* Bot攻击日志
|
|
1134
|
+
*/
|
|
1135
|
+
export interface BotLog {
|
|
1136
|
+
/**
|
|
1137
|
+
* 攻击时间
|
|
1138
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1139
|
+
*/
|
|
1140
|
+
AttackTime: number
|
|
1141
|
+
|
|
1142
|
+
/**
|
|
1143
|
+
* 攻击ip
|
|
1144
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1145
|
+
*/
|
|
1146
|
+
AttackIp: string
|
|
1147
|
+
|
|
1148
|
+
/**
|
|
1149
|
+
* 域名
|
|
1150
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1151
|
+
*/
|
|
1152
|
+
Domain: string
|
|
1153
|
+
|
|
1154
|
+
/**
|
|
1155
|
+
* 请求uri
|
|
1156
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1157
|
+
*/
|
|
1158
|
+
RequestUri: string
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* 攻击类型
|
|
1162
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1163
|
+
*/
|
|
1164
|
+
AttackType: string
|
|
1165
|
+
|
|
1166
|
+
/**
|
|
1167
|
+
* 请求方法
|
|
1168
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1169
|
+
*/
|
|
1170
|
+
RequestMethod: string
|
|
1171
|
+
|
|
1172
|
+
/**
|
|
1173
|
+
* 攻击内容
|
|
1174
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1175
|
+
*/
|
|
1176
|
+
AttackContent: string
|
|
1177
|
+
|
|
1178
|
+
/**
|
|
1179
|
+
* 风险等级
|
|
1180
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1181
|
+
*/
|
|
1182
|
+
RiskLevel: string
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* 规则编号
|
|
1186
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1187
|
+
*/
|
|
1188
|
+
RuleId: number
|
|
1189
|
+
|
|
1190
|
+
/**
|
|
1191
|
+
* IP所在国家
|
|
1192
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1193
|
+
*/
|
|
1194
|
+
SipCountryCode: string
|
|
1195
|
+
|
|
1196
|
+
/**
|
|
1197
|
+
* 事件id
|
|
1198
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1199
|
+
*/
|
|
1200
|
+
EventId: string
|
|
1201
|
+
|
|
1202
|
+
/**
|
|
1203
|
+
* 处置方式
|
|
1204
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1205
|
+
*/
|
|
1206
|
+
DisposalMethod: string
|
|
1207
|
+
|
|
1208
|
+
/**
|
|
1209
|
+
* http_log
|
|
1210
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1211
|
+
*/
|
|
1212
|
+
HttpLog: string
|
|
1213
|
+
|
|
1214
|
+
/**
|
|
1215
|
+
* user agent
|
|
1216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1217
|
+
*/
|
|
1218
|
+
Ua: string
|
|
1219
|
+
|
|
1220
|
+
/**
|
|
1221
|
+
* 检出方法
|
|
1222
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1223
|
+
*/
|
|
1224
|
+
DetectionMethod: string
|
|
1225
|
+
|
|
1226
|
+
/**
|
|
1227
|
+
* 置信度
|
|
1228
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1229
|
+
*/
|
|
1230
|
+
Confidence: string
|
|
1231
|
+
|
|
1232
|
+
/**
|
|
1233
|
+
* 恶意度
|
|
1234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1235
|
+
*/
|
|
1236
|
+
Maliciousness: string
|
|
933
1237
|
}
|
|
934
1238
|
|
|
935
1239
|
/**
|
|
@@ -1179,6 +1483,46 @@ export interface ModifyZoneResponse {
|
|
|
1179
1483
|
RequestId?: string
|
|
1180
1484
|
}
|
|
1181
1485
|
|
|
1486
|
+
/**
|
|
1487
|
+
* DescribeDDosAttackSourceEvent请求参数结构体
|
|
1488
|
+
*/
|
|
1489
|
+
export interface DescribeDDosAttackSourceEventRequest {
|
|
1490
|
+
/**
|
|
1491
|
+
* 开始时间
|
|
1492
|
+
*/
|
|
1493
|
+
StartTime: string
|
|
1494
|
+
|
|
1495
|
+
/**
|
|
1496
|
+
* 结束时间
|
|
1497
|
+
*/
|
|
1498
|
+
EndTime: string
|
|
1499
|
+
|
|
1500
|
+
/**
|
|
1501
|
+
* 条数
|
|
1502
|
+
*/
|
|
1503
|
+
PageSize: number
|
|
1504
|
+
|
|
1505
|
+
/**
|
|
1506
|
+
* 当前页
|
|
1507
|
+
*/
|
|
1508
|
+
PageNo: number
|
|
1509
|
+
|
|
1510
|
+
/**
|
|
1511
|
+
* ddos策略组id 集合
|
|
1512
|
+
*/
|
|
1513
|
+
PolicyIds?: Array<number>
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
* 站点集合
|
|
1517
|
+
*/
|
|
1518
|
+
ZoneIds?: Array<string>
|
|
1519
|
+
|
|
1520
|
+
/**
|
|
1521
|
+
* 协议类型,{tcp,udp,all}
|
|
1522
|
+
*/
|
|
1523
|
+
ProtocolType?: string
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1182
1526
|
/**
|
|
1183
1527
|
* ModifyZone请求参数结构体
|
|
1184
1528
|
*/
|
|
@@ -1217,23 +1561,38 @@ export interface DeleteZoneResponse {
|
|
|
1217
1561
|
}
|
|
1218
1562
|
|
|
1219
1563
|
/**
|
|
1220
|
-
*
|
|
1564
|
+
* DDos攻击事件数据
|
|
1221
1565
|
*/
|
|
1222
|
-
export interface
|
|
1566
|
+
export interface DDosAttackEventData {
|
|
1223
1567
|
/**
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1568
|
+
* 攻击事件数据集合
|
|
1569
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1570
|
+
*/
|
|
1571
|
+
List: Array<DDosAttackEvent>
|
|
1227
1572
|
|
|
1228
1573
|
/**
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1574
|
+
* 当前页
|
|
1575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1576
|
+
*/
|
|
1577
|
+
PageNo: number
|
|
1232
1578
|
|
|
1233
1579
|
/**
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1580
|
+
* 每页展示条数
|
|
1581
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1582
|
+
*/
|
|
1583
|
+
PageSize: number
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* 总页数
|
|
1587
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1588
|
+
*/
|
|
1589
|
+
Pages: number
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* 总条数
|
|
1593
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1594
|
+
*/
|
|
1595
|
+
TotalSize: number
|
|
1237
1596
|
}
|
|
1238
1597
|
|
|
1239
1598
|
/**
|
|
@@ -1300,6 +1659,51 @@ export interface DeleteApplicationProxyRuleResponse {
|
|
|
1300
1659
|
RequestId?: string
|
|
1301
1660
|
}
|
|
1302
1661
|
|
|
1662
|
+
/**
|
|
1663
|
+
* DDos攻击事件对象
|
|
1664
|
+
*/
|
|
1665
|
+
export interface DDosAttackSourceEvent {
|
|
1666
|
+
/**
|
|
1667
|
+
* 攻击源ip
|
|
1668
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1669
|
+
*/
|
|
1670
|
+
AttackSourceIp: string
|
|
1671
|
+
|
|
1672
|
+
/**
|
|
1673
|
+
* 地区(国家)
|
|
1674
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1675
|
+
*/
|
|
1676
|
+
AttackRegion: string
|
|
1677
|
+
|
|
1678
|
+
/**
|
|
1679
|
+
* 累计攻击流量
|
|
1680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1681
|
+
*/
|
|
1682
|
+
AttackFlow: number
|
|
1683
|
+
|
|
1684
|
+
/**
|
|
1685
|
+
* 累计攻击包量
|
|
1686
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1687
|
+
*/
|
|
1688
|
+
AttackPacketNum: number
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
/**
|
|
1692
|
+
* L7数据分析时序数据
|
|
1693
|
+
*/
|
|
1694
|
+
export interface TimingDataRecord {
|
|
1695
|
+
/**
|
|
1696
|
+
* 查询维度值
|
|
1697
|
+
*/
|
|
1698
|
+
TypeKey: string
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* 详细时序数据
|
|
1702
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1703
|
+
*/
|
|
1704
|
+
TypeValue: Array<TimingTypeValue>
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1303
1707
|
/**
|
|
1304
1708
|
* ddos端口过滤
|
|
1305
1709
|
*/
|
|
@@ -1330,6 +1734,21 @@ export interface DeleteOriginGroupRequest {
|
|
|
1330
1734
|
ZoneId: string
|
|
1331
1735
|
}
|
|
1332
1736
|
|
|
1737
|
+
/**
|
|
1738
|
+
* 用于对top数据排序的结构体
|
|
1739
|
+
*/
|
|
1740
|
+
export interface TopDetailData {
|
|
1741
|
+
/**
|
|
1742
|
+
* 字段名
|
|
1743
|
+
*/
|
|
1744
|
+
Key: string
|
|
1745
|
+
|
|
1746
|
+
/**
|
|
1747
|
+
* 字段值
|
|
1748
|
+
*/
|
|
1749
|
+
Value: number
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1333
1752
|
/**
|
|
1334
1753
|
* ModifyHostsCertificate返回参数结构体
|
|
1335
1754
|
*/
|
|
@@ -1451,24 +1870,23 @@ export interface L7OfflineLog {
|
|
|
1451
1870
|
}
|
|
1452
1871
|
|
|
1453
1872
|
/**
|
|
1454
|
-
*
|
|
1873
|
+
* ModifyHostsCertificate请求参数结构体
|
|
1455
1874
|
*/
|
|
1456
|
-
export interface
|
|
1875
|
+
export interface ModifyHostsCertificateRequest {
|
|
1457
1876
|
/**
|
|
1458
|
-
*
|
|
1877
|
+
* Zone ID
|
|
1459
1878
|
*/
|
|
1460
|
-
|
|
1879
|
+
ZoneId: string
|
|
1461
1880
|
|
|
1462
1881
|
/**
|
|
1463
|
-
*
|
|
1882
|
+
* 本次变更的域名
|
|
1464
1883
|
*/
|
|
1465
|
-
|
|
1884
|
+
Hosts: Array<string>
|
|
1466
1885
|
|
|
1467
1886
|
/**
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
ObserveRuleIDs?: Array<number>
|
|
1887
|
+
* 证书信息, 只需要传入 CertId 即可, 如果为空, 则使用默认证书
|
|
1888
|
+
*/
|
|
1889
|
+
CertInfo?: Array<ServerCertInfo>
|
|
1472
1890
|
}
|
|
1473
1891
|
|
|
1474
1892
|
/**
|
|
@@ -1637,6 +2055,28 @@ export interface Zone {
|
|
|
1637
2055
|
CnameStatus: string
|
|
1638
2056
|
}
|
|
1639
2057
|
|
|
2058
|
+
/**
|
|
2059
|
+
* 站点查询过滤条件
|
|
2060
|
+
*/
|
|
2061
|
+
export interface ZoneFilter {
|
|
2062
|
+
/**
|
|
2063
|
+
* 过滤字段名,支持的列表如下:
|
|
2064
|
+
- name: 站点名。
|
|
2065
|
+
- status: 站点状态
|
|
2066
|
+
*/
|
|
2067
|
+
Name: string
|
|
2068
|
+
|
|
2069
|
+
/**
|
|
2070
|
+
* 过滤字段值
|
|
2071
|
+
*/
|
|
2072
|
+
Values: Array<string>
|
|
2073
|
+
|
|
2074
|
+
/**
|
|
2075
|
+
* 是否启用模糊查询,仅支持过滤字段名为name。模糊查询时,Values长度最大为1
|
|
2076
|
+
*/
|
|
2077
|
+
Fuzzy?: boolean
|
|
2078
|
+
}
|
|
2079
|
+
|
|
1640
2080
|
/**
|
|
1641
2081
|
* DescribeSecurityPolicyManagedRulesId请求参数结构体
|
|
1642
2082
|
*/
|
|
@@ -1755,13 +2195,28 @@ offline: 停用
|
|
|
1755
2195
|
}
|
|
1756
2196
|
|
|
1757
2197
|
/**
|
|
1758
|
-
*
|
|
2198
|
+
* DescribeDDosAttackTopData返回参数结构体
|
|
1759
2199
|
*/
|
|
1760
|
-
export interface
|
|
2200
|
+
export interface DescribeDDosAttackTopDataResponse {
|
|
1761
2201
|
/**
|
|
1762
|
-
*
|
|
2202
|
+
* topn数据
|
|
1763
2203
|
*/
|
|
1764
|
-
|
|
2204
|
+
Data: Array<TopNEntry>
|
|
2205
|
+
|
|
2206
|
+
/**
|
|
2207
|
+
* 状态,1:失败,0:成功
|
|
2208
|
+
*/
|
|
2209
|
+
Status: number
|
|
2210
|
+
|
|
2211
|
+
/**
|
|
2212
|
+
* 返回消息
|
|
2213
|
+
*/
|
|
2214
|
+
Msg: string
|
|
2215
|
+
|
|
2216
|
+
/**
|
|
2217
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2218
|
+
*/
|
|
2219
|
+
RequestId?: string
|
|
1765
2220
|
}
|
|
1766
2221
|
|
|
1767
2222
|
/**
|
|
@@ -1825,70 +2280,25 @@ export interface DescribeLoadBalancingRequest {
|
|
|
1825
2280
|
}
|
|
1826
2281
|
|
|
1827
2282
|
/**
|
|
1828
|
-
*
|
|
2283
|
+
* CC拦截事件
|
|
1829
2284
|
*/
|
|
1830
|
-
export interface
|
|
1831
|
-
/**
|
|
1832
|
-
* 站点ID
|
|
1833
|
-
*/
|
|
1834
|
-
ZoneId: string
|
|
1835
|
-
|
|
1836
|
-
/**
|
|
1837
|
-
* 代理ID
|
|
1838
|
-
*/
|
|
1839
|
-
ProxyId: string
|
|
1840
|
-
|
|
1841
|
-
/**
|
|
1842
|
-
* 规则ID
|
|
1843
|
-
*/
|
|
1844
|
-
RuleId: string
|
|
1845
|
-
|
|
1846
|
-
/**
|
|
1847
|
-
* 协议,取值为TCP或者UDP
|
|
1848
|
-
*/
|
|
1849
|
-
Proto: string
|
|
1850
|
-
|
|
1851
|
-
/**
|
|
1852
|
-
* 端口,支持格式:
|
|
1853
|
-
80:80端口
|
|
1854
|
-
81-90:81至90端口
|
|
1855
|
-
*/
|
|
1856
|
-
Port: Array<string>
|
|
1857
|
-
|
|
1858
|
-
/**
|
|
1859
|
-
* 源站类型,取值:
|
|
1860
|
-
custom:手动添加
|
|
1861
|
-
origins:源站组
|
|
1862
|
-
load_balancing:负载均衡
|
|
1863
|
-
*/
|
|
1864
|
-
OriginType: string
|
|
1865
|
-
|
|
2285
|
+
export interface CCInterceptEvent {
|
|
1866
2286
|
/**
|
|
1867
|
-
*
|
|
1868
|
-
|
|
1869
|
-
IP:端口
|
|
1870
|
-
域名:端口
|
|
1871
|
-
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
1872
|
-
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
2287
|
+
* 客户端ip
|
|
2288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1873
2289
|
*/
|
|
1874
|
-
|
|
2290
|
+
ClientIp: string
|
|
1875
2291
|
|
|
1876
2292
|
/**
|
|
1877
|
-
*
|
|
1878
|
-
|
|
1879
|
-
PPV1: Proxy Protocol传递,协议版本V1
|
|
1880
|
-
PPV2: Proxy Protocol传递,协议版本V2
|
|
1881
|
-
OFF:不传递
|
|
1882
|
-
当Proto=UDP时,取值:
|
|
1883
|
-
PPV2: Proxy Protocol传递,协议版本V2
|
|
1884
|
-
OFF:不传递
|
|
2293
|
+
* 拦截次数/min
|
|
2294
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1885
2295
|
*/
|
|
1886
|
-
|
|
2296
|
+
InterceptNum: number
|
|
1887
2297
|
|
|
1888
2298
|
/**
|
|
1889
|
-
*
|
|
2299
|
+
* 速拦截时间,分钟时间/min,单位为s
|
|
1890
2300
|
*/
|
|
1891
|
-
|
|
2301
|
+
InterceptTime: number
|
|
1892
2302
|
}
|
|
1893
2303
|
|
|
1894
2304
|
/**
|
|
@@ -1912,27 +2322,18 @@ export interface DDoSStatusInfo {
|
|
|
1912
2322
|
}
|
|
1913
2323
|
|
|
1914
2324
|
/**
|
|
1915
|
-
*
|
|
2325
|
+
* ACL配置
|
|
1916
2326
|
*/
|
|
1917
|
-
export interface
|
|
2327
|
+
export interface AclConfig {
|
|
1918
2328
|
/**
|
|
1919
|
-
*
|
|
2329
|
+
* 开关
|
|
1920
2330
|
*/
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
/**
|
|
1924
|
-
* CNAME 地址
|
|
1925
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1926
|
-
*/
|
|
1927
|
-
Cname: string
|
|
2331
|
+
Switch: string
|
|
1928
2332
|
|
|
1929
2333
|
/**
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1934
|
-
*/
|
|
1935
|
-
Status: string
|
|
2334
|
+
* ACL用户规则
|
|
2335
|
+
*/
|
|
2336
|
+
UserRules: Array<ACLUserRule>
|
|
1936
2337
|
}
|
|
1937
2338
|
|
|
1938
2339
|
/**
|
|
@@ -2107,6 +2508,77 @@ pending: 不生效
|
|
|
2107
2508
|
RequestId?: string
|
|
2108
2509
|
}
|
|
2109
2510
|
|
|
2511
|
+
/**
|
|
2512
|
+
* 限速拦截日志
|
|
2513
|
+
*/
|
|
2514
|
+
export interface CCLog {
|
|
2515
|
+
/**
|
|
2516
|
+
* 攻击时间
|
|
2517
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2518
|
+
*/
|
|
2519
|
+
AttackTime: number
|
|
2520
|
+
|
|
2521
|
+
/**
|
|
2522
|
+
* 攻击源ip
|
|
2523
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2524
|
+
*/
|
|
2525
|
+
AttackSip: string
|
|
2526
|
+
|
|
2527
|
+
/**
|
|
2528
|
+
* 攻击域名
|
|
2529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2530
|
+
*/
|
|
2531
|
+
AttackDomain: string
|
|
2532
|
+
|
|
2533
|
+
/**
|
|
2534
|
+
* 请求uri
|
|
2535
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2536
|
+
*/
|
|
2537
|
+
RequestUri: string
|
|
2538
|
+
|
|
2539
|
+
/**
|
|
2540
|
+
* 命中次数
|
|
2541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2542
|
+
*/
|
|
2543
|
+
HitCount: number
|
|
2544
|
+
|
|
2545
|
+
/**
|
|
2546
|
+
* IP所在国家
|
|
2547
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2548
|
+
*/
|
|
2549
|
+
SipCountryCode: string
|
|
2550
|
+
|
|
2551
|
+
/**
|
|
2552
|
+
* 事件id
|
|
2553
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2554
|
+
*/
|
|
2555
|
+
EventId: string
|
|
2556
|
+
|
|
2557
|
+
/**
|
|
2558
|
+
* 处置方式
|
|
2559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2560
|
+
*/
|
|
2561
|
+
DisposalMethod: string
|
|
2562
|
+
|
|
2563
|
+
/**
|
|
2564
|
+
* http_log
|
|
2565
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2566
|
+
*/
|
|
2567
|
+
HttpLog: string
|
|
2568
|
+
|
|
2569
|
+
/**
|
|
2570
|
+
* 规则编号
|
|
2571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2572
|
+
*/
|
|
2573
|
+
RuleId: number
|
|
2574
|
+
|
|
2575
|
+
/**
|
|
2576
|
+
* 风险等级
|
|
2577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2578
|
+
*/
|
|
2579
|
+
RiskLevel: string
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2110
2582
|
/**
|
|
2111
2583
|
* https 服务端证书配置
|
|
2112
2584
|
*/
|
|
@@ -2164,23 +2636,59 @@ export interface DDoSConfig {
|
|
|
2164
2636
|
}
|
|
2165
2637
|
|
|
2166
2638
|
/**
|
|
2167
|
-
*
|
|
2639
|
+
* DescribeWebManagedRulesData返回参数结构体
|
|
2168
2640
|
*/
|
|
2169
|
-
export interface
|
|
2641
|
+
export interface DescribeWebManagedRulesDataResponse {
|
|
2170
2642
|
/**
|
|
2171
|
-
|
|
2643
|
+
* Web攻击日志实体
|
|
2644
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2645
|
+
*/
|
|
2646
|
+
Data: Array<SecEntry>
|
|
2647
|
+
|
|
2648
|
+
/**
|
|
2649
|
+
* 状态,1:失败,0:成功
|
|
2172
2650
|
*/
|
|
2173
|
-
|
|
2651
|
+
Status: number
|
|
2174
2652
|
|
|
2175
2653
|
/**
|
|
2176
|
-
*
|
|
2654
|
+
* 返回消息
|
|
2177
2655
|
*/
|
|
2178
|
-
|
|
2656
|
+
Msg: string
|
|
2179
2657
|
|
|
2180
2658
|
/**
|
|
2181
|
-
*
|
|
2659
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
2182
2660
|
*/
|
|
2183
|
-
|
|
2661
|
+
Interval: string
|
|
2662
|
+
|
|
2663
|
+
/**
|
|
2664
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2665
|
+
*/
|
|
2666
|
+
RequestId?: string
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
/**
|
|
2670
|
+
* DescribeWebManagedRulesLog返回参数结构体
|
|
2671
|
+
*/
|
|
2672
|
+
export interface DescribeWebManagedRulesLogResponse {
|
|
2673
|
+
/**
|
|
2674
|
+
* web攻击日志data
|
|
2675
|
+
*/
|
|
2676
|
+
Data: WebLogData
|
|
2677
|
+
|
|
2678
|
+
/**
|
|
2679
|
+
* 状态,1:失败,0:失败
|
|
2680
|
+
*/
|
|
2681
|
+
Status: number
|
|
2682
|
+
|
|
2683
|
+
/**
|
|
2684
|
+
* 返回信息
|
|
2685
|
+
*/
|
|
2686
|
+
Msg: string
|
|
2687
|
+
|
|
2688
|
+
/**
|
|
2689
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2690
|
+
*/
|
|
2691
|
+
RequestId?: string
|
|
2184
2692
|
}
|
|
2185
2693
|
|
|
2186
2694
|
/**
|
|
@@ -2313,6 +2821,61 @@ export interface ACLCondition {
|
|
|
2313
2821
|
MatchContent: string
|
|
2314
2822
|
}
|
|
2315
2823
|
|
|
2824
|
+
/**
|
|
2825
|
+
* DescribeTopL7AnalysisData请求参数结构体
|
|
2826
|
+
*/
|
|
2827
|
+
export interface DescribeTopL7AnalysisDataRequest {
|
|
2828
|
+
/**
|
|
2829
|
+
* RFC3339标准,客户端时间
|
|
2830
|
+
*/
|
|
2831
|
+
StartTime: string
|
|
2832
|
+
|
|
2833
|
+
/**
|
|
2834
|
+
* RFC3339标准,客户端时间
|
|
2835
|
+
*/
|
|
2836
|
+
EndTime: string
|
|
2837
|
+
|
|
2838
|
+
/**
|
|
2839
|
+
* 时序类访问流量指标
|
|
2840
|
+
*/
|
|
2841
|
+
MetricName: string
|
|
2842
|
+
|
|
2843
|
+
/**
|
|
2844
|
+
* topN,填0时返回全量数据
|
|
2845
|
+
*/
|
|
2846
|
+
Limit: number
|
|
2847
|
+
|
|
2848
|
+
/**
|
|
2849
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
2850
|
+
*/
|
|
2851
|
+
Interval: string
|
|
2852
|
+
|
|
2853
|
+
/**
|
|
2854
|
+
* ZoneId数组
|
|
2855
|
+
*/
|
|
2856
|
+
ZoneIds?: Array<string>
|
|
2857
|
+
|
|
2858
|
+
/**
|
|
2859
|
+
* 筛选条件
|
|
2860
|
+
*/
|
|
2861
|
+
Filters?: Array<Filter>
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2864
|
+
/**
|
|
2865
|
+
* TopN entry
|
|
2866
|
+
*/
|
|
2867
|
+
export interface TopNEntry {
|
|
2868
|
+
/**
|
|
2869
|
+
* Entry key
|
|
2870
|
+
*/
|
|
2871
|
+
Key: string
|
|
2872
|
+
|
|
2873
|
+
/**
|
|
2874
|
+
* TopN数据
|
|
2875
|
+
*/
|
|
2876
|
+
Value: Array<TopNEntryValue>
|
|
2877
|
+
}
|
|
2878
|
+
|
|
2316
2879
|
/**
|
|
2317
2880
|
* DescribeApplicationProxy返回参数结构体
|
|
2318
2881
|
*/
|
|
@@ -2357,23 +2920,89 @@ export interface CreateLoadBalancingResponse {
|
|
|
2357
2920
|
}
|
|
2358
2921
|
|
|
2359
2922
|
/**
|
|
2360
|
-
*
|
|
2923
|
+
* DescribeTopL7CacheData返回参数结构体
|
|
2361
2924
|
*/
|
|
2362
|
-
export interface
|
|
2925
|
+
export interface DescribeTopL7CacheDataResponse {
|
|
2363
2926
|
/**
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2927
|
+
* top详细数据
|
|
2928
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2929
|
+
*/
|
|
2930
|
+
Data: Array<TopDataRecord>
|
|
2368
2931
|
|
|
2369
|
-
/**
|
|
2370
|
-
* IdentifyZone返回参数结构体
|
|
2371
|
-
*/
|
|
2372
|
-
export interface IdentifyZoneResponse {
|
|
2373
2932
|
/**
|
|
2374
|
-
*
|
|
2933
|
+
* 查询维度
|
|
2375
2934
|
*/
|
|
2376
|
-
|
|
2935
|
+
Type: string
|
|
2936
|
+
|
|
2937
|
+
/**
|
|
2938
|
+
* 查询指标
|
|
2939
|
+
*/
|
|
2940
|
+
MetricName: string
|
|
2941
|
+
|
|
2942
|
+
/**
|
|
2943
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2944
|
+
*/
|
|
2945
|
+
RequestId?: string
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
/**
|
|
2949
|
+
* DescribeOverviewL7Data请求参数结构体
|
|
2950
|
+
*/
|
|
2951
|
+
export interface DescribeOverviewL7DataRequest {
|
|
2952
|
+
/**
|
|
2953
|
+
* RFC3339格式,客户端时间
|
|
2954
|
+
*/
|
|
2955
|
+
StartTime: string
|
|
2956
|
+
|
|
2957
|
+
/**
|
|
2958
|
+
* RFC3339格式,客户端时间
|
|
2959
|
+
*/
|
|
2960
|
+
EndTime: string
|
|
2961
|
+
|
|
2962
|
+
/**
|
|
2963
|
+
* 指标列表
|
|
2964
|
+
*/
|
|
2965
|
+
MetricNames: Array<string>
|
|
2966
|
+
|
|
2967
|
+
/**
|
|
2968
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
2969
|
+
*/
|
|
2970
|
+
Interval: string
|
|
2971
|
+
|
|
2972
|
+
/**
|
|
2973
|
+
* ZoneId列表,仅在zone/domain维度下查询时该参数有效
|
|
2974
|
+
*/
|
|
2975
|
+
ZoneIds?: Array<string>
|
|
2976
|
+
|
|
2977
|
+
/**
|
|
2978
|
+
* Domain列表,仅在domain维度下查询时该参数有效
|
|
2979
|
+
*/
|
|
2980
|
+
Domains?: Array<string>
|
|
2981
|
+
|
|
2982
|
+
/**
|
|
2983
|
+
* 协议类型, 选填{http,http2,https,all}
|
|
2984
|
+
*/
|
|
2985
|
+
Protocol?: string
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
/**
|
|
2989
|
+
* 功能总开关
|
|
2990
|
+
*/
|
|
2991
|
+
export interface SwitchConfig {
|
|
2992
|
+
/**
|
|
2993
|
+
* Web类型的安全总开关:Web基础防护,自定义规则,速率限制
|
|
2994
|
+
*/
|
|
2995
|
+
WebSwitch: string
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
/**
|
|
2999
|
+
* IdentifyZone返回参数结构体
|
|
3000
|
+
*/
|
|
3001
|
+
export interface IdentifyZoneResponse {
|
|
3002
|
+
/**
|
|
3003
|
+
* 站点名称
|
|
3004
|
+
*/
|
|
3005
|
+
Name: string
|
|
2377
3006
|
|
|
2378
3007
|
/**
|
|
2379
3008
|
* 子域
|
|
@@ -2501,6 +3130,66 @@ export interface DescribeDnssecRequest {
|
|
|
2501
3130
|
Id: string
|
|
2502
3131
|
}
|
|
2503
3132
|
|
|
3133
|
+
/**
|
|
3134
|
+
* DescribeWebProtectionLog返回参数结构体
|
|
3135
|
+
*/
|
|
3136
|
+
export interface DescribeWebProtectionLogResponse {
|
|
3137
|
+
/**
|
|
3138
|
+
* 限速拦截Data
|
|
3139
|
+
*/
|
|
3140
|
+
Data: CCLogData
|
|
3141
|
+
|
|
3142
|
+
/**
|
|
3143
|
+
* 状态,1:失败,0:成功
|
|
3144
|
+
*/
|
|
3145
|
+
Status: number
|
|
3146
|
+
|
|
3147
|
+
/**
|
|
3148
|
+
* 返回信息
|
|
3149
|
+
*/
|
|
3150
|
+
Msg: string
|
|
3151
|
+
|
|
3152
|
+
/**
|
|
3153
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3154
|
+
*/
|
|
3155
|
+
RequestId?: string
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
/**
|
|
3159
|
+
* CC拦截事件数据
|
|
3160
|
+
*/
|
|
3161
|
+
export interface CCInterceptEventData {
|
|
3162
|
+
/**
|
|
3163
|
+
* 攻击事件数据集合
|
|
3164
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3165
|
+
*/
|
|
3166
|
+
List: Array<CCInterceptEvent>
|
|
3167
|
+
|
|
3168
|
+
/**
|
|
3169
|
+
* 当前页
|
|
3170
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3171
|
+
*/
|
|
3172
|
+
PageNo: number
|
|
3173
|
+
|
|
3174
|
+
/**
|
|
3175
|
+
* 每页展示条数
|
|
3176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3177
|
+
*/
|
|
3178
|
+
PageSize: number
|
|
3179
|
+
|
|
3180
|
+
/**
|
|
3181
|
+
* 总页数
|
|
3182
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3183
|
+
*/
|
|
3184
|
+
Pages: number
|
|
3185
|
+
|
|
3186
|
+
/**
|
|
3187
|
+
* 总条数
|
|
3188
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3189
|
+
*/
|
|
3190
|
+
TotalSize: number
|
|
3191
|
+
}
|
|
3192
|
+
|
|
2504
3193
|
/**
|
|
2505
3194
|
* DescribeLoadBalancingDetail返回参数结构体
|
|
2506
3195
|
*/
|
|
@@ -2606,28 +3295,38 @@ export interface SecurityConfig {
|
|
|
2606
3295
|
}
|
|
2607
3296
|
|
|
2608
3297
|
/**
|
|
2609
|
-
*
|
|
3298
|
+
* 主攻击对象Data
|
|
2610
3299
|
*/
|
|
2611
|
-
export interface
|
|
3300
|
+
export interface DDosMajorAttackEventData {
|
|
2612
3301
|
/**
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
3302
|
+
* DDosMajorAttackEvent ddos 攻击事件
|
|
3303
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3304
|
+
*/
|
|
3305
|
+
List: Array<DDosMajorAttackEvent>
|
|
2616
3306
|
|
|
2617
3307
|
/**
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
3308
|
+
* 当前页
|
|
3309
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3310
|
+
*/
|
|
3311
|
+
PageNo: number
|
|
2621
3312
|
|
|
2622
3313
|
/**
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
3314
|
+
* 每页展示条数
|
|
3315
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3316
|
+
*/
|
|
3317
|
+
PageSize: number
|
|
2626
3318
|
|
|
2627
3319
|
/**
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
3320
|
+
* 总页数
|
|
3321
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3322
|
+
*/
|
|
3323
|
+
Pages: number
|
|
3324
|
+
|
|
3325
|
+
/**
|
|
3326
|
+
* 总条数
|
|
3327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3328
|
+
*/
|
|
3329
|
+
TotalSize: number
|
|
2631
3330
|
}
|
|
2632
3331
|
|
|
2633
3332
|
/**
|
|
@@ -2743,6 +3442,22 @@ pending: 不生效
|
|
|
2743
3442
|
DomainStatus: Array<string>
|
|
2744
3443
|
}
|
|
2745
3444
|
|
|
3445
|
+
/**
|
|
3446
|
+
* 七层数据分析类top数据
|
|
3447
|
+
*/
|
|
3448
|
+
export interface TopDataRecord {
|
|
3449
|
+
/**
|
|
3450
|
+
* 查询维度值
|
|
3451
|
+
*/
|
|
3452
|
+
TypeKey: string
|
|
3453
|
+
|
|
3454
|
+
/**
|
|
3455
|
+
* top数据排行
|
|
3456
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3457
|
+
*/
|
|
3458
|
+
DetailData: Array<TopDetailData>
|
|
3459
|
+
}
|
|
3460
|
+
|
|
2746
3461
|
/**
|
|
2747
3462
|
* DDoS协议防护+连接防护
|
|
2748
3463
|
*/
|
|
@@ -2813,6 +3528,100 @@ export interface DDoSAntiPly {
|
|
|
2813
3528
|
EmptyConnectProtect: string
|
|
2814
3529
|
}
|
|
2815
3530
|
|
|
3531
|
+
/**
|
|
3532
|
+
* DescribeWebManagedRulesData请求参数结构体
|
|
3533
|
+
*/
|
|
3534
|
+
export interface DescribeWebManagedRulesDataRequest {
|
|
3535
|
+
/**
|
|
3536
|
+
* 开始时间
|
|
3537
|
+
*/
|
|
3538
|
+
StartTime: string
|
|
3539
|
+
|
|
3540
|
+
/**
|
|
3541
|
+
* 结束时间
|
|
3542
|
+
*/
|
|
3543
|
+
EndTime: string
|
|
3544
|
+
|
|
3545
|
+
/**
|
|
3546
|
+
* 统计指标列表
|
|
3547
|
+
*/
|
|
3548
|
+
MetricNames: Array<string>
|
|
3549
|
+
|
|
3550
|
+
/**
|
|
3551
|
+
* 站点id列表
|
|
3552
|
+
*/
|
|
3553
|
+
ZoneIds?: Array<string>
|
|
3554
|
+
|
|
3555
|
+
/**
|
|
3556
|
+
* 子域名列表
|
|
3557
|
+
*/
|
|
3558
|
+
Domains?: Array<string>
|
|
3559
|
+
|
|
3560
|
+
/**
|
|
3561
|
+
* 协议类型
|
|
3562
|
+
*/
|
|
3563
|
+
ProtocolType?: string
|
|
3564
|
+
|
|
3565
|
+
/**
|
|
3566
|
+
* "webshell" : Webshell检测防护
|
|
3567
|
+
"oa" : 常见OA漏洞防护
|
|
3568
|
+
"xss" : XSS跨站脚本攻击防护
|
|
3569
|
+
"xxe" : XXE攻击防护
|
|
3570
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
3571
|
+
"cms" : 常见CMS漏洞防护
|
|
3572
|
+
"upload" : 恶意文件上传攻击防护
|
|
3573
|
+
"sql" : SQL注入攻击防护
|
|
3574
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
3575
|
+
"osc" : 开源组件漏洞防护
|
|
3576
|
+
"file_read" : 任意文件读取
|
|
3577
|
+
"ldap" : LDAP注入攻击防护
|
|
3578
|
+
"other" : 其它漏洞防护
|
|
3579
|
+
|
|
3580
|
+
"all":"所有"
|
|
3581
|
+
*/
|
|
3582
|
+
AttackType?: string
|
|
3583
|
+
|
|
3584
|
+
/**
|
|
3585
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3586
|
+
*/
|
|
3587
|
+
Interval?: string
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
/**
|
|
3591
|
+
* DDos攻击源数据
|
|
3592
|
+
*/
|
|
3593
|
+
export interface DDosAttackSourceEventData {
|
|
3594
|
+
/**
|
|
3595
|
+
* DDos攻击源数据集合
|
|
3596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3597
|
+
*/
|
|
3598
|
+
List: Array<DDosAttackSourceEvent>
|
|
3599
|
+
|
|
3600
|
+
/**
|
|
3601
|
+
* 当前页
|
|
3602
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3603
|
+
*/
|
|
3604
|
+
PageNo: number
|
|
3605
|
+
|
|
3606
|
+
/**
|
|
3607
|
+
* 每页展示条数
|
|
3608
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3609
|
+
*/
|
|
3610
|
+
PageSize: number
|
|
3611
|
+
|
|
3612
|
+
/**
|
|
3613
|
+
* 总页数
|
|
3614
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3615
|
+
*/
|
|
3616
|
+
Pages: number
|
|
3617
|
+
|
|
3618
|
+
/**
|
|
3619
|
+
* 总条数
|
|
3620
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3621
|
+
*/
|
|
3622
|
+
TotalSize: number
|
|
3623
|
+
}
|
|
3624
|
+
|
|
2816
3625
|
/**
|
|
2817
3626
|
* ModifyDDoSPolicy返回参数结构体
|
|
2818
3627
|
*/
|
|
@@ -2889,6 +3698,27 @@ export interface CreatePrefetchTaskResponse {
|
|
|
2889
3698
|
RequestId?: string
|
|
2890
3699
|
}
|
|
2891
3700
|
|
|
3701
|
+
/**
|
|
3702
|
+
* Waf规则
|
|
3703
|
+
*/
|
|
3704
|
+
export interface WafRule {
|
|
3705
|
+
/**
|
|
3706
|
+
* 黑名单
|
|
3707
|
+
*/
|
|
3708
|
+
BlockRuleIDs: Array<number>
|
|
3709
|
+
|
|
3710
|
+
/**
|
|
3711
|
+
* id的开关
|
|
3712
|
+
*/
|
|
3713
|
+
Switch: string
|
|
3714
|
+
|
|
3715
|
+
/**
|
|
3716
|
+
* 观察模式
|
|
3717
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3718
|
+
*/
|
|
3719
|
+
ObserveRuleIDs?: Array<number>
|
|
3720
|
+
}
|
|
3721
|
+
|
|
2892
3722
|
/**
|
|
2893
3723
|
* DescribeDefaultCertificates请求参数结构体
|
|
2894
3724
|
*/
|
|
@@ -2960,34 +3790,73 @@ export interface ModifyApplicationProxyRuleResponse {
|
|
|
2960
3790
|
}
|
|
2961
3791
|
|
|
2962
3792
|
/**
|
|
2963
|
-
*
|
|
3793
|
+
* DDos攻击事件对象
|
|
2964
3794
|
*/
|
|
2965
|
-
export interface
|
|
3795
|
+
export interface DDosAttackEvent {
|
|
2966
3796
|
/**
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
3797
|
+
* ddos 策略组id
|
|
3798
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3799
|
+
*/
|
|
3800
|
+
PolicyId: number
|
|
2970
3801
|
|
|
2971
3802
|
/**
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
3803
|
+
* 攻击类型(对应交互事件名称)
|
|
3804
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3805
|
+
*/
|
|
3806
|
+
AttackType: string
|
|
2975
3807
|
|
|
2976
3808
|
/**
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
3809
|
+
* 攻击状态
|
|
3810
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3811
|
+
*/
|
|
3812
|
+
AttackStatus: number
|
|
2981
3813
|
|
|
2982
|
-
/**
|
|
2983
|
-
* 失败原因
|
|
2984
|
-
*/
|
|
2985
|
-
export interface FailReason {
|
|
2986
3814
|
/**
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
3815
|
+
* 攻击最大带宽
|
|
3816
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3817
|
+
*/
|
|
3818
|
+
AttackMaxBandWidth: number
|
|
3819
|
+
|
|
3820
|
+
/**
|
|
3821
|
+
* 攻击包速率峰值
|
|
3822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3823
|
+
*/
|
|
3824
|
+
AttackPacketMaxRate: number
|
|
3825
|
+
|
|
3826
|
+
/**
|
|
3827
|
+
* 攻击开始时间 单位为s
|
|
3828
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3829
|
+
*/
|
|
3830
|
+
AttackStartTime: number
|
|
3831
|
+
|
|
3832
|
+
/**
|
|
3833
|
+
* 攻击结束时间 单位为s
|
|
3834
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3835
|
+
*/
|
|
3836
|
+
AttackEndTime: number
|
|
3837
|
+
|
|
3838
|
+
/**
|
|
3839
|
+
* 事件ID
|
|
3840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3841
|
+
*/
|
|
3842
|
+
EventId: string
|
|
3843
|
+
|
|
3844
|
+
/**
|
|
3845
|
+
* 站点id
|
|
3846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3847
|
+
*/
|
|
3848
|
+
ZoneId: string
|
|
3849
|
+
}
|
|
3850
|
+
|
|
3851
|
+
/**
|
|
3852
|
+
* 失败原因
|
|
3853
|
+
*/
|
|
3854
|
+
export interface FailReason {
|
|
3855
|
+
/**
|
|
3856
|
+
* 失败原因
|
|
3857
|
+
*/
|
|
3858
|
+
Reason: string
|
|
3859
|
+
|
|
2991
3860
|
/**
|
|
2992
3861
|
* 处理失败的资源列表。
|
|
2993
3862
|
该列表元素来源于输入参数中的Targets,因此格式和入参中的Targets保持一致
|
|
@@ -3038,6 +3907,43 @@ export interface RateLimitConfig {
|
|
|
3038
3907
|
Template?: RateLimitTemplate
|
|
3039
3908
|
}
|
|
3040
3909
|
|
|
3910
|
+
/**
|
|
3911
|
+
* DescribeTimingL7CacheData请求参数结构体
|
|
3912
|
+
*/
|
|
3913
|
+
export interface DescribeTimingL7CacheDataRequest {
|
|
3914
|
+
/**
|
|
3915
|
+
* RFC3339标准,客户端时间
|
|
3916
|
+
*/
|
|
3917
|
+
StartTime: string
|
|
3918
|
+
|
|
3919
|
+
/**
|
|
3920
|
+
* RFC3339标准,客户端时间
|
|
3921
|
+
*/
|
|
3922
|
+
EndTime: string
|
|
3923
|
+
|
|
3924
|
+
/**
|
|
3925
|
+
* 时序类访问流量指标列表
|
|
3926
|
+
*/
|
|
3927
|
+
MetricNames: Array<string>
|
|
3928
|
+
|
|
3929
|
+
/**
|
|
3930
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
3931
|
+
*/
|
|
3932
|
+
Interval: string
|
|
3933
|
+
|
|
3934
|
+
/**
|
|
3935
|
+
* 站点id列表
|
|
3936
|
+
*/
|
|
3937
|
+
ZoneIds?: Array<string>
|
|
3938
|
+
|
|
3939
|
+
/**
|
|
3940
|
+
* 筛选条件,筛选EO/源站响应如下:
|
|
3941
|
+
EO响应:{Key: "cacheType", Value: ["hit"], Operator: "equals"};
|
|
3942
|
+
源站响应:{Key: "cacheType", Value: ["miss", "dynamic"], Operator: "equals"}
|
|
3943
|
+
*/
|
|
3944
|
+
Filters?: Array<Filter>
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3041
3947
|
/**
|
|
3042
3948
|
* DescribeSecurityPolicyList返回参数结构体
|
|
3043
3949
|
*/
|
|
@@ -3183,6 +4089,65 @@ export interface DeleteLoadBalancingResponse {
|
|
|
3183
4089
|
RequestId?: string
|
|
3184
4090
|
}
|
|
3185
4091
|
|
|
4092
|
+
/**
|
|
4093
|
+
* DescribeWebProtectionData请求参数结构体
|
|
4094
|
+
*/
|
|
4095
|
+
export interface DescribeWebProtectionDataRequest {
|
|
4096
|
+
/**
|
|
4097
|
+
* 开始时间
|
|
4098
|
+
*/
|
|
4099
|
+
StartTime: string
|
|
4100
|
+
|
|
4101
|
+
/**
|
|
4102
|
+
* 结束时间
|
|
4103
|
+
*/
|
|
4104
|
+
EndTime: string
|
|
4105
|
+
|
|
4106
|
+
/**
|
|
4107
|
+
* 统计指标列表
|
|
4108
|
+
*/
|
|
4109
|
+
MetricNames: Array<string>
|
|
4110
|
+
|
|
4111
|
+
/**
|
|
4112
|
+
* 站点id列表
|
|
4113
|
+
*/
|
|
4114
|
+
ZoneIds?: Array<string>
|
|
4115
|
+
|
|
4116
|
+
/**
|
|
4117
|
+
* 子域名列表
|
|
4118
|
+
*/
|
|
4119
|
+
Domains?: Array<string>
|
|
4120
|
+
|
|
4121
|
+
/**
|
|
4122
|
+
* 协议类型
|
|
4123
|
+
*/
|
|
4124
|
+
ProtocolType?: string
|
|
4125
|
+
|
|
4126
|
+
/**
|
|
4127
|
+
* "webshell" : Webshell检测防护
|
|
4128
|
+
"oa" : 常见OA漏洞防护
|
|
4129
|
+
"xss" : XSS跨站脚本攻击防护
|
|
4130
|
+
"xxe" : XXE攻击防护
|
|
4131
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
4132
|
+
"cms" : 常见CMS漏洞防护
|
|
4133
|
+
"upload" : 恶意文件上传攻击防护
|
|
4134
|
+
"sql" : SQL注入攻击防护
|
|
4135
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
4136
|
+
"osc" : 开源组件漏洞防护
|
|
4137
|
+
"file_read" : 任意文件读取
|
|
4138
|
+
"ldap" : LDAP注入攻击防护
|
|
4139
|
+
"other" : 其它漏洞防护
|
|
4140
|
+
|
|
4141
|
+
"all":"所有"
|
|
4142
|
+
*/
|
|
4143
|
+
AttackType?: string
|
|
4144
|
+
|
|
4145
|
+
/**
|
|
4146
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
4147
|
+
*/
|
|
4148
|
+
Interval?: string
|
|
4149
|
+
}
|
|
4150
|
+
|
|
3186
4151
|
/**
|
|
3187
4152
|
* CheckCertificate请求参数结构体
|
|
3188
4153
|
*/
|
|
@@ -3286,54 +4251,28 @@ OFF:不传递
|
|
|
3286
4251
|
}
|
|
3287
4252
|
|
|
3288
4253
|
/**
|
|
3289
|
-
*
|
|
4254
|
+
* bot托管规则详情
|
|
3290
4255
|
*/
|
|
3291
|
-
export interface
|
|
3292
|
-
/**
|
|
3293
|
-
* 任务ID
|
|
3294
|
-
*/
|
|
3295
|
-
JobId?: string
|
|
3296
|
-
|
|
3297
|
-
/**
|
|
3298
|
-
* 查询起始时间
|
|
3299
|
-
*/
|
|
3300
|
-
StartTime?: string
|
|
3301
|
-
|
|
3302
|
-
/**
|
|
3303
|
-
* 查询结束时间
|
|
3304
|
-
*/
|
|
3305
|
-
EndTime?: string
|
|
3306
|
-
|
|
3307
|
-
/**
|
|
3308
|
-
* 查询起始偏移量
|
|
3309
|
-
*/
|
|
3310
|
-
Offset?: number
|
|
3311
|
-
|
|
4256
|
+
export interface BotManagedRuleDetail {
|
|
3312
4257
|
/**
|
|
3313
|
-
*
|
|
4258
|
+
* 规则ID
|
|
3314
4259
|
*/
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
/**
|
|
3318
|
-
* 查询的状态
|
|
3319
|
-
允许的值为:processing、success、failed、timeout、invalid
|
|
3320
|
-
*/
|
|
3321
|
-
Statuses?: Array<string>
|
|
4260
|
+
RuleId: number
|
|
3322
4261
|
|
|
3323
4262
|
/**
|
|
3324
|
-
*
|
|
4263
|
+
* 规则描述
|
|
3325
4264
|
*/
|
|
3326
|
-
|
|
4265
|
+
Description: string
|
|
3327
4266
|
|
|
3328
4267
|
/**
|
|
3329
|
-
*
|
|
4268
|
+
* 规则分类
|
|
3330
4269
|
*/
|
|
3331
|
-
|
|
4270
|
+
RuleTypeName: string
|
|
3332
4271
|
|
|
3333
4272
|
/**
|
|
3334
|
-
*
|
|
4273
|
+
* 该规则开启/关闭
|
|
3335
4274
|
*/
|
|
3336
|
-
|
|
4275
|
+
Status: string
|
|
3337
4276
|
}
|
|
3338
4277
|
|
|
3339
4278
|
/**
|
|
@@ -3413,6 +4352,16 @@ export interface ModifyApplicationProxyStatusResponse {
|
|
|
3413
4352
|
RequestId?: string
|
|
3414
4353
|
}
|
|
3415
4354
|
|
|
4355
|
+
/**
|
|
4356
|
+
* IdentifyZone请求参数结构体
|
|
4357
|
+
*/
|
|
4358
|
+
export interface IdentifyZoneRequest {
|
|
4359
|
+
/**
|
|
4360
|
+
* 站点名称
|
|
4361
|
+
*/
|
|
4362
|
+
Name: string
|
|
4363
|
+
}
|
|
4364
|
+
|
|
3416
4365
|
/**
|
|
3417
4366
|
* 域名配置信息
|
|
3418
4367
|
*/
|
|
@@ -3461,6 +4410,53 @@ export interface DescribeDnsRecordsResponse {
|
|
|
3461
4410
|
RequestId?: string
|
|
3462
4411
|
}
|
|
3463
4412
|
|
|
4413
|
+
/**
|
|
4414
|
+
* DescribeDefaultCertificates返回参数结构体
|
|
4415
|
+
*/
|
|
4416
|
+
export interface DescribeDefaultCertificatesResponse {
|
|
4417
|
+
/**
|
|
4418
|
+
* 证书总数
|
|
4419
|
+
*/
|
|
4420
|
+
TotalCount: number
|
|
4421
|
+
|
|
4422
|
+
/**
|
|
4423
|
+
* 默认证书列表
|
|
4424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4425
|
+
*/
|
|
4426
|
+
CertInfo: Array<DefaultServerCertInfo>
|
|
4427
|
+
|
|
4428
|
+
/**
|
|
4429
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4430
|
+
*/
|
|
4431
|
+
RequestId?: string
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
/**
|
|
4435
|
+
* DescribeTimingL7AnalysisData返回参数结构体
|
|
4436
|
+
*/
|
|
4437
|
+
export interface DescribeTimingL7AnalysisDataResponse {
|
|
4438
|
+
/**
|
|
4439
|
+
* 详细数据
|
|
4440
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4441
|
+
*/
|
|
4442
|
+
Data: Array<TimingDataRecord>
|
|
4443
|
+
|
|
4444
|
+
/**
|
|
4445
|
+
* 查询维度
|
|
4446
|
+
*/
|
|
4447
|
+
Type: string
|
|
4448
|
+
|
|
4449
|
+
/**
|
|
4450
|
+
* 时间间隔
|
|
4451
|
+
*/
|
|
4452
|
+
Interval: string
|
|
4453
|
+
|
|
4454
|
+
/**
|
|
4455
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4456
|
+
*/
|
|
4457
|
+
RequestId?: string
|
|
4458
|
+
}
|
|
4459
|
+
|
|
3464
4460
|
/**
|
|
3465
4461
|
* bot 用户画像规则
|
|
3466
4462
|
*/
|
|
@@ -3503,20 +4499,63 @@ export interface BotPortraitRule {
|
|
|
3503
4499
|
}
|
|
3504
4500
|
|
|
3505
4501
|
/**
|
|
3506
|
-
*
|
|
4502
|
+
* DescribeWebProtectionAttackEvents请求参数结构体
|
|
3507
4503
|
*/
|
|
3508
|
-
export interface
|
|
4504
|
+
export interface DescribeWebProtectionAttackEventsRequest {
|
|
3509
4505
|
/**
|
|
3510
|
-
*
|
|
4506
|
+
* 开始时间
|
|
3511
4507
|
*/
|
|
3512
|
-
|
|
4508
|
+
StartTime: string
|
|
3513
4509
|
|
|
3514
4510
|
/**
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
4511
|
+
* 结束时间
|
|
4512
|
+
*/
|
|
4513
|
+
EndTime: string
|
|
4514
|
+
|
|
4515
|
+
/**
|
|
4516
|
+
* 条数
|
|
4517
|
+
*/
|
|
4518
|
+
PageSize: number
|
|
4519
|
+
|
|
4520
|
+
/**
|
|
4521
|
+
* 当前页
|
|
4522
|
+
*/
|
|
4523
|
+
PageNo: number
|
|
4524
|
+
|
|
4525
|
+
/**
|
|
4526
|
+
* 域名
|
|
4527
|
+
*/
|
|
4528
|
+
Domains?: Array<string>
|
|
4529
|
+
|
|
4530
|
+
/**
|
|
4531
|
+
* 站点集合
|
|
4532
|
+
*/
|
|
4533
|
+
ZoneIds?: Array<string>
|
|
4534
|
+
}
|
|
4535
|
+
|
|
4536
|
+
/**
|
|
4537
|
+
* DescribeOverviewL7Data返回参数结构体
|
|
4538
|
+
*/
|
|
4539
|
+
export interface DescribeOverviewL7DataResponse {
|
|
4540
|
+
/**
|
|
4541
|
+
* 查询维度
|
|
4542
|
+
*/
|
|
4543
|
+
Type: string
|
|
4544
|
+
|
|
4545
|
+
/**
|
|
4546
|
+
* 时间间隔
|
|
4547
|
+
*/
|
|
4548
|
+
Interval: string
|
|
4549
|
+
|
|
4550
|
+
/**
|
|
4551
|
+
* 详细数据
|
|
4552
|
+
*/
|
|
4553
|
+
Data: Array<TimingDataRecord>
|
|
4554
|
+
|
|
4555
|
+
/**
|
|
4556
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4557
|
+
*/
|
|
4558
|
+
RequestId?: string
|
|
3520
4559
|
}
|
|
3521
4560
|
|
|
3522
4561
|
/**
|
|
@@ -3575,23 +4614,64 @@ export interface DescribeSecurityPolicyManagedRulesResponse {
|
|
|
3575
4614
|
}
|
|
3576
4615
|
|
|
3577
4616
|
/**
|
|
3578
|
-
*
|
|
4617
|
+
* 源站组信息
|
|
3579
4618
|
*/
|
|
3580
|
-
export interface
|
|
4619
|
+
export interface OriginGroup {
|
|
3581
4620
|
/**
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
Mode?: string
|
|
4621
|
+
* 源站组ID
|
|
4622
|
+
*/
|
|
4623
|
+
OriginId: string
|
|
3586
4624
|
|
|
3587
4625
|
/**
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
4626
|
+
* 源站组名称
|
|
4627
|
+
*/
|
|
4628
|
+
OriginName: string
|
|
4629
|
+
|
|
4630
|
+
/**
|
|
4631
|
+
* 配置类型
|
|
4632
|
+
*/
|
|
4633
|
+
Type: string
|
|
4634
|
+
|
|
4635
|
+
/**
|
|
4636
|
+
* 记录
|
|
4637
|
+
*/
|
|
4638
|
+
Record: Array<OriginRecord>
|
|
4639
|
+
|
|
4640
|
+
/**
|
|
4641
|
+
* 更新时间
|
|
4642
|
+
*/
|
|
4643
|
+
UpdateTime: string
|
|
4644
|
+
|
|
4645
|
+
/**
|
|
4646
|
+
* 站点ID
|
|
4647
|
+
*/
|
|
4648
|
+
ZoneId: string
|
|
4649
|
+
|
|
4650
|
+
/**
|
|
4651
|
+
* 站点名称
|
|
4652
|
+
*/
|
|
4653
|
+
ZoneName: string
|
|
4654
|
+
|
|
4655
|
+
/**
|
|
4656
|
+
* 源站类型
|
|
4657
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4658
|
+
*/
|
|
4659
|
+
OriginType: string
|
|
4660
|
+
|
|
4661
|
+
/**
|
|
4662
|
+
* 是否为四层代理使用
|
|
4663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4664
|
+
*/
|
|
4665
|
+
ApplicationProxyUsed: boolean
|
|
4666
|
+
|
|
4667
|
+
/**
|
|
4668
|
+
* 是否为负载均衡使用
|
|
4669
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4670
|
+
*/
|
|
4671
|
+
LoadBalancingUsed: boolean
|
|
4672
|
+
}
|
|
4673
|
+
|
|
4674
|
+
/**
|
|
3595
4675
|
* DescribeApplicationProxy请求参数结构体
|
|
3596
4676
|
*/
|
|
3597
4677
|
export interface DescribeApplicationProxyRequest {
|
|
@@ -3611,6 +4691,21 @@ export interface DescribeApplicationProxyRequest {
|
|
|
3611
4691
|
Limit?: number
|
|
3612
4692
|
}
|
|
3613
4693
|
|
|
4694
|
+
/**
|
|
4695
|
+
* TopN数据Entry
|
|
4696
|
+
*/
|
|
4697
|
+
export interface TopNEntryValue {
|
|
4698
|
+
/**
|
|
4699
|
+
* Entry的name
|
|
4700
|
+
*/
|
|
4701
|
+
Name: string
|
|
4702
|
+
|
|
4703
|
+
/**
|
|
4704
|
+
* 数量
|
|
4705
|
+
*/
|
|
4706
|
+
Count: number
|
|
4707
|
+
}
|
|
4708
|
+
|
|
3614
4709
|
/**
|
|
3615
4710
|
* ModifyDDoSPolicyHost返回参数结构体
|
|
3616
4711
|
*/
|
|
@@ -3654,44 +4749,76 @@ online: 启用
|
|
|
3654
4749
|
}
|
|
3655
4750
|
|
|
3656
4751
|
/**
|
|
3657
|
-
*
|
|
4752
|
+
* Web拦截事件
|
|
3658
4753
|
*/
|
|
3659
|
-
export interface
|
|
4754
|
+
export interface WebAttackEvent {
|
|
3660
4755
|
/**
|
|
3661
|
-
*
|
|
4756
|
+
* 客户端ip
|
|
3662
4757
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3663
4758
|
*/
|
|
3664
|
-
|
|
4759
|
+
ClientIp: string
|
|
3665
4760
|
|
|
3666
4761
|
/**
|
|
3667
|
-
*
|
|
4762
|
+
* 攻击URL
|
|
3668
4763
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3669
4764
|
*/
|
|
3670
|
-
|
|
4765
|
+
AttackUrl: string
|
|
3671
4766
|
|
|
3672
4767
|
/**
|
|
3673
|
-
*
|
|
4768
|
+
* 攻击时间 单位为s
|
|
3674
4769
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3675
4770
|
*/
|
|
3676
|
-
|
|
4771
|
+
AttackTime: number
|
|
4772
|
+
}
|
|
3677
4773
|
|
|
4774
|
+
/**
|
|
4775
|
+
* DescribeDDosAttackTopData请求参数结构体
|
|
4776
|
+
*/
|
|
4777
|
+
export interface DescribeDDosAttackTopDataRequest {
|
|
3678
4778
|
/**
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
PunishTime?: number
|
|
4779
|
+
* 开始时间
|
|
4780
|
+
*/
|
|
4781
|
+
StartTime: string
|
|
3683
4782
|
|
|
3684
4783
|
/**
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
Threshold?: number
|
|
4784
|
+
* 结束时间
|
|
4785
|
+
*/
|
|
4786
|
+
EndTime: string
|
|
3689
4787
|
|
|
3690
4788
|
/**
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
4789
|
+
* 过滤指标
|
|
4790
|
+
*/
|
|
4791
|
+
MetricName: string
|
|
4792
|
+
|
|
4793
|
+
/**
|
|
4794
|
+
* 查询前多少名,传值为0 全量
|
|
4795
|
+
*/
|
|
4796
|
+
Limit: number
|
|
4797
|
+
|
|
4798
|
+
/**
|
|
4799
|
+
* 站点集合
|
|
4800
|
+
*/
|
|
4801
|
+
ZoneIds?: Array<string>
|
|
4802
|
+
|
|
4803
|
+
/**
|
|
4804
|
+
* ddos策略组id 集合
|
|
4805
|
+
*/
|
|
4806
|
+
PolicyIds?: Array<number>
|
|
4807
|
+
|
|
4808
|
+
/**
|
|
4809
|
+
* 端口号
|
|
4810
|
+
*/
|
|
4811
|
+
Port?: number
|
|
4812
|
+
|
|
4813
|
+
/**
|
|
4814
|
+
* 协议类型,tcp,udp,all
|
|
4815
|
+
*/
|
|
4816
|
+
ProtocolType?: string
|
|
4817
|
+
|
|
4818
|
+
/**
|
|
4819
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
4820
|
+
*/
|
|
4821
|
+
AttackType?: string
|
|
3695
4822
|
}
|
|
3696
4823
|
|
|
3697
4824
|
/**
|
|
@@ -3710,71 +4837,53 @@ export interface CreateApplicationProxyRuleResponse {
|
|
|
3710
4837
|
}
|
|
3711
4838
|
|
|
3712
4839
|
/**
|
|
3713
|
-
*
|
|
4840
|
+
* DescribeDDosAttackData请求参数结构体
|
|
3714
4841
|
*/
|
|
3715
|
-
export interface
|
|
4842
|
+
export interface DescribeDDosAttackDataRequest {
|
|
3716
4843
|
/**
|
|
3717
|
-
*
|
|
4844
|
+
* 开始时间
|
|
3718
4845
|
*/
|
|
3719
|
-
|
|
4846
|
+
StartTime: string
|
|
3720
4847
|
|
|
3721
4848
|
/**
|
|
3722
|
-
*
|
|
4849
|
+
* 结束时间
|
|
3723
4850
|
*/
|
|
3724
|
-
|
|
4851
|
+
EndTime: string
|
|
3725
4852
|
|
|
3726
4853
|
/**
|
|
3727
|
-
*
|
|
4854
|
+
* 统计指标列表
|
|
3728
4855
|
*/
|
|
3729
|
-
|
|
4856
|
+
MetricNames: Array<string>
|
|
3730
4857
|
|
|
3731
4858
|
/**
|
|
3732
|
-
*
|
|
4859
|
+
* 站点id列表
|
|
3733
4860
|
*/
|
|
3734
|
-
|
|
4861
|
+
ZoneIds?: Array<string>
|
|
3735
4862
|
|
|
3736
4863
|
/**
|
|
3737
|
-
*
|
|
4864
|
+
* ddos策略组id列表
|
|
3738
4865
|
*/
|
|
3739
|
-
|
|
4866
|
+
PolicyIds?: Array<number>
|
|
3740
4867
|
|
|
3741
4868
|
/**
|
|
3742
|
-
*
|
|
4869
|
+
* 端口号
|
|
3743
4870
|
*/
|
|
3744
|
-
|
|
4871
|
+
Port?: number
|
|
3745
4872
|
|
|
3746
4873
|
/**
|
|
3747
|
-
*
|
|
4874
|
+
* 协议类型,tcp,udp,all
|
|
3748
4875
|
*/
|
|
3749
|
-
|
|
4876
|
+
ProtocolType?: string
|
|
3750
4877
|
|
|
3751
4878
|
/**
|
|
3752
|
-
*
|
|
4879
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
3753
4880
|
*/
|
|
3754
|
-
|
|
4881
|
+
AttackType?: string
|
|
3755
4882
|
|
|
3756
4883
|
/**
|
|
3757
|
-
*
|
|
4884
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3758
4885
|
*/
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
/**
|
|
3762
|
-
* 规则id
|
|
3763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3764
|
-
*/
|
|
3765
|
-
RuleID?: number
|
|
3766
|
-
|
|
3767
|
-
/**
|
|
3768
|
-
* 过滤词
|
|
3769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3770
|
-
*/
|
|
3771
|
-
FreqFields?: Array<string>
|
|
3772
|
-
|
|
3773
|
-
/**
|
|
3774
|
-
* 更新时间
|
|
3775
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3776
|
-
*/
|
|
3777
|
-
UpdateTime?: string
|
|
4886
|
+
Interval?: string
|
|
3778
4887
|
}
|
|
3779
4888
|
|
|
3780
4889
|
/**
|
|
@@ -3858,6 +4967,64 @@ export interface ModifyDnsRecordResponse {
|
|
|
3858
4967
|
RequestId?: string
|
|
3859
4968
|
}
|
|
3860
4969
|
|
|
4970
|
+
/**
|
|
4971
|
+
* 模板当前详细配置
|
|
4972
|
+
*/
|
|
4973
|
+
export interface RateLimitTemplateDetail {
|
|
4974
|
+
/**
|
|
4975
|
+
* 模板名称
|
|
4976
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4977
|
+
*/
|
|
4978
|
+
Mode?: string
|
|
4979
|
+
|
|
4980
|
+
/**
|
|
4981
|
+
* 唯一id
|
|
4982
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4983
|
+
*/
|
|
4984
|
+
ID?: number
|
|
4985
|
+
|
|
4986
|
+
/**
|
|
4987
|
+
* 处置动作
|
|
4988
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4989
|
+
*/
|
|
4990
|
+
Action?: string
|
|
4991
|
+
|
|
4992
|
+
/**
|
|
4993
|
+
* 惩罚时间,秒
|
|
4994
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4995
|
+
*/
|
|
4996
|
+
PunishTime?: number
|
|
4997
|
+
|
|
4998
|
+
/**
|
|
4999
|
+
* 阈值
|
|
5000
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5001
|
+
*/
|
|
5002
|
+
Threshold?: number
|
|
5003
|
+
|
|
5004
|
+
/**
|
|
5005
|
+
* 统计周期
|
|
5006
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5007
|
+
*/
|
|
5008
|
+
Period?: number
|
|
5009
|
+
}
|
|
5010
|
+
|
|
5011
|
+
/**
|
|
5012
|
+
* 统计曲线数据项
|
|
5013
|
+
*/
|
|
5014
|
+
export interface TimingDataItem {
|
|
5015
|
+
/**
|
|
5016
|
+
* 秒级时间戳
|
|
5017
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5018
|
+
*/
|
|
5019
|
+
Timestamp: number
|
|
5020
|
+
|
|
5021
|
+
/**
|
|
5022
|
+
* 数值
|
|
5023
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5024
|
+
*/
|
|
5025
|
+
Value: number
|
|
5026
|
+
}
|
|
5027
|
+
|
|
3861
5028
|
/**
|
|
3862
5029
|
* CreateApplicationProxy请求参数结构体
|
|
3863
5030
|
*/
|
|
@@ -3923,89 +5090,328 @@ instance:实例
|
|
|
3923
5090
|
}
|
|
3924
5091
|
|
|
3925
5092
|
/**
|
|
3926
|
-
*
|
|
5093
|
+
* DescribeTopL7AnalysisData返回参数结构体
|
|
3927
5094
|
*/
|
|
3928
|
-
export interface
|
|
5095
|
+
export interface DescribeTopL7AnalysisDataResponse {
|
|
3929
5096
|
/**
|
|
3930
|
-
*
|
|
3931
|
-
关闭:off,
|
|
3932
|
-
开启:on。
|
|
3933
|
-
*/
|
|
3934
|
-
Switch: string
|
|
3935
|
-
|
|
3936
|
-
/**
|
|
3937
|
-
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
5097
|
+
* top详细数据
|
|
3938
5098
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3939
5099
|
*/
|
|
3940
|
-
|
|
3941
|
-
}
|
|
5100
|
+
Data: Array<TopDataRecord>
|
|
3942
5101
|
|
|
3943
|
-
/**
|
|
3944
|
-
* 门神规则
|
|
3945
|
-
*/
|
|
3946
|
-
export interface ManagedRule {
|
|
3947
5102
|
/**
|
|
3948
|
-
*
|
|
5103
|
+
* 查询维度
|
|
3949
5104
|
*/
|
|
3950
|
-
|
|
5105
|
+
Type: string
|
|
3951
5106
|
|
|
3952
5107
|
/**
|
|
3953
|
-
*
|
|
5108
|
+
* 查询指标
|
|
3954
5109
|
*/
|
|
3955
|
-
|
|
5110
|
+
MetricName: string
|
|
3956
5111
|
|
|
3957
5112
|
/**
|
|
3958
|
-
*
|
|
5113
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3959
5114
|
*/
|
|
3960
|
-
|
|
5115
|
+
RequestId?: string
|
|
5116
|
+
}
|
|
3961
5117
|
|
|
5118
|
+
/**
|
|
5119
|
+
* web攻击日志
|
|
5120
|
+
*/
|
|
5121
|
+
export interface WebLogs {
|
|
3962
5122
|
/**
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
5123
|
+
* 攻击内容
|
|
5124
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5125
|
+
*/
|
|
5126
|
+
AttackContent: string
|
|
3966
5127
|
|
|
3967
5128
|
/**
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
5129
|
+
* 攻击IP
|
|
5130
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5131
|
+
*/
|
|
5132
|
+
AttackIp: string
|
|
3971
5133
|
|
|
3972
5134
|
/**
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
5135
|
+
* 攻击类型
|
|
5136
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5137
|
+
*/
|
|
5138
|
+
AttackType: string
|
|
3976
5139
|
|
|
3977
5140
|
/**
|
|
3978
|
-
*
|
|
5141
|
+
* 域名
|
|
3979
5142
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3980
5143
|
*/
|
|
3981
|
-
|
|
5144
|
+
Domain: string
|
|
3982
5145
|
|
|
3983
5146
|
/**
|
|
3984
|
-
*
|
|
5147
|
+
* uuid
|
|
3985
5148
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3986
5149
|
*/
|
|
3987
|
-
|
|
5150
|
+
Msuuid: string
|
|
3988
5151
|
|
|
3989
5152
|
/**
|
|
3990
|
-
*
|
|
5153
|
+
* 请求方法
|
|
5154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5155
|
+
*/
|
|
5156
|
+
RequestMethod: string
|
|
5157
|
+
|
|
5158
|
+
/**
|
|
5159
|
+
* 请求URI
|
|
5160
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5161
|
+
*/
|
|
5162
|
+
RequestUri: string
|
|
5163
|
+
|
|
5164
|
+
/**
|
|
5165
|
+
* 风险等级
|
|
5166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5167
|
+
*/
|
|
5168
|
+
RiskLevel: string
|
|
5169
|
+
|
|
5170
|
+
/**
|
|
5171
|
+
* 规则ID
|
|
5172
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5173
|
+
*/
|
|
5174
|
+
RuleId: number
|
|
5175
|
+
|
|
5176
|
+
/**
|
|
5177
|
+
* IP所在国家
|
|
5178
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5179
|
+
*/
|
|
5180
|
+
SipCountryCode: string
|
|
5181
|
+
|
|
5182
|
+
/**
|
|
5183
|
+
* 事件id
|
|
5184
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5185
|
+
*/
|
|
5186
|
+
EventId: string
|
|
5187
|
+
|
|
5188
|
+
/**
|
|
5189
|
+
* 处置方式
|
|
5190
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5191
|
+
*/
|
|
5192
|
+
DisposalMethod: string
|
|
5193
|
+
|
|
5194
|
+
/**
|
|
5195
|
+
* http_log
|
|
5196
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5197
|
+
*/
|
|
5198
|
+
HttpLog: string
|
|
5199
|
+
|
|
5200
|
+
/**
|
|
5201
|
+
* user agent
|
|
5202
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5203
|
+
*/
|
|
5204
|
+
Ua: string
|
|
5205
|
+
|
|
5206
|
+
/**
|
|
5207
|
+
* 攻击时间,为保持统一,原参数time更名为AttackTime
|
|
5208
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5209
|
+
*/
|
|
5210
|
+
AttackTime: number
|
|
5211
|
+
}
|
|
5212
|
+
|
|
5213
|
+
/**
|
|
5214
|
+
* POST请求上传文件流式传输最大限制
|
|
5215
|
+
*/
|
|
5216
|
+
export interface PostMaxSize {
|
|
5217
|
+
/**
|
|
5218
|
+
* 是调整POST请求限制,平台默认为32MB。
|
|
5219
|
+
关闭:off,
|
|
5220
|
+
开启:on。
|
|
5221
|
+
*/
|
|
5222
|
+
Switch: string
|
|
5223
|
+
|
|
5224
|
+
/**
|
|
5225
|
+
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
5226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5227
|
+
*/
|
|
5228
|
+
MaxSize?: number
|
|
5229
|
+
}
|
|
5230
|
+
|
|
5231
|
+
/**
|
|
5232
|
+
* RateLimit规则
|
|
5233
|
+
*/
|
|
5234
|
+
export interface RateLimitUserRule {
|
|
5235
|
+
/**
|
|
5236
|
+
* RateLimit统计阈值
|
|
5237
|
+
*/
|
|
5238
|
+
Threshold: number
|
|
5239
|
+
|
|
5240
|
+
/**
|
|
5241
|
+
* RateLimit统计时间
|
|
5242
|
+
*/
|
|
5243
|
+
Period: number
|
|
5244
|
+
|
|
5245
|
+
/**
|
|
5246
|
+
* 规则名
|
|
5247
|
+
*/
|
|
5248
|
+
RuleName: string
|
|
5249
|
+
|
|
5250
|
+
/**
|
|
5251
|
+
* 动作:monitor(观察), drop(拦截)
|
|
5252
|
+
*/
|
|
5253
|
+
Action: string
|
|
5254
|
+
|
|
5255
|
+
/**
|
|
5256
|
+
* 惩罚时长
|
|
5257
|
+
*/
|
|
5258
|
+
PunishTime: number
|
|
5259
|
+
|
|
5260
|
+
/**
|
|
5261
|
+
* 处罚时长单位,second
|
|
5262
|
+
*/
|
|
5263
|
+
PunishTimeUnit: string
|
|
5264
|
+
|
|
5265
|
+
/**
|
|
5266
|
+
* 规则状态
|
|
5267
|
+
*/
|
|
5268
|
+
RuleStatus: string
|
|
5269
|
+
|
|
5270
|
+
/**
|
|
5271
|
+
* 规则
|
|
5272
|
+
*/
|
|
5273
|
+
Conditions: Array<ACLCondition>
|
|
5274
|
+
|
|
5275
|
+
/**
|
|
5276
|
+
* 规则权重
|
|
5277
|
+
*/
|
|
5278
|
+
RulePriority: number
|
|
5279
|
+
|
|
5280
|
+
/**
|
|
5281
|
+
* 规则id
|
|
5282
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5283
|
+
*/
|
|
5284
|
+
RuleID?: number
|
|
5285
|
+
|
|
5286
|
+
/**
|
|
5287
|
+
* 过滤词
|
|
5288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5289
|
+
*/
|
|
5290
|
+
FreqFields?: Array<string>
|
|
5291
|
+
|
|
5292
|
+
/**
|
|
5293
|
+
* 更新时间
|
|
5294
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5295
|
+
*/
|
|
5296
|
+
UpdateTime?: string
|
|
5297
|
+
}
|
|
5298
|
+
|
|
5299
|
+
/**
|
|
5300
|
+
* 门神规则
|
|
5301
|
+
*/
|
|
5302
|
+
export interface ManagedRule {
|
|
5303
|
+
/**
|
|
5304
|
+
* 规则id
|
|
5305
|
+
*/
|
|
5306
|
+
RuleId: number
|
|
5307
|
+
|
|
5308
|
+
/**
|
|
5309
|
+
* 规则描述
|
|
5310
|
+
*/
|
|
5311
|
+
Description: string
|
|
5312
|
+
|
|
5313
|
+
/**
|
|
5314
|
+
* 规则类型名
|
|
5315
|
+
*/
|
|
5316
|
+
RuleTypeName: string
|
|
5317
|
+
|
|
5318
|
+
/**
|
|
5319
|
+
* 策略规则防护等级
|
|
5320
|
+
*/
|
|
5321
|
+
RuleLevelDesc: string
|
|
5322
|
+
|
|
5323
|
+
/**
|
|
5324
|
+
* 更新时间
|
|
5325
|
+
*/
|
|
5326
|
+
UpdateTime: string
|
|
5327
|
+
|
|
5328
|
+
/**
|
|
5329
|
+
* 规则当前状态 block, allow
|
|
5330
|
+
*/
|
|
5331
|
+
Status: string
|
|
5332
|
+
|
|
5333
|
+
/**
|
|
5334
|
+
* 规则标签
|
|
5335
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5336
|
+
*/
|
|
5337
|
+
RuleTags?: Array<string>
|
|
5338
|
+
|
|
5339
|
+
/**
|
|
5340
|
+
* 规则类型详细描述
|
|
5341
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5342
|
+
*/
|
|
5343
|
+
RuleTypeDesc?: string
|
|
5344
|
+
|
|
5345
|
+
/**
|
|
5346
|
+
* 规则类型id
|
|
3991
5347
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3992
5348
|
*/
|
|
3993
5349
|
RuleTypeId?: number
|
|
3994
5350
|
}
|
|
3995
5351
|
|
|
3996
5352
|
/**
|
|
3997
|
-
*
|
|
5353
|
+
* 过滤条件
|
|
3998
5354
|
*/
|
|
3999
|
-
export interface
|
|
5355
|
+
export interface Filter {
|
|
4000
5356
|
/**
|
|
4001
|
-
*
|
|
5357
|
+
* 筛选维度
|
|
4002
5358
|
*/
|
|
4003
|
-
|
|
5359
|
+
Key: string
|
|
4004
5360
|
|
|
4005
5361
|
/**
|
|
4006
|
-
*
|
|
5362
|
+
* 操作符
|
|
4007
5363
|
*/
|
|
4008
|
-
|
|
5364
|
+
Operator: string
|
|
5365
|
+
|
|
5366
|
+
/**
|
|
5367
|
+
* 筛选维度值
|
|
5368
|
+
*/
|
|
5369
|
+
Value: Array<string>
|
|
5370
|
+
}
|
|
5371
|
+
|
|
5372
|
+
/**
|
|
5373
|
+
* DescribeWebManagedRulesAttackEvents请求参数结构体
|
|
5374
|
+
*/
|
|
5375
|
+
export interface DescribeWebManagedRulesAttackEventsRequest {
|
|
5376
|
+
/**
|
|
5377
|
+
* 开始时间
|
|
5378
|
+
*/
|
|
5379
|
+
StartTime: string
|
|
5380
|
+
|
|
5381
|
+
/**
|
|
5382
|
+
* 结束时间
|
|
5383
|
+
*/
|
|
5384
|
+
EndTime: string
|
|
5385
|
+
|
|
5386
|
+
/**
|
|
5387
|
+
* 条数
|
|
5388
|
+
*/
|
|
5389
|
+
PageSize: number
|
|
5390
|
+
|
|
5391
|
+
/**
|
|
5392
|
+
* 当前页
|
|
5393
|
+
*/
|
|
5394
|
+
PageNo: number
|
|
5395
|
+
|
|
5396
|
+
/**
|
|
5397
|
+
* ddos策略组id列表
|
|
5398
|
+
*/
|
|
5399
|
+
PolicyIds?: Array<number>
|
|
5400
|
+
|
|
5401
|
+
/**
|
|
5402
|
+
* 站点集合
|
|
5403
|
+
*/
|
|
5404
|
+
ZoneIds?: Array<string>
|
|
5405
|
+
|
|
5406
|
+
/**
|
|
5407
|
+
* 子域名列表
|
|
5408
|
+
*/
|
|
5409
|
+
Domains?: Array<string>
|
|
5410
|
+
|
|
5411
|
+
/**
|
|
5412
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
5413
|
+
*/
|
|
5414
|
+
IsShowDetail?: string
|
|
4009
5415
|
}
|
|
4010
5416
|
|
|
4011
5417
|
/**
|
|
@@ -4204,44 +5610,114 @@ export interface DeleteLoadBalancingRequest {
|
|
|
4204
5610
|
}
|
|
4205
5611
|
|
|
4206
5612
|
/**
|
|
4207
|
-
*
|
|
5613
|
+
* DescribeTimingL7AnalysisData请求参数结构体
|
|
4208
5614
|
*/
|
|
4209
|
-
export interface
|
|
5615
|
+
export interface DescribeTimingL7AnalysisDataRequest {
|
|
4210
5616
|
/**
|
|
4211
|
-
*
|
|
5617
|
+
* RFC3339标准,客户端时间
|
|
4212
5618
|
*/
|
|
4213
|
-
|
|
5619
|
+
StartTime: string
|
|
4214
5620
|
|
|
4215
5621
|
/**
|
|
4216
|
-
*
|
|
5622
|
+
* RFC3339标准,客户端时间
|
|
4217
5623
|
*/
|
|
4218
|
-
|
|
5624
|
+
EndTime: string
|
|
4219
5625
|
|
|
4220
5626
|
/**
|
|
4221
|
-
*
|
|
5627
|
+
* 时序类访问流量指标
|
|
4222
5628
|
*/
|
|
4223
|
-
|
|
5629
|
+
MetricNames: Array<string>
|
|
4224
5630
|
|
|
4225
5631
|
/**
|
|
4226
|
-
*
|
|
5632
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
4227
5633
|
*/
|
|
4228
|
-
|
|
5634
|
+
Interval: string
|
|
5635
|
+
|
|
5636
|
+
/**
|
|
5637
|
+
* ZoneId数组
|
|
5638
|
+
*/
|
|
5639
|
+
ZoneIds?: Array<string>
|
|
5640
|
+
|
|
5641
|
+
/**
|
|
5642
|
+
* 筛选条件
|
|
5643
|
+
*/
|
|
5644
|
+
Filters?: Array<Filter>
|
|
4229
5645
|
}
|
|
4230
5646
|
|
|
4231
5647
|
/**
|
|
4232
|
-
*
|
|
5648
|
+
* DescribeSecurityPolicyManagedRulesId返回参数结构体
|
|
4233
5649
|
*/
|
|
4234
|
-
export interface
|
|
5650
|
+
export interface DescribeSecurityPolicyManagedRulesIdResponse {
|
|
4235
5651
|
/**
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
ProxyId?: string
|
|
5652
|
+
* 返回总数
|
|
5653
|
+
*/
|
|
5654
|
+
Total: number
|
|
4240
5655
|
|
|
4241
5656
|
/**
|
|
4242
|
-
*
|
|
5657
|
+
* 门神规则
|
|
4243
5658
|
*/
|
|
4244
|
-
|
|
5659
|
+
Rules: Array<ManagedRule>
|
|
5660
|
+
|
|
5661
|
+
/**
|
|
5662
|
+
* 返回总数
|
|
5663
|
+
*/
|
|
5664
|
+
Count: number
|
|
5665
|
+
|
|
5666
|
+
/**
|
|
5667
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5668
|
+
*/
|
|
5669
|
+
RequestId?: string
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
/**
|
|
5673
|
+
* web事件数据
|
|
5674
|
+
*/
|
|
5675
|
+
export interface WebEventData {
|
|
5676
|
+
/**
|
|
5677
|
+
* 攻击事件数据集合
|
|
5678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5679
|
+
*/
|
|
5680
|
+
List: Array<WebAttackEvent>
|
|
5681
|
+
|
|
5682
|
+
/**
|
|
5683
|
+
* 当前页
|
|
5684
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5685
|
+
*/
|
|
5686
|
+
PageNo: number
|
|
5687
|
+
|
|
5688
|
+
/**
|
|
5689
|
+
* 每页展示条数
|
|
5690
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5691
|
+
*/
|
|
5692
|
+
PageSize: number
|
|
5693
|
+
|
|
5694
|
+
/**
|
|
5695
|
+
* 总页数
|
|
5696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5697
|
+
*/
|
|
5698
|
+
Pages: number
|
|
5699
|
+
|
|
5700
|
+
/**
|
|
5701
|
+
* 总条数
|
|
5702
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5703
|
+
*/
|
|
5704
|
+
TotalSize: number
|
|
5705
|
+
}
|
|
5706
|
+
|
|
5707
|
+
/**
|
|
5708
|
+
* 应用代理实例
|
|
5709
|
+
*/
|
|
5710
|
+
export interface ApplicationProxy {
|
|
5711
|
+
/**
|
|
5712
|
+
* 实例ID
|
|
5713
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5714
|
+
*/
|
|
5715
|
+
ProxyId?: string
|
|
5716
|
+
|
|
5717
|
+
/**
|
|
5718
|
+
* 实例名称
|
|
5719
|
+
*/
|
|
5720
|
+
ProxyName: string
|
|
4245
5721
|
|
|
4246
5722
|
/**
|
|
4247
5723
|
* 调度模式:
|
|
@@ -4446,6 +5922,32 @@ export interface DescribeSecurityPolicyListRequest {
|
|
|
4446
5922
|
ZoneId: string
|
|
4447
5923
|
}
|
|
4448
5924
|
|
|
5925
|
+
/**
|
|
5926
|
+
* DescribeTimingL7CacheData返回参数结构体
|
|
5927
|
+
*/
|
|
5928
|
+
export interface DescribeTimingL7CacheDataResponse {
|
|
5929
|
+
/**
|
|
5930
|
+
* 详细数据
|
|
5931
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5932
|
+
*/
|
|
5933
|
+
Data: Array<TimingDataRecord>
|
|
5934
|
+
|
|
5935
|
+
/**
|
|
5936
|
+
* 查询维度
|
|
5937
|
+
*/
|
|
5938
|
+
Type: string
|
|
5939
|
+
|
|
5940
|
+
/**
|
|
5941
|
+
* 时间间隔
|
|
5942
|
+
*/
|
|
5943
|
+
Interval: string
|
|
5944
|
+
|
|
5945
|
+
/**
|
|
5946
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5947
|
+
*/
|
|
5948
|
+
RequestId?: string
|
|
5949
|
+
}
|
|
5950
|
+
|
|
4449
5951
|
/**
|
|
4450
5952
|
* DescribeApplicationProxyDetail请求参数结构体
|
|
4451
5953
|
*/
|
|
@@ -4491,6 +5993,46 @@ export interface Header {
|
|
|
4491
5993
|
Value: string
|
|
4492
5994
|
}
|
|
4493
5995
|
|
|
5996
|
+
/**
|
|
5997
|
+
* 自定义名字服务器 IP 信息
|
|
5998
|
+
*/
|
|
5999
|
+
export interface VanityNameServersIps {
|
|
6000
|
+
/**
|
|
6001
|
+
* 自定义名字服务器名称
|
|
6002
|
+
*/
|
|
6003
|
+
Name: string
|
|
6004
|
+
|
|
6005
|
+
/**
|
|
6006
|
+
* 自定义名字服务器 IPv4 地址
|
|
6007
|
+
*/
|
|
6008
|
+
IPv4: string
|
|
6009
|
+
}
|
|
6010
|
+
|
|
6011
|
+
/**
|
|
6012
|
+
* DescribeDDosAttackSourceEvent返回参数结构体
|
|
6013
|
+
*/
|
|
6014
|
+
export interface DescribeDDosAttackSourceEventResponse {
|
|
6015
|
+
/**
|
|
6016
|
+
* DDos攻击源数据
|
|
6017
|
+
*/
|
|
6018
|
+
Data: DDosAttackSourceEventData
|
|
6019
|
+
|
|
6020
|
+
/**
|
|
6021
|
+
* 状态,1:失败,0:成功
|
|
6022
|
+
*/
|
|
6023
|
+
Status: number
|
|
6024
|
+
|
|
6025
|
+
/**
|
|
6026
|
+
* 返回信息
|
|
6027
|
+
*/
|
|
6028
|
+
Msg: string
|
|
6029
|
+
|
|
6030
|
+
/**
|
|
6031
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6032
|
+
*/
|
|
6033
|
+
RequestId?: string
|
|
6034
|
+
}
|
|
6035
|
+
|
|
4494
6036
|
/**
|
|
4495
6037
|
* DescribeZoneDetails请求参数结构体
|
|
4496
6038
|
*/
|
|
@@ -4517,24 +6059,70 @@ export interface DescribeDDoSPolicyRequest {
|
|
|
4517
6059
|
}
|
|
4518
6060
|
|
|
4519
6061
|
/**
|
|
4520
|
-
*
|
|
6062
|
+
* 安全数据Entry返回值
|
|
4521
6063
|
*/
|
|
4522
|
-
export interface
|
|
6064
|
+
export interface SecEntry {
|
|
4523
6065
|
/**
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
6066
|
+
* Entry的Key
|
|
6067
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6068
|
+
*/
|
|
6069
|
+
Key: string
|
|
4527
6070
|
|
|
4528
6071
|
/**
|
|
4529
|
-
*
|
|
6072
|
+
* Entry的Value
|
|
4530
6073
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4531
6074
|
*/
|
|
4532
|
-
|
|
6075
|
+
Value: Array<SecEntryValue>
|
|
6076
|
+
}
|
|
6077
|
+
|
|
6078
|
+
/**
|
|
6079
|
+
* DescribeDDosMajorAttackEvent请求参数结构体
|
|
6080
|
+
*/
|
|
6081
|
+
export interface DescribeDDosMajorAttackEventRequest {
|
|
6082
|
+
/**
|
|
6083
|
+
* 开始时间
|
|
6084
|
+
*/
|
|
6085
|
+
StartTime: string
|
|
4533
6086
|
|
|
4534
6087
|
/**
|
|
4535
|
-
*
|
|
6088
|
+
* 结束时间
|
|
4536
6089
|
*/
|
|
4537
|
-
|
|
6090
|
+
EndTime: string
|
|
6091
|
+
|
|
6092
|
+
/**
|
|
6093
|
+
* 条数
|
|
6094
|
+
*/
|
|
6095
|
+
PageSize: number
|
|
6096
|
+
|
|
6097
|
+
/**
|
|
6098
|
+
* 当前页
|
|
6099
|
+
*/
|
|
6100
|
+
PageNo: number
|
|
6101
|
+
|
|
6102
|
+
/**
|
|
6103
|
+
* ddos 策略组id集合
|
|
6104
|
+
*/
|
|
6105
|
+
PolicyIds?: Array<number>
|
|
6106
|
+
|
|
6107
|
+
/**
|
|
6108
|
+
* 协议类型,{tcp,udp,all}
|
|
6109
|
+
*/
|
|
6110
|
+
ProtocolType?: string
|
|
6111
|
+
|
|
6112
|
+
/**
|
|
6113
|
+
* 站点集合
|
|
6114
|
+
*/
|
|
6115
|
+
ZoneIds?: Array<string>
|
|
6116
|
+
}
|
|
6117
|
+
|
|
6118
|
+
/**
|
|
6119
|
+
* Quic配置项
|
|
6120
|
+
*/
|
|
6121
|
+
export interface Quic {
|
|
6122
|
+
/**
|
|
6123
|
+
* 是否启动Quic配置
|
|
6124
|
+
*/
|
|
6125
|
+
Switch: string
|
|
4538
6126
|
}
|
|
4539
6127
|
|
|
4540
6128
|
/**
|
|
@@ -4612,6 +6200,41 @@ excludeCustom:排除部分url参数
|
|
|
4612
6200
|
*/
|
|
4613
6201
|
export type DescribeSecurityPolicyRegionsRequest = null
|
|
4614
6202
|
|
|
6203
|
+
/**
|
|
6204
|
+
* 安全数据Entry对应的值
|
|
6205
|
+
*/
|
|
6206
|
+
export interface SecEntryValue {
|
|
6207
|
+
/**
|
|
6208
|
+
* 指标名称
|
|
6209
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6210
|
+
*/
|
|
6211
|
+
Metric: string
|
|
6212
|
+
|
|
6213
|
+
/**
|
|
6214
|
+
* 指标数据明细
|
|
6215
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6216
|
+
*/
|
|
6217
|
+
Detail: Array<TimingDataItem>
|
|
6218
|
+
|
|
6219
|
+
/**
|
|
6220
|
+
* 最大值
|
|
6221
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6222
|
+
*/
|
|
6223
|
+
Max: number
|
|
6224
|
+
|
|
6225
|
+
/**
|
|
6226
|
+
* 平均值
|
|
6227
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6228
|
+
*/
|
|
6229
|
+
Avg: number
|
|
6230
|
+
|
|
6231
|
+
/**
|
|
6232
|
+
* 数据总和
|
|
6233
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6234
|
+
*/
|
|
6235
|
+
Sum: number
|
|
6236
|
+
}
|
|
6237
|
+
|
|
4615
6238
|
/**
|
|
4616
6239
|
* ReclaimZone请求参数结构体
|
|
4617
6240
|
*/
|
|
@@ -4729,6 +6352,51 @@ export interface ModifyDefaultCertificateResponse {
|
|
|
4729
6352
|
RequestId?: string
|
|
4730
6353
|
}
|
|
4731
6354
|
|
|
6355
|
+
/**
|
|
6356
|
+
* DescribeDDosAttackEvent请求参数结构体
|
|
6357
|
+
*/
|
|
6358
|
+
export interface DescribeDDosAttackEventRequest {
|
|
6359
|
+
/**
|
|
6360
|
+
* 开始时间
|
|
6361
|
+
*/
|
|
6362
|
+
StartTime: string
|
|
6363
|
+
|
|
6364
|
+
/**
|
|
6365
|
+
* 结束时间
|
|
6366
|
+
*/
|
|
6367
|
+
EndTime: string
|
|
6368
|
+
|
|
6369
|
+
/**
|
|
6370
|
+
* 条数
|
|
6371
|
+
*/
|
|
6372
|
+
PageSize: number
|
|
6373
|
+
|
|
6374
|
+
/**
|
|
6375
|
+
* 当前页
|
|
6376
|
+
*/
|
|
6377
|
+
PageNo: number
|
|
6378
|
+
|
|
6379
|
+
/**
|
|
6380
|
+
* ddos策略组id 集合
|
|
6381
|
+
*/
|
|
6382
|
+
PolicyIds?: Array<number>
|
|
6383
|
+
|
|
6384
|
+
/**
|
|
6385
|
+
* 站点集合
|
|
6386
|
+
*/
|
|
6387
|
+
ZoneIds?: Array<string>
|
|
6388
|
+
|
|
6389
|
+
/**
|
|
6390
|
+
* 协议类型,{tcp,udp,all}
|
|
6391
|
+
*/
|
|
6392
|
+
ProtocolType?: string
|
|
6393
|
+
|
|
6394
|
+
/**
|
|
6395
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
6396
|
+
*/
|
|
6397
|
+
IsShowDetail?: string
|
|
6398
|
+
}
|
|
6399
|
+
|
|
4732
6400
|
/**
|
|
4733
6401
|
* 客户端IP头部
|
|
4734
6402
|
*/
|
|
@@ -4905,6 +6573,24 @@ smart_status_observe-观察处置
|
|
|
4905
6573
|
Mode?: string
|
|
4906
6574
|
}
|
|
4907
6575
|
|
|
6576
|
+
/**
|
|
6577
|
+
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
6578
|
+
*/
|
|
6579
|
+
export interface MaxAge {
|
|
6580
|
+
/**
|
|
6581
|
+
* MaxAge 时间设置,单位秒,最大365天
|
|
6582
|
+
注意:时间为0,即不缓存。
|
|
6583
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6584
|
+
*/
|
|
6585
|
+
MaxAgeTime?: number
|
|
6586
|
+
|
|
6587
|
+
/**
|
|
6588
|
+
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
6589
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6590
|
+
*/
|
|
6591
|
+
FollowOrigin?: string
|
|
6592
|
+
}
|
|
6593
|
+
|
|
4908
6594
|
/**
|
|
4909
6595
|
* DescribePurgeTasks请求参数结构体
|
|
4910
6596
|
*/
|
|
@@ -4962,27 +6648,67 @@ export interface DescribePurgeTasksRequest {
|
|
|
4962
6648
|
}
|
|
4963
6649
|
|
|
4964
6650
|
/**
|
|
4965
|
-
*
|
|
6651
|
+
* 查询条件
|
|
4966
6652
|
*/
|
|
4967
|
-
export interface
|
|
6653
|
+
export interface QueryCondition {
|
|
4968
6654
|
/**
|
|
4969
|
-
*
|
|
6655
|
+
* 维度
|
|
4970
6656
|
*/
|
|
4971
|
-
|
|
6657
|
+
Key: string
|
|
6658
|
+
|
|
6659
|
+
/**
|
|
6660
|
+
* 操作符
|
|
6661
|
+
*/
|
|
6662
|
+
Operator: string
|
|
6663
|
+
|
|
6664
|
+
/**
|
|
6665
|
+
* 维度值
|
|
6666
|
+
*/
|
|
6667
|
+
Value: Array<string>
|
|
4972
6668
|
}
|
|
4973
6669
|
|
|
4974
6670
|
/**
|
|
4975
|
-
*
|
|
6671
|
+
* DescribeDnsData请求参数结构体
|
|
4976
6672
|
*/
|
|
4977
|
-
export interface
|
|
6673
|
+
export interface DescribeDnsDataRequest {
|
|
4978
6674
|
/**
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
Cache?: CacheConfigCache
|
|
6675
|
+
* 起始时间
|
|
6676
|
+
*/
|
|
6677
|
+
StartTime: string
|
|
4983
6678
|
|
|
4984
6679
|
/**
|
|
4985
|
-
|
|
6680
|
+
* 结束时间
|
|
6681
|
+
*/
|
|
6682
|
+
EndTime: string
|
|
6683
|
+
|
|
6684
|
+
/**
|
|
6685
|
+
* 过滤参数
|
|
6686
|
+
*/
|
|
6687
|
+
Filters?: Array<DnsDataFilter>
|
|
6688
|
+
|
|
6689
|
+
/**
|
|
6690
|
+
* 时间粒度,默认为1分钟粒度,服务端根据时间范围自适应。
|
|
6691
|
+
支持指定以下几种粒度:
|
|
6692
|
+
min:1分钟粒度
|
|
6693
|
+
5min:5分钟粒度
|
|
6694
|
+
hour:1小时粒度
|
|
6695
|
+
day:天粒度
|
|
6696
|
+
*/
|
|
6697
|
+
Interval?: string
|
|
6698
|
+
}
|
|
6699
|
+
|
|
6700
|
+
/**
|
|
6701
|
+
* 缓存规则配置。
|
|
6702
|
+
*/
|
|
6703
|
+
export interface CacheConfig {
|
|
6704
|
+
/**
|
|
6705
|
+
* 缓存配置
|
|
6706
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6707
|
+
*/
|
|
6708
|
+
Cache?: CacheConfigCache
|
|
6709
|
+
|
|
6710
|
+
/**
|
|
6711
|
+
* 不缓存配置
|
|
4986
6712
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4987
6713
|
*/
|
|
4988
6714
|
NoCache?: CacheConfigNoCache
|
|
@@ -4994,6 +6720,98 @@ export interface CacheConfig {
|
|
|
4994
6720
|
FollowOrigin?: CacheConfigFollowOrigin
|
|
4995
6721
|
}
|
|
4996
6722
|
|
|
6723
|
+
/**
|
|
6724
|
+
* DescribeDDosAttackEventDetail返回参数结构体
|
|
6725
|
+
*/
|
|
6726
|
+
export interface DescribeDDosAttackEventDetailResponse {
|
|
6727
|
+
/**
|
|
6728
|
+
* DDos攻击事件详情
|
|
6729
|
+
*/
|
|
6730
|
+
Data: DDosAttackEventDetailData
|
|
6731
|
+
|
|
6732
|
+
/**
|
|
6733
|
+
* 状态,1:失败,0:成功
|
|
6734
|
+
*/
|
|
6735
|
+
Status: number
|
|
6736
|
+
|
|
6737
|
+
/**
|
|
6738
|
+
* 返回信息
|
|
6739
|
+
*/
|
|
6740
|
+
Msg: string
|
|
6741
|
+
|
|
6742
|
+
/**
|
|
6743
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6744
|
+
*/
|
|
6745
|
+
RequestId?: string
|
|
6746
|
+
}
|
|
6747
|
+
|
|
6748
|
+
/**
|
|
6749
|
+
* ModifyApplicationProxyRule请求参数结构体
|
|
6750
|
+
*/
|
|
6751
|
+
export interface ModifyApplicationProxyRuleRequest {
|
|
6752
|
+
/**
|
|
6753
|
+
* 站点ID
|
|
6754
|
+
*/
|
|
6755
|
+
ZoneId: string
|
|
6756
|
+
|
|
6757
|
+
/**
|
|
6758
|
+
* 代理ID
|
|
6759
|
+
*/
|
|
6760
|
+
ProxyId: string
|
|
6761
|
+
|
|
6762
|
+
/**
|
|
6763
|
+
* 规则ID
|
|
6764
|
+
*/
|
|
6765
|
+
RuleId: string
|
|
6766
|
+
|
|
6767
|
+
/**
|
|
6768
|
+
* 协议,取值为TCP或者UDP
|
|
6769
|
+
*/
|
|
6770
|
+
Proto: string
|
|
6771
|
+
|
|
6772
|
+
/**
|
|
6773
|
+
* 端口,支持格式:
|
|
6774
|
+
80:80端口
|
|
6775
|
+
81-90:81至90端口
|
|
6776
|
+
*/
|
|
6777
|
+
Port: Array<string>
|
|
6778
|
+
|
|
6779
|
+
/**
|
|
6780
|
+
* 源站类型,取值:
|
|
6781
|
+
custom:手动添加
|
|
6782
|
+
origins:源站组
|
|
6783
|
+
load_balancing:负载均衡
|
|
6784
|
+
*/
|
|
6785
|
+
OriginType: string
|
|
6786
|
+
|
|
6787
|
+
/**
|
|
6788
|
+
* 源站信息:
|
|
6789
|
+
当OriginType=custom时,表示多个:
|
|
6790
|
+
IP:端口
|
|
6791
|
+
域名:端口
|
|
6792
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
6793
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
6794
|
+
*/
|
|
6795
|
+
OriginValue: Array<string>
|
|
6796
|
+
|
|
6797
|
+
/**
|
|
6798
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
6799
|
+
TOA:TOA
|
|
6800
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
6801
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
6802
|
+
OFF:不传递
|
|
6803
|
+
当Proto=UDP时,取值:
|
|
6804
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
6805
|
+
OFF:不传递
|
|
6806
|
+
*/
|
|
6807
|
+
ForwardClientIp?: string
|
|
6808
|
+
|
|
6809
|
+
/**
|
|
6810
|
+
* 是否开启会话保持
|
|
6811
|
+
*/
|
|
6812
|
+
SessionPersist?: boolean
|
|
6813
|
+
}
|
|
6814
|
+
|
|
4997
6815
|
/**
|
|
4998
6816
|
* ModifyDDoSPolicy请求参数结构体
|
|
4999
6817
|
*/
|
|
@@ -5047,43 +6865,164 @@ export interface ModifyZoneCnameSpeedUpResponse {
|
|
|
5047
6865
|
}
|
|
5048
6866
|
|
|
5049
6867
|
/**
|
|
5050
|
-
*
|
|
6868
|
+
* DescribeWebProtectionLog请求参数结构体
|
|
5051
6869
|
*/
|
|
5052
|
-
export interface
|
|
6870
|
+
export interface DescribeWebProtectionLogRequest {
|
|
5053
6871
|
/**
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
*/
|
|
5058
|
-
Name: string
|
|
6872
|
+
* 起始时间
|
|
6873
|
+
*/
|
|
6874
|
+
StartTime: string
|
|
5059
6875
|
|
|
5060
6876
|
/**
|
|
5061
|
-
*
|
|
6877
|
+
* 结束时间
|
|
5062
6878
|
*/
|
|
5063
|
-
|
|
6879
|
+
EndTime: string
|
|
5064
6880
|
|
|
5065
6881
|
/**
|
|
5066
|
-
*
|
|
6882
|
+
* 每页条数
|
|
5067
6883
|
*/
|
|
5068
|
-
|
|
6884
|
+
PageSize: number
|
|
6885
|
+
|
|
6886
|
+
/**
|
|
6887
|
+
* 当前页
|
|
6888
|
+
*/
|
|
6889
|
+
PageNo: number
|
|
6890
|
+
|
|
6891
|
+
/**
|
|
6892
|
+
* 站点集合
|
|
6893
|
+
*/
|
|
6894
|
+
ZoneIds?: Array<string>
|
|
6895
|
+
|
|
6896
|
+
/**
|
|
6897
|
+
* 域名集合
|
|
6898
|
+
*/
|
|
6899
|
+
Domains?: Array<string>
|
|
6900
|
+
|
|
6901
|
+
/**
|
|
6902
|
+
* 查询条件
|
|
6903
|
+
*/
|
|
6904
|
+
QueryCondition?: Array<QueryCondition>
|
|
5069
6905
|
}
|
|
5070
6906
|
|
|
5071
6907
|
/**
|
|
5072
|
-
*
|
|
6908
|
+
* 限速拦截日志
|
|
5073
6909
|
*/
|
|
5074
|
-
export interface
|
|
6910
|
+
export interface CCLogData {
|
|
5075
6911
|
/**
|
|
5076
|
-
*
|
|
5077
|
-
注意:时间为0,即不缓存。
|
|
6912
|
+
* CC拦截日志数据集合
|
|
5078
6913
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5079
6914
|
*/
|
|
5080
|
-
|
|
6915
|
+
List: Array<CCLog>
|
|
5081
6916
|
|
|
5082
6917
|
/**
|
|
5083
|
-
*
|
|
6918
|
+
* 当前页
|
|
5084
6919
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5085
6920
|
*/
|
|
5086
|
-
|
|
6921
|
+
PageNo: number
|
|
6922
|
+
|
|
6923
|
+
/**
|
|
6924
|
+
* 每页展示条数
|
|
6925
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6926
|
+
*/
|
|
6927
|
+
PageSize: number
|
|
6928
|
+
|
|
6929
|
+
/**
|
|
6930
|
+
* 总页数
|
|
6931
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6932
|
+
*/
|
|
6933
|
+
Pages: number
|
|
6934
|
+
|
|
6935
|
+
/**
|
|
6936
|
+
* 总条数
|
|
6937
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6938
|
+
*/
|
|
6939
|
+
TotalSize: number
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6942
|
+
/**
|
|
6943
|
+
* DescribePrefetchTasks请求参数结构体
|
|
6944
|
+
*/
|
|
6945
|
+
export interface DescribePrefetchTasksRequest {
|
|
6946
|
+
/**
|
|
6947
|
+
* 任务ID
|
|
6948
|
+
*/
|
|
6949
|
+
JobId?: string
|
|
6950
|
+
|
|
6951
|
+
/**
|
|
6952
|
+
* 查询起始时间
|
|
6953
|
+
*/
|
|
6954
|
+
StartTime?: string
|
|
6955
|
+
|
|
6956
|
+
/**
|
|
6957
|
+
* 查询结束时间
|
|
6958
|
+
*/
|
|
6959
|
+
EndTime?: string
|
|
6960
|
+
|
|
6961
|
+
/**
|
|
6962
|
+
* 查询起始偏移量
|
|
6963
|
+
*/
|
|
6964
|
+
Offset?: number
|
|
6965
|
+
|
|
6966
|
+
/**
|
|
6967
|
+
* 查询最大返回的结果条数
|
|
6968
|
+
*/
|
|
6969
|
+
Limit?: number
|
|
6970
|
+
|
|
6971
|
+
/**
|
|
6972
|
+
* 查询的状态
|
|
6973
|
+
允许的值为:processing、success、failed、timeout、invalid
|
|
6974
|
+
*/
|
|
6975
|
+
Statuses?: Array<string>
|
|
6976
|
+
|
|
6977
|
+
/**
|
|
6978
|
+
* zone id
|
|
6979
|
+
*/
|
|
6980
|
+
ZoneId?: string
|
|
6981
|
+
|
|
6982
|
+
/**
|
|
6983
|
+
* 查询的域名列表
|
|
6984
|
+
*/
|
|
6985
|
+
Domains?: Array<string>
|
|
6986
|
+
|
|
6987
|
+
/**
|
|
6988
|
+
* 查询的资源
|
|
6989
|
+
*/
|
|
6990
|
+
Target?: string
|
|
6991
|
+
}
|
|
6992
|
+
|
|
6993
|
+
/**
|
|
6994
|
+
* 内容管理任务结果
|
|
6995
|
+
*/
|
|
6996
|
+
export interface Task {
|
|
6997
|
+
/**
|
|
6998
|
+
* 任务ID
|
|
6999
|
+
*/
|
|
7000
|
+
JobId: string
|
|
7001
|
+
|
|
7002
|
+
/**
|
|
7003
|
+
* 状态
|
|
7004
|
+
*/
|
|
7005
|
+
Status: string
|
|
7006
|
+
|
|
7007
|
+
/**
|
|
7008
|
+
* 资源
|
|
7009
|
+
*/
|
|
7010
|
+
Target: string
|
|
7011
|
+
|
|
7012
|
+
/**
|
|
7013
|
+
* 任务类型
|
|
7014
|
+
*/
|
|
7015
|
+
Type: string
|
|
7016
|
+
|
|
7017
|
+
/**
|
|
7018
|
+
* 任务创建时间
|
|
7019
|
+
*/
|
|
7020
|
+
CreateTime: string
|
|
7021
|
+
|
|
7022
|
+
/**
|
|
7023
|
+
* 任务完成时间
|
|
7024
|
+
*/
|
|
7025
|
+
UpdateTime: string
|
|
5087
7026
|
}
|
|
5088
7027
|
|
|
5089
7028
|
/**
|
|
@@ -5160,48 +7099,52 @@ export interface DescribeZoneDDoSPolicyResponse {
|
|
|
5160
7099
|
}
|
|
5161
7100
|
|
|
5162
7101
|
/**
|
|
5163
|
-
*
|
|
7102
|
+
* CNAME 状态
|
|
5164
7103
|
*/
|
|
5165
|
-
export interface
|
|
7104
|
+
export interface CnameStatus {
|
|
5166
7105
|
/**
|
|
5167
|
-
*
|
|
7106
|
+
* 记录名称
|
|
5168
7107
|
*/
|
|
5169
|
-
|
|
7108
|
+
Name: string
|
|
5170
7109
|
|
|
5171
7110
|
/**
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
7111
|
+
* CNAME 地址
|
|
7112
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7113
|
+
*/
|
|
7114
|
+
Cname: string
|
|
7115
|
+
|
|
7116
|
+
/**
|
|
7117
|
+
* 状态
|
|
7118
|
+
生效:active
|
|
7119
|
+
不生效:moved
|
|
7120
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7121
|
+
*/
|
|
7122
|
+
Status: string
|
|
5175
7123
|
}
|
|
5176
7124
|
|
|
5177
7125
|
/**
|
|
5178
|
-
*
|
|
7126
|
+
* DescribeDDosMajorAttackEvent返回参数结构体
|
|
5179
7127
|
*/
|
|
5180
|
-
export interface
|
|
7128
|
+
export interface DescribeDDosMajorAttackEventResponse {
|
|
5181
7129
|
/**
|
|
5182
|
-
*
|
|
7130
|
+
* DDos查询主攻击事件
|
|
5183
7131
|
*/
|
|
5184
|
-
|
|
7132
|
+
Data: DDosMajorAttackEventData
|
|
5185
7133
|
|
|
5186
7134
|
/**
|
|
5187
|
-
*
|
|
7135
|
+
* 状态,1:失败,0:成功
|
|
5188
7136
|
*/
|
|
5189
|
-
|
|
7137
|
+
Status: number
|
|
5190
7138
|
|
|
5191
7139
|
/**
|
|
5192
|
-
*
|
|
7140
|
+
* 返回消息
|
|
5193
7141
|
*/
|
|
5194
|
-
|
|
7142
|
+
Msg: string
|
|
5195
7143
|
|
|
5196
7144
|
/**
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
5min:5分钟粒度
|
|
5201
|
-
hour:1小时粒度
|
|
5202
|
-
day:天粒度
|
|
5203
|
-
*/
|
|
5204
|
-
Interval?: string
|
|
7145
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7146
|
+
*/
|
|
7147
|
+
RequestId?: string
|
|
5205
7148
|
}
|
|
5206
7149
|
|
|
5207
7150
|
/**
|
|
@@ -5314,6 +7257,31 @@ export interface DDoSFeaturesFilter {
|
|
|
5314
7257
|
MatchBegin2?: string
|
|
5315
7258
|
}
|
|
5316
7259
|
|
|
7260
|
+
/**
|
|
7261
|
+
* DescribeWebProtectionAttackEvents返回参数结构体
|
|
7262
|
+
*/
|
|
7263
|
+
export interface DescribeWebProtectionAttackEventsResponse {
|
|
7264
|
+
/**
|
|
7265
|
+
* DDos攻击事件数据
|
|
7266
|
+
*/
|
|
7267
|
+
Data: CCInterceptEventData
|
|
7268
|
+
|
|
7269
|
+
/**
|
|
7270
|
+
* 状态,1:失败,0:成功
|
|
7271
|
+
*/
|
|
7272
|
+
Status: number
|
|
7273
|
+
|
|
7274
|
+
/**
|
|
7275
|
+
* 返回消息
|
|
7276
|
+
*/
|
|
7277
|
+
Msg: string
|
|
7278
|
+
|
|
7279
|
+
/**
|
|
7280
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7281
|
+
*/
|
|
7282
|
+
RequestId?: string
|
|
7283
|
+
}
|
|
7284
|
+
|
|
5317
7285
|
/**
|
|
5318
7286
|
* CreatePurgeTask请求参数结构体
|
|
5319
7287
|
*/
|
|
@@ -5449,6 +7417,46 @@ instance:实例
|
|
|
5449
7417
|
RequestId?: string
|
|
5450
7418
|
}
|
|
5451
7419
|
|
|
7420
|
+
/**
|
|
7421
|
+
* DescribeBotLog请求参数结构体
|
|
7422
|
+
*/
|
|
7423
|
+
export interface DescribeBotLogRequest {
|
|
7424
|
+
/**
|
|
7425
|
+
* 起始时间
|
|
7426
|
+
*/
|
|
7427
|
+
StartTime: string
|
|
7428
|
+
|
|
7429
|
+
/**
|
|
7430
|
+
* 结束时间
|
|
7431
|
+
*/
|
|
7432
|
+
EndTime: string
|
|
7433
|
+
|
|
7434
|
+
/**
|
|
7435
|
+
* 每页条数
|
|
7436
|
+
*/
|
|
7437
|
+
PageSize: number
|
|
7438
|
+
|
|
7439
|
+
/**
|
|
7440
|
+
* 当前页
|
|
7441
|
+
*/
|
|
7442
|
+
PageNo: number
|
|
7443
|
+
|
|
7444
|
+
/**
|
|
7445
|
+
* 站点集合
|
|
7446
|
+
*/
|
|
7447
|
+
ZoneIds?: Array<string>
|
|
7448
|
+
|
|
7449
|
+
/**
|
|
7450
|
+
* 域名集合
|
|
7451
|
+
*/
|
|
7452
|
+
Domains?: Array<string>
|
|
7453
|
+
|
|
7454
|
+
/**
|
|
7455
|
+
* 查询条件
|
|
7456
|
+
*/
|
|
7457
|
+
QueryCondition?: Array<QueryCondition>
|
|
7458
|
+
}
|
|
7459
|
+
|
|
5452
7460
|
/**
|
|
5453
7461
|
* DownloadL7Logs返回参数结构体
|
|
5454
7462
|
*/
|
|
@@ -5460,118 +7468,334 @@ export interface DownloadL7LogsResponse {
|
|
|
5460
7468
|
Data: Array<L7OfflineLog>
|
|
5461
7469
|
|
|
5462
7470
|
/**
|
|
5463
|
-
* 页面大小
|
|
5464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5465
|
-
*/
|
|
7471
|
+
* 页面大小
|
|
7472
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7473
|
+
*/
|
|
7474
|
+
PageSize: number
|
|
7475
|
+
|
|
7476
|
+
/**
|
|
7477
|
+
* 页号
|
|
7478
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7479
|
+
*/
|
|
7480
|
+
PageNo: number
|
|
7481
|
+
|
|
7482
|
+
/**
|
|
7483
|
+
* 总页数
|
|
7484
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7485
|
+
*/
|
|
7486
|
+
Pages: number
|
|
7487
|
+
|
|
7488
|
+
/**
|
|
7489
|
+
* 总条数
|
|
7490
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7491
|
+
*/
|
|
7492
|
+
TotalSize: number
|
|
7493
|
+
|
|
7494
|
+
/**
|
|
7495
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7496
|
+
*/
|
|
7497
|
+
RequestId?: string
|
|
7498
|
+
}
|
|
7499
|
+
|
|
7500
|
+
/**
|
|
7501
|
+
* ddos 攻击事件的详情
|
|
7502
|
+
*/
|
|
7503
|
+
export interface DDosAttackEventDetailData {
|
|
7504
|
+
/**
|
|
7505
|
+
* 攻击状态
|
|
7506
|
+
*/
|
|
7507
|
+
AttackStatus: number
|
|
7508
|
+
|
|
7509
|
+
/**
|
|
7510
|
+
* 攻击类型
|
|
7511
|
+
*/
|
|
7512
|
+
AttackType: string
|
|
7513
|
+
|
|
7514
|
+
/**
|
|
7515
|
+
* 结束时间
|
|
7516
|
+
*/
|
|
7517
|
+
EndTime: number
|
|
7518
|
+
|
|
7519
|
+
/**
|
|
7520
|
+
* 开始时间
|
|
7521
|
+
*/
|
|
7522
|
+
StartTime: number
|
|
7523
|
+
|
|
7524
|
+
/**
|
|
7525
|
+
* 最大带宽
|
|
7526
|
+
*/
|
|
7527
|
+
MaxBandWidth: number
|
|
7528
|
+
|
|
7529
|
+
/**
|
|
7530
|
+
* 最大包速率
|
|
7531
|
+
*/
|
|
7532
|
+
PacketMaxRate: number
|
|
7533
|
+
|
|
7534
|
+
/**
|
|
7535
|
+
* 事件Id
|
|
7536
|
+
*/
|
|
7537
|
+
EventId: string
|
|
7538
|
+
|
|
7539
|
+
/**
|
|
7540
|
+
* ddos 策略组id
|
|
7541
|
+
*/
|
|
7542
|
+
PolicyId: number
|
|
7543
|
+
}
|
|
7544
|
+
|
|
7545
|
+
/**
|
|
7546
|
+
* CreateOriginGroup请求参数结构体
|
|
7547
|
+
*/
|
|
7548
|
+
export interface CreateOriginGroupRequest {
|
|
7549
|
+
/**
|
|
7550
|
+
* 源站组名称
|
|
7551
|
+
*/
|
|
7552
|
+
OriginName: string
|
|
7553
|
+
|
|
7554
|
+
/**
|
|
7555
|
+
* 配置类型,当OriginType=self 时,需要填写:
|
|
7556
|
+
area: 按区域配置
|
|
7557
|
+
weight: 按权重配置
|
|
7558
|
+
当OriginType=third_party 时,不需要填写
|
|
7559
|
+
*/
|
|
7560
|
+
Type: string
|
|
7561
|
+
|
|
7562
|
+
/**
|
|
7563
|
+
* 源站记录
|
|
7564
|
+
*/
|
|
7565
|
+
Record: Array<OriginRecord>
|
|
7566
|
+
|
|
7567
|
+
/**
|
|
7568
|
+
* 站点ID
|
|
7569
|
+
*/
|
|
7570
|
+
ZoneId: string
|
|
7571
|
+
|
|
7572
|
+
/**
|
|
7573
|
+
* 源站类型
|
|
7574
|
+
self:自有源站
|
|
7575
|
+
third_party:第三方源站
|
|
7576
|
+
*/
|
|
7577
|
+
OriginType?: string
|
|
7578
|
+
}
|
|
7579
|
+
|
|
7580
|
+
/**
|
|
7581
|
+
* DescribeTimingL4Data请求参数结构体
|
|
7582
|
+
*/
|
|
7583
|
+
export interface DescribeTimingL4DataRequest {
|
|
7584
|
+
/**
|
|
7585
|
+
* RFC3339格式,客户端时间
|
|
7586
|
+
*/
|
|
7587
|
+
StartTime: string
|
|
7588
|
+
|
|
7589
|
+
/**
|
|
7590
|
+
* RFC3339格式,客户端时间
|
|
7591
|
+
*/
|
|
7592
|
+
EndTime: string
|
|
7593
|
+
|
|
7594
|
+
/**
|
|
7595
|
+
* 指标列表
|
|
7596
|
+
*/
|
|
7597
|
+
MetricNames: Array<string>
|
|
7598
|
+
|
|
7599
|
+
/**
|
|
7600
|
+
* ZoneId列表,仅在zone/instance维度下查询时该参数有效
|
|
7601
|
+
*/
|
|
7602
|
+
ZoneIds?: Array<string>
|
|
7603
|
+
|
|
7604
|
+
/**
|
|
7605
|
+
* InstanceId列表,仅在Instance维度下查询时该参数有效
|
|
7606
|
+
*/
|
|
7607
|
+
InstanceIds?: Array<string>
|
|
7608
|
+
|
|
7609
|
+
/**
|
|
7610
|
+
* 协议类型, 该字段当前无效
|
|
7611
|
+
*/
|
|
7612
|
+
Protocol?: string
|
|
7613
|
+
|
|
7614
|
+
/**
|
|
7615
|
+
* 时间间隔,选填{min, 5min, hour, day}
|
|
7616
|
+
*/
|
|
7617
|
+
Interval?: string
|
|
7618
|
+
|
|
7619
|
+
/**
|
|
7620
|
+
* 规则ID,仅在instance维度有效
|
|
7621
|
+
*/
|
|
7622
|
+
RuleId?: string
|
|
7623
|
+
}
|
|
7624
|
+
|
|
7625
|
+
/**
|
|
7626
|
+
* DescribeHostsSetting请求参数结构体
|
|
7627
|
+
*/
|
|
7628
|
+
export interface DescribeHostsSettingRequest {
|
|
7629
|
+
/**
|
|
7630
|
+
* 站点ID
|
|
7631
|
+
*/
|
|
7632
|
+
ZoneId: string
|
|
7633
|
+
|
|
7634
|
+
/**
|
|
7635
|
+
* 分页查询偏移量,默认为 0
|
|
7636
|
+
*/
|
|
7637
|
+
Offset?: number
|
|
7638
|
+
|
|
7639
|
+
/**
|
|
7640
|
+
* 分页查询限制数目,默认为 100,最大可设置为 1000
|
|
7641
|
+
*/
|
|
7642
|
+
Limit?: number
|
|
7643
|
+
|
|
7644
|
+
/**
|
|
7645
|
+
* 指定域名查询
|
|
7646
|
+
*/
|
|
7647
|
+
Hosts?: Array<string>
|
|
7648
|
+
}
|
|
7649
|
+
|
|
7650
|
+
/**
|
|
7651
|
+
* DescribeZoneDDoSPolicy请求参数结构体
|
|
7652
|
+
*/
|
|
7653
|
+
export interface DescribeZoneDDoSPolicyRequest {
|
|
7654
|
+
/**
|
|
7655
|
+
* 一级域名id
|
|
7656
|
+
*/
|
|
7657
|
+
ZoneId?: string
|
|
7658
|
+
}
|
|
7659
|
+
|
|
7660
|
+
/**
|
|
7661
|
+
* DescribeDDosAttackData返回参数结构体
|
|
7662
|
+
*/
|
|
7663
|
+
export interface DescribeDDosAttackDataResponse {
|
|
7664
|
+
/**
|
|
7665
|
+
* DDos攻击数据
|
|
7666
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7667
|
+
*/
|
|
7668
|
+
Data: Array<SecEntry>
|
|
7669
|
+
|
|
7670
|
+
/**
|
|
7671
|
+
* 状态,1:失败,0:成功
|
|
7672
|
+
*/
|
|
7673
|
+
Status: number
|
|
7674
|
+
|
|
7675
|
+
/**
|
|
7676
|
+
* 返回数据
|
|
7677
|
+
*/
|
|
7678
|
+
Msg: string
|
|
7679
|
+
|
|
7680
|
+
/**
|
|
7681
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
7682
|
+
*/
|
|
7683
|
+
Interval: string
|
|
7684
|
+
|
|
7685
|
+
/**
|
|
7686
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7687
|
+
*/
|
|
7688
|
+
RequestId?: string
|
|
7689
|
+
}
|
|
7690
|
+
|
|
7691
|
+
/**
|
|
7692
|
+
* DescribeWebManagedRulesLog请求参数结构体
|
|
7693
|
+
*/
|
|
7694
|
+
export interface DescribeWebManagedRulesLogRequest {
|
|
7695
|
+
/**
|
|
7696
|
+
* 起始时间
|
|
7697
|
+
*/
|
|
7698
|
+
StartTime: string
|
|
7699
|
+
|
|
7700
|
+
/**
|
|
7701
|
+
* 结束时间
|
|
7702
|
+
*/
|
|
7703
|
+
EndTime: string
|
|
7704
|
+
|
|
7705
|
+
/**
|
|
7706
|
+
* 每页条数
|
|
7707
|
+
*/
|
|
5466
7708
|
PageSize: number
|
|
5467
7709
|
|
|
5468
7710
|
/**
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
*/
|
|
7711
|
+
* 当前页
|
|
7712
|
+
*/
|
|
5472
7713
|
PageNo: number
|
|
5473
7714
|
|
|
5474
7715
|
/**
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
Pages: number
|
|
7716
|
+
* 站点集合
|
|
7717
|
+
*/
|
|
7718
|
+
ZoneIds?: Array<string>
|
|
5479
7719
|
|
|
5480
7720
|
/**
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
TotalSize: number
|
|
7721
|
+
* 域名集合
|
|
7722
|
+
*/
|
|
7723
|
+
Domains?: Array<string>
|
|
5485
7724
|
|
|
5486
7725
|
/**
|
|
5487
|
-
*
|
|
7726
|
+
* 查询条件
|
|
5488
7727
|
*/
|
|
5489
|
-
|
|
7728
|
+
QueryCondition?: Array<QueryCondition>
|
|
5490
7729
|
}
|
|
5491
7730
|
|
|
5492
7731
|
/**
|
|
5493
|
-
*
|
|
7732
|
+
* CreateApplicationProxyRules返回参数结构体
|
|
5494
7733
|
*/
|
|
5495
|
-
export interface
|
|
7734
|
+
export interface CreateApplicationProxyRulesResponse {
|
|
5496
7735
|
/**
|
|
5497
|
-
*
|
|
7736
|
+
* 新增的规则ID数组
|
|
5498
7737
|
*/
|
|
5499
|
-
|
|
7738
|
+
RuleId: Array<string>
|
|
5500
7739
|
|
|
5501
7740
|
/**
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
*/
|
|
5507
|
-
Type: string
|
|
7741
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7742
|
+
*/
|
|
7743
|
+
RequestId?: string
|
|
7744
|
+
}
|
|
5508
7745
|
|
|
7746
|
+
/**
|
|
7747
|
+
* DescribeWebManagedRulesTopData请求参数结构体
|
|
7748
|
+
*/
|
|
7749
|
+
export interface DescribeWebManagedRulesTopDataRequest {
|
|
5509
7750
|
/**
|
|
5510
|
-
*
|
|
7751
|
+
* 开始时间
|
|
5511
7752
|
*/
|
|
5512
|
-
|
|
7753
|
+
StartTime: string
|
|
5513
7754
|
|
|
5514
7755
|
/**
|
|
5515
|
-
*
|
|
7756
|
+
* 结束时间
|
|
5516
7757
|
*/
|
|
5517
|
-
|
|
7758
|
+
EndTime: string
|
|
5518
7759
|
|
|
5519
7760
|
/**
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
*/
|
|
5524
|
-
OriginType?: string
|
|
5525
|
-
}
|
|
7761
|
+
* 过滤指标
|
|
7762
|
+
*/
|
|
7763
|
+
MetricName: string
|
|
5526
7764
|
|
|
5527
|
-
/**
|
|
5528
|
-
* DescribeHostsSetting请求参数结构体
|
|
5529
|
-
*/
|
|
5530
|
-
export interface DescribeHostsSettingRequest {
|
|
5531
7765
|
/**
|
|
5532
|
-
*
|
|
7766
|
+
* 查询前多少名,传值为0 全量
|
|
5533
7767
|
*/
|
|
5534
|
-
|
|
7768
|
+
Limit: number
|
|
5535
7769
|
|
|
5536
7770
|
/**
|
|
5537
|
-
*
|
|
7771
|
+
* 站点集合
|
|
5538
7772
|
*/
|
|
5539
|
-
|
|
7773
|
+
ZoneIds?: Array<string>
|
|
5540
7774
|
|
|
5541
7775
|
/**
|
|
5542
|
-
*
|
|
7776
|
+
* ddos策略组id 集合
|
|
5543
7777
|
*/
|
|
5544
|
-
|
|
7778
|
+
PolicyIds?: Array<number>
|
|
5545
7779
|
|
|
5546
7780
|
/**
|
|
5547
|
-
*
|
|
7781
|
+
* 端口号
|
|
5548
7782
|
*/
|
|
5549
|
-
|
|
5550
|
-
}
|
|
7783
|
+
Port?: number
|
|
5551
7784
|
|
|
5552
|
-
/**
|
|
5553
|
-
* DescribeZoneDDoSPolicy请求参数结构体
|
|
5554
|
-
*/
|
|
5555
|
-
export interface DescribeZoneDDoSPolicyRequest {
|
|
5556
7785
|
/**
|
|
5557
|
-
*
|
|
7786
|
+
* 协议类型,tcp,udp,all
|
|
5558
7787
|
*/
|
|
5559
|
-
|
|
5560
|
-
}
|
|
7788
|
+
ProtocolType?: string
|
|
5561
7789
|
|
|
5562
|
-
/**
|
|
5563
|
-
* CreateApplicationProxyRules返回参数结构体
|
|
5564
|
-
*/
|
|
5565
|
-
export interface CreateApplicationProxyRulesResponse {
|
|
5566
7790
|
/**
|
|
5567
|
-
*
|
|
7791
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
5568
7792
|
*/
|
|
5569
|
-
|
|
7793
|
+
AttackType?: string
|
|
5570
7794
|
|
|
5571
7795
|
/**
|
|
5572
|
-
*
|
|
7796
|
+
* 域名集合
|
|
5573
7797
|
*/
|
|
5574
|
-
|
|
7798
|
+
Domains?: Array<string>
|
|
5575
7799
|
}
|
|
5576
7800
|
|
|
5577
7801
|
/**
|
|
@@ -5618,61 +7842,55 @@ export interface DescribeIdentificationResponse {
|
|
|
5618
7842
|
}
|
|
5619
7843
|
|
|
5620
7844
|
/**
|
|
5621
|
-
*
|
|
7845
|
+
* DDos主攻击事件
|
|
5622
7846
|
*/
|
|
5623
|
-
export interface
|
|
7847
|
+
export interface DDosMajorAttackEvent {
|
|
5624
7848
|
/**
|
|
5625
|
-
*
|
|
7849
|
+
* ddos 策略组id
|
|
5626
7850
|
*/
|
|
5627
|
-
|
|
7851
|
+
PolicyId: number
|
|
5628
7852
|
|
|
5629
7853
|
/**
|
|
5630
|
-
*
|
|
7854
|
+
* 攻击最大带宽
|
|
5631
7855
|
*/
|
|
5632
|
-
|
|
7856
|
+
AttackMaxBandWidth: number
|
|
5633
7857
|
|
|
5634
7858
|
/**
|
|
5635
|
-
*
|
|
7859
|
+
* 攻击时间 单位为s
|
|
5636
7860
|
*/
|
|
5637
|
-
|
|
7861
|
+
AttackTime: number
|
|
7862
|
+
}
|
|
5638
7863
|
|
|
7864
|
+
/**
|
|
7865
|
+
* ModifyZoneCnameSpeedUp请求参数结构体
|
|
7866
|
+
*/
|
|
7867
|
+
export interface ModifyZoneCnameSpeedUpRequest {
|
|
5639
7868
|
/**
|
|
5640
|
-
*
|
|
7869
|
+
* 站点 ID
|
|
5641
7870
|
*/
|
|
5642
|
-
|
|
7871
|
+
Id: string
|
|
5643
7872
|
|
|
5644
7873
|
/**
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
7874
|
+
* CNAME 加速状态
|
|
7875
|
+
- enabled 开启
|
|
7876
|
+
- disabled 关闭
|
|
7877
|
+
*/
|
|
7878
|
+
Status: string
|
|
7879
|
+
}
|
|
5648
7880
|
|
|
7881
|
+
/**
|
|
7882
|
+
* ModifyLoadBalancing返回参数结构体
|
|
7883
|
+
*/
|
|
7884
|
+
export interface ModifyLoadBalancingResponse {
|
|
5649
7885
|
/**
|
|
5650
|
-
*
|
|
7886
|
+
* 负载均衡ID
|
|
5651
7887
|
*/
|
|
5652
|
-
|
|
7888
|
+
LoadBalancingId: string
|
|
5653
7889
|
|
|
5654
7890
|
/**
|
|
5655
|
-
*
|
|
7891
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5656
7892
|
*/
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
/**
|
|
5660
|
-
* 源站类型
|
|
5661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5662
|
-
*/
|
|
5663
|
-
OriginType: string
|
|
5664
|
-
|
|
5665
|
-
/**
|
|
5666
|
-
* 是否为四层代理使用
|
|
5667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5668
|
-
*/
|
|
5669
|
-
ApplicationProxyUsed: boolean
|
|
5670
|
-
|
|
5671
|
-
/**
|
|
5672
|
-
* 是否为负载均衡使用
|
|
5673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5674
|
-
*/
|
|
5675
|
-
LoadBalancingUsed: boolean
|
|
7893
|
+
RequestId?: string
|
|
5676
7894
|
}
|
|
5677
7895
|
|
|
5678
7896
|
/**
|
|
@@ -5716,6 +7934,31 @@ export interface DDoSUserAllowBlockIP {
|
|
|
5716
7934
|
Mask2?: number
|
|
5717
7935
|
}
|
|
5718
7936
|
|
|
7937
|
+
/**
|
|
7938
|
+
* DescribeBotLog返回参数结构体
|
|
7939
|
+
*/
|
|
7940
|
+
export interface DescribeBotLogResponse {
|
|
7941
|
+
/**
|
|
7942
|
+
* Bot攻击Data
|
|
7943
|
+
*/
|
|
7944
|
+
Data: BotLogData
|
|
7945
|
+
|
|
7946
|
+
/**
|
|
7947
|
+
* 状态,1:失败,0:成功
|
|
7948
|
+
*/
|
|
7949
|
+
Status: number
|
|
7950
|
+
|
|
7951
|
+
/**
|
|
7952
|
+
* 返回信息
|
|
7953
|
+
*/
|
|
7954
|
+
Msg: string
|
|
7955
|
+
|
|
7956
|
+
/**
|
|
7957
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7958
|
+
*/
|
|
7959
|
+
RequestId?: string
|
|
7960
|
+
}
|
|
7961
|
+
|
|
5719
7962
|
/**
|
|
5720
7963
|
* DescribeLoadBalancing返回参数结构体
|
|
5721
7964
|
*/
|
|
@@ -5736,6 +7979,37 @@ export interface DescribeLoadBalancingResponse {
|
|
|
5736
7979
|
RequestId?: string
|
|
5737
7980
|
}
|
|
5738
7981
|
|
|
7982
|
+
/**
|
|
7983
|
+
* DescribeWebProtectionData返回参数结构体
|
|
7984
|
+
*/
|
|
7985
|
+
export interface DescribeWebProtectionDataResponse {
|
|
7986
|
+
/**
|
|
7987
|
+
* 数据详情
|
|
7988
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7989
|
+
*/
|
|
7990
|
+
Data: Array<SecEntry>
|
|
7991
|
+
|
|
7992
|
+
/**
|
|
7993
|
+
* 状态,1:失败,0:成功
|
|
7994
|
+
*/
|
|
7995
|
+
Status: number
|
|
7996
|
+
|
|
7997
|
+
/**
|
|
7998
|
+
* 消息
|
|
7999
|
+
*/
|
|
8000
|
+
Msg: string
|
|
8001
|
+
|
|
8002
|
+
/**
|
|
8003
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
8004
|
+
*/
|
|
8005
|
+
Interval: string
|
|
8006
|
+
|
|
8007
|
+
/**
|
|
8008
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8009
|
+
*/
|
|
8010
|
+
RequestId?: string
|
|
8011
|
+
}
|
|
8012
|
+
|
|
5739
8013
|
/**
|
|
5740
8014
|
* ModifyDnssec返回参数结构体
|
|
5741
8015
|
*/
|
|
@@ -6060,6 +8334,57 @@ export interface OfflineCache {
|
|
|
6060
8334
|
Switch: string
|
|
6061
8335
|
}
|
|
6062
8336
|
|
|
8337
|
+
/**
|
|
8338
|
+
* DescribeOriginGroupDetail请求参数结构体
|
|
8339
|
+
*/
|
|
8340
|
+
export interface DescribeOriginGroupDetailRequest {
|
|
8341
|
+
/**
|
|
8342
|
+
* 源站组ID
|
|
8343
|
+
*/
|
|
8344
|
+
OriginId: string
|
|
8345
|
+
|
|
8346
|
+
/**
|
|
8347
|
+
* 站点ID
|
|
8348
|
+
*/
|
|
8349
|
+
ZoneId: string
|
|
8350
|
+
}
|
|
8351
|
+
|
|
8352
|
+
/**
|
|
8353
|
+
* DescribeDDosAttackEventDetail请求参数结构体
|
|
8354
|
+
*/
|
|
8355
|
+
export interface DescribeDDosAttackEventDetailRequest {
|
|
8356
|
+
/**
|
|
8357
|
+
* 事件id
|
|
8358
|
+
*/
|
|
8359
|
+
EventId: string
|
|
8360
|
+
}
|
|
8361
|
+
|
|
8362
|
+
/**
|
|
8363
|
+
* DescribeTimingL4Data返回参数结构体
|
|
8364
|
+
*/
|
|
8365
|
+
export interface DescribeTimingL4DataResponse {
|
|
8366
|
+
/**
|
|
8367
|
+
* 查询维度
|
|
8368
|
+
*/
|
|
8369
|
+
Type: string
|
|
8370
|
+
|
|
8371
|
+
/**
|
|
8372
|
+
* 时间间隔
|
|
8373
|
+
*/
|
|
8374
|
+
Interval: string
|
|
8375
|
+
|
|
8376
|
+
/**
|
|
8377
|
+
* 详细数据
|
|
8378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8379
|
+
*/
|
|
8380
|
+
Data: Array<TimingDataRecord>
|
|
8381
|
+
|
|
8382
|
+
/**
|
|
8383
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8384
|
+
*/
|
|
8385
|
+
RequestId?: string
|
|
8386
|
+
}
|
|
8387
|
+
|
|
6063
8388
|
/**
|
|
6064
8389
|
* 安全Bot配置
|
|
6065
8390
|
*/
|
|
@@ -6091,18 +8416,43 @@ export interface BotConfig {
|
|
|
6091
8416
|
}
|
|
6092
8417
|
|
|
6093
8418
|
/**
|
|
6094
|
-
*
|
|
8419
|
+
* 时序类型详细数据
|
|
6095
8420
|
*/
|
|
6096
|
-
export interface
|
|
8421
|
+
export interface TimingTypeValue {
|
|
6097
8422
|
/**
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
8423
|
+
* 数据和
|
|
8424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8425
|
+
*/
|
|
8426
|
+
Sum: number
|
|
6101
8427
|
|
|
6102
8428
|
/**
|
|
6103
|
-
|
|
8429
|
+
* 最大
|
|
8430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8431
|
+
*/
|
|
8432
|
+
Max: number
|
|
8433
|
+
|
|
8434
|
+
/**
|
|
8435
|
+
* 平均
|
|
8436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8437
|
+
*/
|
|
8438
|
+
Avg: number
|
|
8439
|
+
|
|
8440
|
+
/**
|
|
8441
|
+
* 指标名
|
|
6104
8442
|
*/
|
|
6105
|
-
|
|
8443
|
+
MetricName: string
|
|
8444
|
+
|
|
8445
|
+
/**
|
|
8446
|
+
* 废弃字段,即将下线,请使用Detail字段
|
|
8447
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8448
|
+
*/
|
|
8449
|
+
DetailData: Array<number>
|
|
8450
|
+
|
|
8451
|
+
/**
|
|
8452
|
+
* 详细数据
|
|
8453
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8454
|
+
*/
|
|
8455
|
+
Detail: Array<TimingDataItem>
|
|
6106
8456
|
}
|
|
6107
8457
|
|
|
6108
8458
|
/**
|