tencentcloud-sdk-nodejs-teo 4.0.360 → 4.0.363
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 +663 -0
- package/SERVICE_CHANGELOG.md +685 -39
- package/package.json +1 -1
- package/products.md +29 -27
- package/src/services/teo/v20220106/teo_client.ts +680 -412
- package/src/services/teo/v20220106/teo_models.ts +2927 -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 +2554 -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,41 @@ 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
|
+
* 筛选条件
|
|
3941
|
+
*/
|
|
3942
|
+
Filters?: Array<Filter>
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3041
3945
|
/**
|
|
3042
3946
|
* DescribeSecurityPolicyList返回参数结构体
|
|
3043
3947
|
*/
|
|
@@ -3183,6 +4087,65 @@ export interface DeleteLoadBalancingResponse {
|
|
|
3183
4087
|
RequestId?: string
|
|
3184
4088
|
}
|
|
3185
4089
|
|
|
4090
|
+
/**
|
|
4091
|
+
* DescribeWebProtectionData请求参数结构体
|
|
4092
|
+
*/
|
|
4093
|
+
export interface DescribeWebProtectionDataRequest {
|
|
4094
|
+
/**
|
|
4095
|
+
* 开始时间
|
|
4096
|
+
*/
|
|
4097
|
+
StartTime: string
|
|
4098
|
+
|
|
4099
|
+
/**
|
|
4100
|
+
* 结束时间
|
|
4101
|
+
*/
|
|
4102
|
+
EndTime: string
|
|
4103
|
+
|
|
4104
|
+
/**
|
|
4105
|
+
* 统计指标列表
|
|
4106
|
+
*/
|
|
4107
|
+
MetricNames: Array<string>
|
|
4108
|
+
|
|
4109
|
+
/**
|
|
4110
|
+
* 站点id列表
|
|
4111
|
+
*/
|
|
4112
|
+
ZoneIds?: Array<string>
|
|
4113
|
+
|
|
4114
|
+
/**
|
|
4115
|
+
* 子域名列表
|
|
4116
|
+
*/
|
|
4117
|
+
Domains?: Array<string>
|
|
4118
|
+
|
|
4119
|
+
/**
|
|
4120
|
+
* 协议类型
|
|
4121
|
+
*/
|
|
4122
|
+
ProtocolType?: string
|
|
4123
|
+
|
|
4124
|
+
/**
|
|
4125
|
+
* "webshell" : Webshell检测防护
|
|
4126
|
+
"oa" : 常见OA漏洞防护
|
|
4127
|
+
"xss" : XSS跨站脚本攻击防护
|
|
4128
|
+
"xxe" : XXE攻击防护
|
|
4129
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
4130
|
+
"cms" : 常见CMS漏洞防护
|
|
4131
|
+
"upload" : 恶意文件上传攻击防护
|
|
4132
|
+
"sql" : SQL注入攻击防护
|
|
4133
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
4134
|
+
"osc" : 开源组件漏洞防护
|
|
4135
|
+
"file_read" : 任意文件读取
|
|
4136
|
+
"ldap" : LDAP注入攻击防护
|
|
4137
|
+
"other" : 其它漏洞防护
|
|
4138
|
+
|
|
4139
|
+
"all":"所有"
|
|
4140
|
+
*/
|
|
4141
|
+
AttackType?: string
|
|
4142
|
+
|
|
4143
|
+
/**
|
|
4144
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
4145
|
+
*/
|
|
4146
|
+
Interval?: string
|
|
4147
|
+
}
|
|
4148
|
+
|
|
3186
4149
|
/**
|
|
3187
4150
|
* CheckCertificate请求参数结构体
|
|
3188
4151
|
*/
|
|
@@ -3286,54 +4249,28 @@ OFF:不传递
|
|
|
3286
4249
|
}
|
|
3287
4250
|
|
|
3288
4251
|
/**
|
|
3289
|
-
*
|
|
4252
|
+
* bot托管规则详情
|
|
3290
4253
|
*/
|
|
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
|
-
|
|
4254
|
+
export interface BotManagedRuleDetail {
|
|
3312
4255
|
/**
|
|
3313
|
-
*
|
|
4256
|
+
* 规则ID
|
|
3314
4257
|
*/
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
/**
|
|
3318
|
-
* 查询的状态
|
|
3319
|
-
允许的值为:processing、success、failed、timeout、invalid
|
|
3320
|
-
*/
|
|
3321
|
-
Statuses?: Array<string>
|
|
4258
|
+
RuleId: number
|
|
3322
4259
|
|
|
3323
4260
|
/**
|
|
3324
|
-
*
|
|
4261
|
+
* 规则描述
|
|
3325
4262
|
*/
|
|
3326
|
-
|
|
4263
|
+
Description: string
|
|
3327
4264
|
|
|
3328
4265
|
/**
|
|
3329
|
-
*
|
|
4266
|
+
* 规则分类
|
|
3330
4267
|
*/
|
|
3331
|
-
|
|
4268
|
+
RuleTypeName: string
|
|
3332
4269
|
|
|
3333
4270
|
/**
|
|
3334
|
-
*
|
|
4271
|
+
* 该规则开启/关闭
|
|
3335
4272
|
*/
|
|
3336
|
-
|
|
4273
|
+
Status: string
|
|
3337
4274
|
}
|
|
3338
4275
|
|
|
3339
4276
|
/**
|
|
@@ -3413,6 +4350,16 @@ export interface ModifyApplicationProxyStatusResponse {
|
|
|
3413
4350
|
RequestId?: string
|
|
3414
4351
|
}
|
|
3415
4352
|
|
|
4353
|
+
/**
|
|
4354
|
+
* IdentifyZone请求参数结构体
|
|
4355
|
+
*/
|
|
4356
|
+
export interface IdentifyZoneRequest {
|
|
4357
|
+
/**
|
|
4358
|
+
* 站点名称
|
|
4359
|
+
*/
|
|
4360
|
+
Name: string
|
|
4361
|
+
}
|
|
4362
|
+
|
|
3416
4363
|
/**
|
|
3417
4364
|
* 域名配置信息
|
|
3418
4365
|
*/
|
|
@@ -3461,6 +4408,53 @@ export interface DescribeDnsRecordsResponse {
|
|
|
3461
4408
|
RequestId?: string
|
|
3462
4409
|
}
|
|
3463
4410
|
|
|
4411
|
+
/**
|
|
4412
|
+
* DescribeDefaultCertificates返回参数结构体
|
|
4413
|
+
*/
|
|
4414
|
+
export interface DescribeDefaultCertificatesResponse {
|
|
4415
|
+
/**
|
|
4416
|
+
* 证书总数
|
|
4417
|
+
*/
|
|
4418
|
+
TotalCount: number
|
|
4419
|
+
|
|
4420
|
+
/**
|
|
4421
|
+
* 默认证书列表
|
|
4422
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4423
|
+
*/
|
|
4424
|
+
CertInfo: Array<DefaultServerCertInfo>
|
|
4425
|
+
|
|
4426
|
+
/**
|
|
4427
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4428
|
+
*/
|
|
4429
|
+
RequestId?: string
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
/**
|
|
4433
|
+
* DescribeTimingL7AnalysisData返回参数结构体
|
|
4434
|
+
*/
|
|
4435
|
+
export interface DescribeTimingL7AnalysisDataResponse {
|
|
4436
|
+
/**
|
|
4437
|
+
* 详细数据
|
|
4438
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4439
|
+
*/
|
|
4440
|
+
Data: Array<TimingDataRecord>
|
|
4441
|
+
|
|
4442
|
+
/**
|
|
4443
|
+
* 查询维度
|
|
4444
|
+
*/
|
|
4445
|
+
Type: string
|
|
4446
|
+
|
|
4447
|
+
/**
|
|
4448
|
+
* 时间间隔
|
|
4449
|
+
*/
|
|
4450
|
+
Interval: string
|
|
4451
|
+
|
|
4452
|
+
/**
|
|
4453
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4454
|
+
*/
|
|
4455
|
+
RequestId?: string
|
|
4456
|
+
}
|
|
4457
|
+
|
|
3464
4458
|
/**
|
|
3465
4459
|
* bot 用户画像规则
|
|
3466
4460
|
*/
|
|
@@ -3503,20 +4497,63 @@ export interface BotPortraitRule {
|
|
|
3503
4497
|
}
|
|
3504
4498
|
|
|
3505
4499
|
/**
|
|
3506
|
-
*
|
|
4500
|
+
* DescribeWebProtectionAttackEvents请求参数结构体
|
|
3507
4501
|
*/
|
|
3508
|
-
export interface
|
|
4502
|
+
export interface DescribeWebProtectionAttackEventsRequest {
|
|
3509
4503
|
/**
|
|
3510
|
-
*
|
|
4504
|
+
* 开始时间
|
|
3511
4505
|
*/
|
|
3512
|
-
|
|
4506
|
+
StartTime: string
|
|
3513
4507
|
|
|
3514
4508
|
/**
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
4509
|
+
* 结束时间
|
|
4510
|
+
*/
|
|
4511
|
+
EndTime: string
|
|
4512
|
+
|
|
4513
|
+
/**
|
|
4514
|
+
* 条数
|
|
4515
|
+
*/
|
|
4516
|
+
PageSize: number
|
|
4517
|
+
|
|
4518
|
+
/**
|
|
4519
|
+
* 当前页
|
|
4520
|
+
*/
|
|
4521
|
+
PageNo: number
|
|
4522
|
+
|
|
4523
|
+
/**
|
|
4524
|
+
* 域名
|
|
4525
|
+
*/
|
|
4526
|
+
Domains?: Array<string>
|
|
4527
|
+
|
|
4528
|
+
/**
|
|
4529
|
+
* 站点集合
|
|
4530
|
+
*/
|
|
4531
|
+
ZoneIds?: Array<string>
|
|
4532
|
+
}
|
|
4533
|
+
|
|
4534
|
+
/**
|
|
4535
|
+
* DescribeOverviewL7Data返回参数结构体
|
|
4536
|
+
*/
|
|
4537
|
+
export interface DescribeOverviewL7DataResponse {
|
|
4538
|
+
/**
|
|
4539
|
+
* 查询维度
|
|
4540
|
+
*/
|
|
4541
|
+
Type: string
|
|
4542
|
+
|
|
4543
|
+
/**
|
|
4544
|
+
* 时间间隔
|
|
4545
|
+
*/
|
|
4546
|
+
Interval: string
|
|
4547
|
+
|
|
4548
|
+
/**
|
|
4549
|
+
* 详细数据
|
|
4550
|
+
*/
|
|
4551
|
+
Data: Array<TimingDataRecord>
|
|
4552
|
+
|
|
4553
|
+
/**
|
|
4554
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4555
|
+
*/
|
|
4556
|
+
RequestId?: string
|
|
3520
4557
|
}
|
|
3521
4558
|
|
|
3522
4559
|
/**
|
|
@@ -3575,23 +4612,64 @@ export interface DescribeSecurityPolicyManagedRulesResponse {
|
|
|
3575
4612
|
}
|
|
3576
4613
|
|
|
3577
4614
|
/**
|
|
3578
|
-
*
|
|
4615
|
+
* 源站组信息
|
|
3579
4616
|
*/
|
|
3580
|
-
export interface
|
|
4617
|
+
export interface OriginGroup {
|
|
3581
4618
|
/**
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
Mode?: string
|
|
4619
|
+
* 源站组ID
|
|
4620
|
+
*/
|
|
4621
|
+
OriginId: string
|
|
3586
4622
|
|
|
3587
4623
|
/**
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
4624
|
+
* 源站组名称
|
|
4625
|
+
*/
|
|
4626
|
+
OriginName: string
|
|
4627
|
+
|
|
4628
|
+
/**
|
|
4629
|
+
* 配置类型
|
|
4630
|
+
*/
|
|
4631
|
+
Type: string
|
|
4632
|
+
|
|
4633
|
+
/**
|
|
4634
|
+
* 记录
|
|
4635
|
+
*/
|
|
4636
|
+
Record: Array<OriginRecord>
|
|
4637
|
+
|
|
4638
|
+
/**
|
|
4639
|
+
* 更新时间
|
|
4640
|
+
*/
|
|
4641
|
+
UpdateTime: string
|
|
4642
|
+
|
|
4643
|
+
/**
|
|
4644
|
+
* 站点ID
|
|
4645
|
+
*/
|
|
4646
|
+
ZoneId: string
|
|
4647
|
+
|
|
4648
|
+
/**
|
|
4649
|
+
* 站点名称
|
|
4650
|
+
*/
|
|
4651
|
+
ZoneName: string
|
|
4652
|
+
|
|
4653
|
+
/**
|
|
4654
|
+
* 源站类型
|
|
4655
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4656
|
+
*/
|
|
4657
|
+
OriginType: string
|
|
4658
|
+
|
|
4659
|
+
/**
|
|
4660
|
+
* 是否为四层代理使用
|
|
4661
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4662
|
+
*/
|
|
4663
|
+
ApplicationProxyUsed: boolean
|
|
4664
|
+
|
|
4665
|
+
/**
|
|
4666
|
+
* 是否为负载均衡使用
|
|
4667
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4668
|
+
*/
|
|
4669
|
+
LoadBalancingUsed: boolean
|
|
4670
|
+
}
|
|
4671
|
+
|
|
4672
|
+
/**
|
|
3595
4673
|
* DescribeApplicationProxy请求参数结构体
|
|
3596
4674
|
*/
|
|
3597
4675
|
export interface DescribeApplicationProxyRequest {
|
|
@@ -3611,6 +4689,21 @@ export interface DescribeApplicationProxyRequest {
|
|
|
3611
4689
|
Limit?: number
|
|
3612
4690
|
}
|
|
3613
4691
|
|
|
4692
|
+
/**
|
|
4693
|
+
* TopN数据Entry
|
|
4694
|
+
*/
|
|
4695
|
+
export interface TopNEntryValue {
|
|
4696
|
+
/**
|
|
4697
|
+
* Entry的name
|
|
4698
|
+
*/
|
|
4699
|
+
Name: string
|
|
4700
|
+
|
|
4701
|
+
/**
|
|
4702
|
+
* 数量
|
|
4703
|
+
*/
|
|
4704
|
+
Count: number
|
|
4705
|
+
}
|
|
4706
|
+
|
|
3614
4707
|
/**
|
|
3615
4708
|
* ModifyDDoSPolicyHost返回参数结构体
|
|
3616
4709
|
*/
|
|
@@ -3654,44 +4747,76 @@ online: 启用
|
|
|
3654
4747
|
}
|
|
3655
4748
|
|
|
3656
4749
|
/**
|
|
3657
|
-
*
|
|
4750
|
+
* Web拦截事件
|
|
3658
4751
|
*/
|
|
3659
|
-
export interface
|
|
4752
|
+
export interface WebAttackEvent {
|
|
3660
4753
|
/**
|
|
3661
|
-
*
|
|
4754
|
+
* 客户端ip
|
|
3662
4755
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3663
4756
|
*/
|
|
3664
|
-
|
|
4757
|
+
ClientIp: string
|
|
3665
4758
|
|
|
3666
4759
|
/**
|
|
3667
|
-
*
|
|
4760
|
+
* 攻击URL
|
|
3668
4761
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3669
4762
|
*/
|
|
3670
|
-
|
|
4763
|
+
AttackUrl: string
|
|
3671
4764
|
|
|
3672
4765
|
/**
|
|
3673
|
-
*
|
|
4766
|
+
* 攻击时间 单位为s
|
|
3674
4767
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3675
4768
|
*/
|
|
3676
|
-
|
|
4769
|
+
AttackTime: number
|
|
4770
|
+
}
|
|
3677
4771
|
|
|
4772
|
+
/**
|
|
4773
|
+
* DescribeDDosAttackTopData请求参数结构体
|
|
4774
|
+
*/
|
|
4775
|
+
export interface DescribeDDosAttackTopDataRequest {
|
|
3678
4776
|
/**
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
PunishTime?: number
|
|
4777
|
+
* 开始时间
|
|
4778
|
+
*/
|
|
4779
|
+
StartTime: string
|
|
3683
4780
|
|
|
3684
4781
|
/**
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
Threshold?: number
|
|
4782
|
+
* 结束时间
|
|
4783
|
+
*/
|
|
4784
|
+
EndTime: string
|
|
3689
4785
|
|
|
3690
4786
|
/**
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
4787
|
+
* 过滤指标
|
|
4788
|
+
*/
|
|
4789
|
+
MetricName: string
|
|
4790
|
+
|
|
4791
|
+
/**
|
|
4792
|
+
* 查询前多少名,传值为0 全量
|
|
4793
|
+
*/
|
|
4794
|
+
Limit: number
|
|
4795
|
+
|
|
4796
|
+
/**
|
|
4797
|
+
* 站点集合
|
|
4798
|
+
*/
|
|
4799
|
+
ZoneIds?: Array<string>
|
|
4800
|
+
|
|
4801
|
+
/**
|
|
4802
|
+
* ddos策略组id 集合
|
|
4803
|
+
*/
|
|
4804
|
+
PolicyIds?: Array<number>
|
|
4805
|
+
|
|
4806
|
+
/**
|
|
4807
|
+
* 端口号
|
|
4808
|
+
*/
|
|
4809
|
+
Port?: number
|
|
4810
|
+
|
|
4811
|
+
/**
|
|
4812
|
+
* 协议类型,tcp,udp,all
|
|
4813
|
+
*/
|
|
4814
|
+
ProtocolType?: string
|
|
4815
|
+
|
|
4816
|
+
/**
|
|
4817
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
4818
|
+
*/
|
|
4819
|
+
AttackType?: string
|
|
3695
4820
|
}
|
|
3696
4821
|
|
|
3697
4822
|
/**
|
|
@@ -3710,71 +4835,53 @@ export interface CreateApplicationProxyRuleResponse {
|
|
|
3710
4835
|
}
|
|
3711
4836
|
|
|
3712
4837
|
/**
|
|
3713
|
-
*
|
|
4838
|
+
* DescribeDDosAttackData请求参数结构体
|
|
3714
4839
|
*/
|
|
3715
|
-
export interface
|
|
4840
|
+
export interface DescribeDDosAttackDataRequest {
|
|
3716
4841
|
/**
|
|
3717
|
-
*
|
|
4842
|
+
* 开始时间
|
|
3718
4843
|
*/
|
|
3719
|
-
|
|
4844
|
+
StartTime: string
|
|
3720
4845
|
|
|
3721
4846
|
/**
|
|
3722
|
-
*
|
|
4847
|
+
* 结束时间
|
|
3723
4848
|
*/
|
|
3724
|
-
|
|
4849
|
+
EndTime: string
|
|
3725
4850
|
|
|
3726
4851
|
/**
|
|
3727
|
-
*
|
|
4852
|
+
* 统计指标列表
|
|
3728
4853
|
*/
|
|
3729
|
-
|
|
4854
|
+
MetricNames: Array<string>
|
|
3730
4855
|
|
|
3731
4856
|
/**
|
|
3732
|
-
*
|
|
4857
|
+
* 站点id列表
|
|
3733
4858
|
*/
|
|
3734
|
-
|
|
4859
|
+
ZoneIds?: Array<string>
|
|
3735
4860
|
|
|
3736
4861
|
/**
|
|
3737
|
-
*
|
|
4862
|
+
* ddos策略组id列表
|
|
3738
4863
|
*/
|
|
3739
|
-
|
|
4864
|
+
PolicyIds?: Array<number>
|
|
3740
4865
|
|
|
3741
4866
|
/**
|
|
3742
|
-
*
|
|
4867
|
+
* 端口号
|
|
3743
4868
|
*/
|
|
3744
|
-
|
|
4869
|
+
Port?: number
|
|
3745
4870
|
|
|
3746
4871
|
/**
|
|
3747
|
-
*
|
|
4872
|
+
* 协议类型,tcp,udp,all
|
|
3748
4873
|
*/
|
|
3749
|
-
|
|
4874
|
+
ProtocolType?: string
|
|
3750
4875
|
|
|
3751
4876
|
/**
|
|
3752
|
-
*
|
|
4877
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
3753
4878
|
*/
|
|
3754
|
-
|
|
4879
|
+
AttackType?: string
|
|
3755
4880
|
|
|
3756
4881
|
/**
|
|
3757
|
-
*
|
|
4882
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3758
4883
|
*/
|
|
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
|
|
4884
|
+
Interval?: string
|
|
3778
4885
|
}
|
|
3779
4886
|
|
|
3780
4887
|
/**
|
|
@@ -3858,6 +4965,64 @@ export interface ModifyDnsRecordResponse {
|
|
|
3858
4965
|
RequestId?: string
|
|
3859
4966
|
}
|
|
3860
4967
|
|
|
4968
|
+
/**
|
|
4969
|
+
* 模板当前详细配置
|
|
4970
|
+
*/
|
|
4971
|
+
export interface RateLimitTemplateDetail {
|
|
4972
|
+
/**
|
|
4973
|
+
* 模板名称
|
|
4974
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4975
|
+
*/
|
|
4976
|
+
Mode?: string
|
|
4977
|
+
|
|
4978
|
+
/**
|
|
4979
|
+
* 唯一id
|
|
4980
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4981
|
+
*/
|
|
4982
|
+
ID?: number
|
|
4983
|
+
|
|
4984
|
+
/**
|
|
4985
|
+
* 处置动作
|
|
4986
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4987
|
+
*/
|
|
4988
|
+
Action?: string
|
|
4989
|
+
|
|
4990
|
+
/**
|
|
4991
|
+
* 惩罚时间,秒
|
|
4992
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4993
|
+
*/
|
|
4994
|
+
PunishTime?: number
|
|
4995
|
+
|
|
4996
|
+
/**
|
|
4997
|
+
* 阈值
|
|
4998
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4999
|
+
*/
|
|
5000
|
+
Threshold?: number
|
|
5001
|
+
|
|
5002
|
+
/**
|
|
5003
|
+
* 统计周期
|
|
5004
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5005
|
+
*/
|
|
5006
|
+
Period?: number
|
|
5007
|
+
}
|
|
5008
|
+
|
|
5009
|
+
/**
|
|
5010
|
+
* 统计曲线数据项
|
|
5011
|
+
*/
|
|
5012
|
+
export interface TimingDataItem {
|
|
5013
|
+
/**
|
|
5014
|
+
* 秒级时间戳
|
|
5015
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5016
|
+
*/
|
|
5017
|
+
Timestamp: number
|
|
5018
|
+
|
|
5019
|
+
/**
|
|
5020
|
+
* 数值
|
|
5021
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5022
|
+
*/
|
|
5023
|
+
Value: number
|
|
5024
|
+
}
|
|
5025
|
+
|
|
3861
5026
|
/**
|
|
3862
5027
|
* CreateApplicationProxy请求参数结构体
|
|
3863
5028
|
*/
|
|
@@ -3923,89 +5088,328 @@ instance:实例
|
|
|
3923
5088
|
}
|
|
3924
5089
|
|
|
3925
5090
|
/**
|
|
3926
|
-
*
|
|
5091
|
+
* DescribeTopL7AnalysisData返回参数结构体
|
|
3927
5092
|
*/
|
|
3928
|
-
export interface
|
|
5093
|
+
export interface DescribeTopL7AnalysisDataResponse {
|
|
3929
5094
|
/**
|
|
3930
|
-
*
|
|
3931
|
-
关闭:off,
|
|
3932
|
-
开启:on。
|
|
3933
|
-
*/
|
|
3934
|
-
Switch: string
|
|
3935
|
-
|
|
3936
|
-
/**
|
|
3937
|
-
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
5095
|
+
* top详细数据
|
|
3938
5096
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3939
5097
|
*/
|
|
3940
|
-
|
|
3941
|
-
}
|
|
5098
|
+
Data: Array<TopDataRecord>
|
|
3942
5099
|
|
|
3943
|
-
/**
|
|
3944
|
-
* 门神规则
|
|
3945
|
-
*/
|
|
3946
|
-
export interface ManagedRule {
|
|
3947
5100
|
/**
|
|
3948
|
-
*
|
|
5101
|
+
* 查询维度
|
|
3949
5102
|
*/
|
|
3950
|
-
|
|
5103
|
+
Type: string
|
|
3951
5104
|
|
|
3952
5105
|
/**
|
|
3953
|
-
*
|
|
5106
|
+
* 查询指标
|
|
3954
5107
|
*/
|
|
3955
|
-
|
|
5108
|
+
MetricName: string
|
|
3956
5109
|
|
|
3957
5110
|
/**
|
|
3958
|
-
*
|
|
5111
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3959
5112
|
*/
|
|
3960
|
-
|
|
5113
|
+
RequestId?: string
|
|
5114
|
+
}
|
|
3961
5115
|
|
|
5116
|
+
/**
|
|
5117
|
+
* web攻击日志
|
|
5118
|
+
*/
|
|
5119
|
+
export interface WebLogs {
|
|
3962
5120
|
/**
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
5121
|
+
* 攻击内容
|
|
5122
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5123
|
+
*/
|
|
5124
|
+
AttackContent: string
|
|
3966
5125
|
|
|
3967
5126
|
/**
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
5127
|
+
* 攻击IP
|
|
5128
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5129
|
+
*/
|
|
5130
|
+
AttackIp: string
|
|
3971
5131
|
|
|
3972
5132
|
/**
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
5133
|
+
* 攻击类型
|
|
5134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5135
|
+
*/
|
|
5136
|
+
AttackType: string
|
|
3976
5137
|
|
|
3977
5138
|
/**
|
|
3978
|
-
*
|
|
5139
|
+
* 域名
|
|
3979
5140
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3980
5141
|
*/
|
|
3981
|
-
|
|
5142
|
+
Domain: string
|
|
3982
5143
|
|
|
3983
5144
|
/**
|
|
3984
|
-
*
|
|
5145
|
+
* uuid
|
|
3985
5146
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3986
5147
|
*/
|
|
3987
|
-
|
|
5148
|
+
Msuuid: string
|
|
3988
5149
|
|
|
3989
5150
|
/**
|
|
3990
|
-
*
|
|
5151
|
+
* 请求方法
|
|
5152
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5153
|
+
*/
|
|
5154
|
+
RequestMethod: string
|
|
5155
|
+
|
|
5156
|
+
/**
|
|
5157
|
+
* 请求URI
|
|
5158
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5159
|
+
*/
|
|
5160
|
+
RequestUri: string
|
|
5161
|
+
|
|
5162
|
+
/**
|
|
5163
|
+
* 风险等级
|
|
5164
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5165
|
+
*/
|
|
5166
|
+
RiskLevel: string
|
|
5167
|
+
|
|
5168
|
+
/**
|
|
5169
|
+
* 规则ID
|
|
5170
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5171
|
+
*/
|
|
5172
|
+
RuleId: number
|
|
5173
|
+
|
|
5174
|
+
/**
|
|
5175
|
+
* IP所在国家
|
|
5176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5177
|
+
*/
|
|
5178
|
+
SipCountryCode: string
|
|
5179
|
+
|
|
5180
|
+
/**
|
|
5181
|
+
* 事件id
|
|
5182
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5183
|
+
*/
|
|
5184
|
+
EventId: string
|
|
5185
|
+
|
|
5186
|
+
/**
|
|
5187
|
+
* 处置方式
|
|
5188
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5189
|
+
*/
|
|
5190
|
+
DisposalMethod: string
|
|
5191
|
+
|
|
5192
|
+
/**
|
|
5193
|
+
* http_log
|
|
5194
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5195
|
+
*/
|
|
5196
|
+
HttpLog: string
|
|
5197
|
+
|
|
5198
|
+
/**
|
|
5199
|
+
* user agent
|
|
5200
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5201
|
+
*/
|
|
5202
|
+
Ua: string
|
|
5203
|
+
|
|
5204
|
+
/**
|
|
5205
|
+
* 攻击时间,为保持统一,原参数time更名为AttackTime
|
|
5206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5207
|
+
*/
|
|
5208
|
+
AttackTime: number
|
|
5209
|
+
}
|
|
5210
|
+
|
|
5211
|
+
/**
|
|
5212
|
+
* POST请求上传文件流式传输最大限制
|
|
5213
|
+
*/
|
|
5214
|
+
export interface PostMaxSize {
|
|
5215
|
+
/**
|
|
5216
|
+
* 是调整POST请求限制,平台默认为32MB。
|
|
5217
|
+
关闭:off,
|
|
5218
|
+
开启:on。
|
|
5219
|
+
*/
|
|
5220
|
+
Switch: string
|
|
5221
|
+
|
|
5222
|
+
/**
|
|
5223
|
+
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
5224
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5225
|
+
*/
|
|
5226
|
+
MaxSize?: number
|
|
5227
|
+
}
|
|
5228
|
+
|
|
5229
|
+
/**
|
|
5230
|
+
* RateLimit规则
|
|
5231
|
+
*/
|
|
5232
|
+
export interface RateLimitUserRule {
|
|
5233
|
+
/**
|
|
5234
|
+
* RateLimit统计阈值
|
|
5235
|
+
*/
|
|
5236
|
+
Threshold: number
|
|
5237
|
+
|
|
5238
|
+
/**
|
|
5239
|
+
* RateLimit统计时间
|
|
5240
|
+
*/
|
|
5241
|
+
Period: number
|
|
5242
|
+
|
|
5243
|
+
/**
|
|
5244
|
+
* 规则名
|
|
5245
|
+
*/
|
|
5246
|
+
RuleName: string
|
|
5247
|
+
|
|
5248
|
+
/**
|
|
5249
|
+
* 动作:monitor(观察), drop(拦截)
|
|
5250
|
+
*/
|
|
5251
|
+
Action: string
|
|
5252
|
+
|
|
5253
|
+
/**
|
|
5254
|
+
* 惩罚时长
|
|
5255
|
+
*/
|
|
5256
|
+
PunishTime: number
|
|
5257
|
+
|
|
5258
|
+
/**
|
|
5259
|
+
* 处罚时长单位,second
|
|
5260
|
+
*/
|
|
5261
|
+
PunishTimeUnit: string
|
|
5262
|
+
|
|
5263
|
+
/**
|
|
5264
|
+
* 规则状态
|
|
5265
|
+
*/
|
|
5266
|
+
RuleStatus: string
|
|
5267
|
+
|
|
5268
|
+
/**
|
|
5269
|
+
* 规则
|
|
5270
|
+
*/
|
|
5271
|
+
Conditions: Array<ACLCondition>
|
|
5272
|
+
|
|
5273
|
+
/**
|
|
5274
|
+
* 规则权重
|
|
5275
|
+
*/
|
|
5276
|
+
RulePriority: number
|
|
5277
|
+
|
|
5278
|
+
/**
|
|
5279
|
+
* 规则id
|
|
5280
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5281
|
+
*/
|
|
5282
|
+
RuleID?: number
|
|
5283
|
+
|
|
5284
|
+
/**
|
|
5285
|
+
* 过滤词
|
|
5286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5287
|
+
*/
|
|
5288
|
+
FreqFields?: Array<string>
|
|
5289
|
+
|
|
5290
|
+
/**
|
|
5291
|
+
* 更新时间
|
|
5292
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5293
|
+
*/
|
|
5294
|
+
UpdateTime?: string
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
/**
|
|
5298
|
+
* 门神规则
|
|
5299
|
+
*/
|
|
5300
|
+
export interface ManagedRule {
|
|
5301
|
+
/**
|
|
5302
|
+
* 规则id
|
|
5303
|
+
*/
|
|
5304
|
+
RuleId: number
|
|
5305
|
+
|
|
5306
|
+
/**
|
|
5307
|
+
* 规则描述
|
|
5308
|
+
*/
|
|
5309
|
+
Description: string
|
|
5310
|
+
|
|
5311
|
+
/**
|
|
5312
|
+
* 规则类型名
|
|
5313
|
+
*/
|
|
5314
|
+
RuleTypeName: string
|
|
5315
|
+
|
|
5316
|
+
/**
|
|
5317
|
+
* 策略规则防护等级
|
|
5318
|
+
*/
|
|
5319
|
+
RuleLevelDesc: string
|
|
5320
|
+
|
|
5321
|
+
/**
|
|
5322
|
+
* 更新时间
|
|
5323
|
+
*/
|
|
5324
|
+
UpdateTime: string
|
|
5325
|
+
|
|
5326
|
+
/**
|
|
5327
|
+
* 规则当前状态 block, allow
|
|
5328
|
+
*/
|
|
5329
|
+
Status: string
|
|
5330
|
+
|
|
5331
|
+
/**
|
|
5332
|
+
* 规则标签
|
|
5333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5334
|
+
*/
|
|
5335
|
+
RuleTags?: Array<string>
|
|
5336
|
+
|
|
5337
|
+
/**
|
|
5338
|
+
* 规则类型详细描述
|
|
5339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5340
|
+
*/
|
|
5341
|
+
RuleTypeDesc?: string
|
|
5342
|
+
|
|
5343
|
+
/**
|
|
5344
|
+
* 规则类型id
|
|
3991
5345
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3992
5346
|
*/
|
|
3993
5347
|
RuleTypeId?: number
|
|
3994
5348
|
}
|
|
3995
5349
|
|
|
3996
5350
|
/**
|
|
3997
|
-
*
|
|
5351
|
+
* 过滤条件
|
|
3998
5352
|
*/
|
|
3999
|
-
export interface
|
|
5353
|
+
export interface Filter {
|
|
4000
5354
|
/**
|
|
4001
|
-
*
|
|
5355
|
+
* 筛选维度
|
|
4002
5356
|
*/
|
|
4003
|
-
|
|
5357
|
+
Key: string
|
|
4004
5358
|
|
|
4005
5359
|
/**
|
|
4006
|
-
*
|
|
5360
|
+
* 操作符
|
|
4007
5361
|
*/
|
|
4008
|
-
|
|
5362
|
+
Operator: string
|
|
5363
|
+
|
|
5364
|
+
/**
|
|
5365
|
+
* 筛选维度值
|
|
5366
|
+
*/
|
|
5367
|
+
Value: Array<string>
|
|
5368
|
+
}
|
|
5369
|
+
|
|
5370
|
+
/**
|
|
5371
|
+
* DescribeWebManagedRulesAttackEvents请求参数结构体
|
|
5372
|
+
*/
|
|
5373
|
+
export interface DescribeWebManagedRulesAttackEventsRequest {
|
|
5374
|
+
/**
|
|
5375
|
+
* 开始时间
|
|
5376
|
+
*/
|
|
5377
|
+
StartTime: string
|
|
5378
|
+
|
|
5379
|
+
/**
|
|
5380
|
+
* 结束时间
|
|
5381
|
+
*/
|
|
5382
|
+
EndTime: string
|
|
5383
|
+
|
|
5384
|
+
/**
|
|
5385
|
+
* 条数
|
|
5386
|
+
*/
|
|
5387
|
+
PageSize: number
|
|
5388
|
+
|
|
5389
|
+
/**
|
|
5390
|
+
* 当前页
|
|
5391
|
+
*/
|
|
5392
|
+
PageNo: number
|
|
5393
|
+
|
|
5394
|
+
/**
|
|
5395
|
+
* ddos策略组id列表
|
|
5396
|
+
*/
|
|
5397
|
+
PolicyIds?: Array<number>
|
|
5398
|
+
|
|
5399
|
+
/**
|
|
5400
|
+
* 站点集合
|
|
5401
|
+
*/
|
|
5402
|
+
ZoneIds?: Array<string>
|
|
5403
|
+
|
|
5404
|
+
/**
|
|
5405
|
+
* 子域名列表
|
|
5406
|
+
*/
|
|
5407
|
+
Domains?: Array<string>
|
|
5408
|
+
|
|
5409
|
+
/**
|
|
5410
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
5411
|
+
*/
|
|
5412
|
+
IsShowDetail?: string
|
|
4009
5413
|
}
|
|
4010
5414
|
|
|
4011
5415
|
/**
|
|
@@ -4204,44 +5608,114 @@ export interface DeleteLoadBalancingRequest {
|
|
|
4204
5608
|
}
|
|
4205
5609
|
|
|
4206
5610
|
/**
|
|
4207
|
-
*
|
|
5611
|
+
* DescribeTimingL7AnalysisData请求参数结构体
|
|
4208
5612
|
*/
|
|
4209
|
-
export interface
|
|
5613
|
+
export interface DescribeTimingL7AnalysisDataRequest {
|
|
4210
5614
|
/**
|
|
4211
|
-
*
|
|
5615
|
+
* RFC3339标准,客户端时间
|
|
4212
5616
|
*/
|
|
4213
|
-
|
|
5617
|
+
StartTime: string
|
|
4214
5618
|
|
|
4215
5619
|
/**
|
|
4216
|
-
*
|
|
5620
|
+
* RFC3339标准,客户端时间
|
|
4217
5621
|
*/
|
|
4218
|
-
|
|
5622
|
+
EndTime: string
|
|
4219
5623
|
|
|
4220
5624
|
/**
|
|
4221
|
-
*
|
|
5625
|
+
* 时序类访问流量指标
|
|
4222
5626
|
*/
|
|
4223
|
-
|
|
5627
|
+
MetricNames: Array<string>
|
|
4224
5628
|
|
|
4225
5629
|
/**
|
|
4226
|
-
*
|
|
5630
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
4227
5631
|
*/
|
|
4228
|
-
|
|
5632
|
+
Interval: string
|
|
5633
|
+
|
|
5634
|
+
/**
|
|
5635
|
+
* ZoneId数组
|
|
5636
|
+
*/
|
|
5637
|
+
ZoneIds?: Array<string>
|
|
5638
|
+
|
|
5639
|
+
/**
|
|
5640
|
+
* 筛选条件
|
|
5641
|
+
*/
|
|
5642
|
+
Filters?: Array<Filter>
|
|
4229
5643
|
}
|
|
4230
5644
|
|
|
4231
5645
|
/**
|
|
4232
|
-
*
|
|
5646
|
+
* DescribeSecurityPolicyManagedRulesId返回参数结构体
|
|
4233
5647
|
*/
|
|
4234
|
-
export interface
|
|
5648
|
+
export interface DescribeSecurityPolicyManagedRulesIdResponse {
|
|
4235
5649
|
/**
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
ProxyId?: string
|
|
5650
|
+
* 返回总数
|
|
5651
|
+
*/
|
|
5652
|
+
Total: number
|
|
4240
5653
|
|
|
4241
5654
|
/**
|
|
4242
|
-
*
|
|
5655
|
+
* 门神规则
|
|
4243
5656
|
*/
|
|
4244
|
-
|
|
5657
|
+
Rules: Array<ManagedRule>
|
|
5658
|
+
|
|
5659
|
+
/**
|
|
5660
|
+
* 返回总数
|
|
5661
|
+
*/
|
|
5662
|
+
Count: number
|
|
5663
|
+
|
|
5664
|
+
/**
|
|
5665
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5666
|
+
*/
|
|
5667
|
+
RequestId?: string
|
|
5668
|
+
}
|
|
5669
|
+
|
|
5670
|
+
/**
|
|
5671
|
+
* web事件数据
|
|
5672
|
+
*/
|
|
5673
|
+
export interface WebEventData {
|
|
5674
|
+
/**
|
|
5675
|
+
* 攻击事件数据集合
|
|
5676
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5677
|
+
*/
|
|
5678
|
+
List: Array<WebAttackEvent>
|
|
5679
|
+
|
|
5680
|
+
/**
|
|
5681
|
+
* 当前页
|
|
5682
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5683
|
+
*/
|
|
5684
|
+
PageNo: number
|
|
5685
|
+
|
|
5686
|
+
/**
|
|
5687
|
+
* 每页展示条数
|
|
5688
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5689
|
+
*/
|
|
5690
|
+
PageSize: number
|
|
5691
|
+
|
|
5692
|
+
/**
|
|
5693
|
+
* 总页数
|
|
5694
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5695
|
+
*/
|
|
5696
|
+
Pages: number
|
|
5697
|
+
|
|
5698
|
+
/**
|
|
5699
|
+
* 总条数
|
|
5700
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5701
|
+
*/
|
|
5702
|
+
TotalSize: number
|
|
5703
|
+
}
|
|
5704
|
+
|
|
5705
|
+
/**
|
|
5706
|
+
* 应用代理实例
|
|
5707
|
+
*/
|
|
5708
|
+
export interface ApplicationProxy {
|
|
5709
|
+
/**
|
|
5710
|
+
* 实例ID
|
|
5711
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5712
|
+
*/
|
|
5713
|
+
ProxyId?: string
|
|
5714
|
+
|
|
5715
|
+
/**
|
|
5716
|
+
* 实例名称
|
|
5717
|
+
*/
|
|
5718
|
+
ProxyName: string
|
|
4245
5719
|
|
|
4246
5720
|
/**
|
|
4247
5721
|
* 调度模式:
|
|
@@ -4446,6 +5920,32 @@ export interface DescribeSecurityPolicyListRequest {
|
|
|
4446
5920
|
ZoneId: string
|
|
4447
5921
|
}
|
|
4448
5922
|
|
|
5923
|
+
/**
|
|
5924
|
+
* DescribeTimingL7CacheData返回参数结构体
|
|
5925
|
+
*/
|
|
5926
|
+
export interface DescribeTimingL7CacheDataResponse {
|
|
5927
|
+
/**
|
|
5928
|
+
* 详细数据
|
|
5929
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5930
|
+
*/
|
|
5931
|
+
Data: Array<TimingDataRecord>
|
|
5932
|
+
|
|
5933
|
+
/**
|
|
5934
|
+
* 查询维度
|
|
5935
|
+
*/
|
|
5936
|
+
Type: string
|
|
5937
|
+
|
|
5938
|
+
/**
|
|
5939
|
+
* 时间间隔
|
|
5940
|
+
*/
|
|
5941
|
+
Interval: string
|
|
5942
|
+
|
|
5943
|
+
/**
|
|
5944
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5945
|
+
*/
|
|
5946
|
+
RequestId?: string
|
|
5947
|
+
}
|
|
5948
|
+
|
|
4449
5949
|
/**
|
|
4450
5950
|
* DescribeApplicationProxyDetail请求参数结构体
|
|
4451
5951
|
*/
|
|
@@ -4491,6 +5991,46 @@ export interface Header {
|
|
|
4491
5991
|
Value: string
|
|
4492
5992
|
}
|
|
4493
5993
|
|
|
5994
|
+
/**
|
|
5995
|
+
* 自定义名字服务器 IP 信息
|
|
5996
|
+
*/
|
|
5997
|
+
export interface VanityNameServersIps {
|
|
5998
|
+
/**
|
|
5999
|
+
* 自定义名字服务器名称
|
|
6000
|
+
*/
|
|
6001
|
+
Name: string
|
|
6002
|
+
|
|
6003
|
+
/**
|
|
6004
|
+
* 自定义名字服务器 IPv4 地址
|
|
6005
|
+
*/
|
|
6006
|
+
IPv4: string
|
|
6007
|
+
}
|
|
6008
|
+
|
|
6009
|
+
/**
|
|
6010
|
+
* DescribeDDosAttackSourceEvent返回参数结构体
|
|
6011
|
+
*/
|
|
6012
|
+
export interface DescribeDDosAttackSourceEventResponse {
|
|
6013
|
+
/**
|
|
6014
|
+
* DDos攻击源数据
|
|
6015
|
+
*/
|
|
6016
|
+
Data: DDosAttackSourceEventData
|
|
6017
|
+
|
|
6018
|
+
/**
|
|
6019
|
+
* 状态,1:失败,0:成功
|
|
6020
|
+
*/
|
|
6021
|
+
Status: number
|
|
6022
|
+
|
|
6023
|
+
/**
|
|
6024
|
+
* 返回信息
|
|
6025
|
+
*/
|
|
6026
|
+
Msg: string
|
|
6027
|
+
|
|
6028
|
+
/**
|
|
6029
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6030
|
+
*/
|
|
6031
|
+
RequestId?: string
|
|
6032
|
+
}
|
|
6033
|
+
|
|
4494
6034
|
/**
|
|
4495
6035
|
* DescribeZoneDetails请求参数结构体
|
|
4496
6036
|
*/
|
|
@@ -4517,24 +6057,70 @@ export interface DescribeDDoSPolicyRequest {
|
|
|
4517
6057
|
}
|
|
4518
6058
|
|
|
4519
6059
|
/**
|
|
4520
|
-
*
|
|
6060
|
+
* 安全数据Entry返回值
|
|
4521
6061
|
*/
|
|
4522
|
-
export interface
|
|
6062
|
+
export interface SecEntry {
|
|
4523
6063
|
/**
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
6064
|
+
* Entry的Key
|
|
6065
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6066
|
+
*/
|
|
6067
|
+
Key: string
|
|
4527
6068
|
|
|
4528
6069
|
/**
|
|
4529
|
-
*
|
|
6070
|
+
* Entry的Value
|
|
4530
6071
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4531
6072
|
*/
|
|
4532
|
-
|
|
6073
|
+
Value: Array<SecEntryValue>
|
|
6074
|
+
}
|
|
6075
|
+
|
|
6076
|
+
/**
|
|
6077
|
+
* DescribeDDosMajorAttackEvent请求参数结构体
|
|
6078
|
+
*/
|
|
6079
|
+
export interface DescribeDDosMajorAttackEventRequest {
|
|
6080
|
+
/**
|
|
6081
|
+
* 开始时间
|
|
6082
|
+
*/
|
|
6083
|
+
StartTime: string
|
|
4533
6084
|
|
|
4534
6085
|
/**
|
|
4535
|
-
*
|
|
6086
|
+
* 结束时间
|
|
4536
6087
|
*/
|
|
4537
|
-
|
|
6088
|
+
EndTime: string
|
|
6089
|
+
|
|
6090
|
+
/**
|
|
6091
|
+
* 条数
|
|
6092
|
+
*/
|
|
6093
|
+
PageSize: number
|
|
6094
|
+
|
|
6095
|
+
/**
|
|
6096
|
+
* 当前页
|
|
6097
|
+
*/
|
|
6098
|
+
PageNo: number
|
|
6099
|
+
|
|
6100
|
+
/**
|
|
6101
|
+
* ddos 策略组id集合
|
|
6102
|
+
*/
|
|
6103
|
+
PolicyIds?: Array<number>
|
|
6104
|
+
|
|
6105
|
+
/**
|
|
6106
|
+
* 协议类型,{tcp,udp,all}
|
|
6107
|
+
*/
|
|
6108
|
+
ProtocolType?: string
|
|
6109
|
+
|
|
6110
|
+
/**
|
|
6111
|
+
* 站点集合
|
|
6112
|
+
*/
|
|
6113
|
+
ZoneIds?: Array<string>
|
|
6114
|
+
}
|
|
6115
|
+
|
|
6116
|
+
/**
|
|
6117
|
+
* Quic配置项
|
|
6118
|
+
*/
|
|
6119
|
+
export interface Quic {
|
|
6120
|
+
/**
|
|
6121
|
+
* 是否启动Quic配置
|
|
6122
|
+
*/
|
|
6123
|
+
Switch: string
|
|
4538
6124
|
}
|
|
4539
6125
|
|
|
4540
6126
|
/**
|
|
@@ -4612,6 +6198,41 @@ excludeCustom:排除部分url参数
|
|
|
4612
6198
|
*/
|
|
4613
6199
|
export type DescribeSecurityPolicyRegionsRequest = null
|
|
4614
6200
|
|
|
6201
|
+
/**
|
|
6202
|
+
* 安全数据Entry对应的值
|
|
6203
|
+
*/
|
|
6204
|
+
export interface SecEntryValue {
|
|
6205
|
+
/**
|
|
6206
|
+
* 指标名称
|
|
6207
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6208
|
+
*/
|
|
6209
|
+
Metric: string
|
|
6210
|
+
|
|
6211
|
+
/**
|
|
6212
|
+
* 指标数据明细
|
|
6213
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6214
|
+
*/
|
|
6215
|
+
Detail: Array<TimingDataItem>
|
|
6216
|
+
|
|
6217
|
+
/**
|
|
6218
|
+
* 最大值
|
|
6219
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6220
|
+
*/
|
|
6221
|
+
Max: number
|
|
6222
|
+
|
|
6223
|
+
/**
|
|
6224
|
+
* 平均值
|
|
6225
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6226
|
+
*/
|
|
6227
|
+
Avg: number
|
|
6228
|
+
|
|
6229
|
+
/**
|
|
6230
|
+
* 数据总和
|
|
6231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6232
|
+
*/
|
|
6233
|
+
Sum: number
|
|
6234
|
+
}
|
|
6235
|
+
|
|
4615
6236
|
/**
|
|
4616
6237
|
* ReclaimZone请求参数结构体
|
|
4617
6238
|
*/
|
|
@@ -4729,6 +6350,51 @@ export interface ModifyDefaultCertificateResponse {
|
|
|
4729
6350
|
RequestId?: string
|
|
4730
6351
|
}
|
|
4731
6352
|
|
|
6353
|
+
/**
|
|
6354
|
+
* DescribeDDosAttackEvent请求参数结构体
|
|
6355
|
+
*/
|
|
6356
|
+
export interface DescribeDDosAttackEventRequest {
|
|
6357
|
+
/**
|
|
6358
|
+
* 开始时间
|
|
6359
|
+
*/
|
|
6360
|
+
StartTime: string
|
|
6361
|
+
|
|
6362
|
+
/**
|
|
6363
|
+
* 结束时间
|
|
6364
|
+
*/
|
|
6365
|
+
EndTime: string
|
|
6366
|
+
|
|
6367
|
+
/**
|
|
6368
|
+
* 条数
|
|
6369
|
+
*/
|
|
6370
|
+
PageSize: number
|
|
6371
|
+
|
|
6372
|
+
/**
|
|
6373
|
+
* 当前页
|
|
6374
|
+
*/
|
|
6375
|
+
PageNo: number
|
|
6376
|
+
|
|
6377
|
+
/**
|
|
6378
|
+
* ddos策略组id 集合
|
|
6379
|
+
*/
|
|
6380
|
+
PolicyIds?: Array<number>
|
|
6381
|
+
|
|
6382
|
+
/**
|
|
6383
|
+
* 站点集合
|
|
6384
|
+
*/
|
|
6385
|
+
ZoneIds?: Array<string>
|
|
6386
|
+
|
|
6387
|
+
/**
|
|
6388
|
+
* 协议类型,{tcp,udp,all}
|
|
6389
|
+
*/
|
|
6390
|
+
ProtocolType?: string
|
|
6391
|
+
|
|
6392
|
+
/**
|
|
6393
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
6394
|
+
*/
|
|
6395
|
+
IsShowDetail?: string
|
|
6396
|
+
}
|
|
6397
|
+
|
|
4732
6398
|
/**
|
|
4733
6399
|
* 客户端IP头部
|
|
4734
6400
|
*/
|
|
@@ -4905,6 +6571,24 @@ smart_status_observe-观察处置
|
|
|
4905
6571
|
Mode?: string
|
|
4906
6572
|
}
|
|
4907
6573
|
|
|
6574
|
+
/**
|
|
6575
|
+
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
6576
|
+
*/
|
|
6577
|
+
export interface MaxAge {
|
|
6578
|
+
/**
|
|
6579
|
+
* MaxAge 时间设置,单位秒,最大365天
|
|
6580
|
+
注意:时间为0,即不缓存。
|
|
6581
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6582
|
+
*/
|
|
6583
|
+
MaxAgeTime?: number
|
|
6584
|
+
|
|
6585
|
+
/**
|
|
6586
|
+
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
6587
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6588
|
+
*/
|
|
6589
|
+
FollowOrigin?: string
|
|
6590
|
+
}
|
|
6591
|
+
|
|
4908
6592
|
/**
|
|
4909
6593
|
* DescribePurgeTasks请求参数结构体
|
|
4910
6594
|
*/
|
|
@@ -4962,27 +6646,67 @@ export interface DescribePurgeTasksRequest {
|
|
|
4962
6646
|
}
|
|
4963
6647
|
|
|
4964
6648
|
/**
|
|
4965
|
-
*
|
|
6649
|
+
* 查询条件
|
|
4966
6650
|
*/
|
|
4967
|
-
export interface
|
|
6651
|
+
export interface QueryCondition {
|
|
4968
6652
|
/**
|
|
4969
|
-
*
|
|
6653
|
+
* 维度
|
|
4970
6654
|
*/
|
|
4971
|
-
|
|
6655
|
+
Key: string
|
|
6656
|
+
|
|
6657
|
+
/**
|
|
6658
|
+
* 操作符
|
|
6659
|
+
*/
|
|
6660
|
+
Operator: string
|
|
6661
|
+
|
|
6662
|
+
/**
|
|
6663
|
+
* 维度值
|
|
6664
|
+
*/
|
|
6665
|
+
Value: Array<string>
|
|
4972
6666
|
}
|
|
4973
6667
|
|
|
4974
6668
|
/**
|
|
4975
|
-
*
|
|
6669
|
+
* DescribeDnsData请求参数结构体
|
|
4976
6670
|
*/
|
|
4977
|
-
export interface
|
|
6671
|
+
export interface DescribeDnsDataRequest {
|
|
4978
6672
|
/**
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
Cache?: CacheConfigCache
|
|
6673
|
+
* 起始时间
|
|
6674
|
+
*/
|
|
6675
|
+
StartTime: string
|
|
4983
6676
|
|
|
4984
6677
|
/**
|
|
4985
|
-
|
|
6678
|
+
* 结束时间
|
|
6679
|
+
*/
|
|
6680
|
+
EndTime: string
|
|
6681
|
+
|
|
6682
|
+
/**
|
|
6683
|
+
* 过滤参数
|
|
6684
|
+
*/
|
|
6685
|
+
Filters?: Array<DnsDataFilter>
|
|
6686
|
+
|
|
6687
|
+
/**
|
|
6688
|
+
* 时间粒度,默认为1分钟粒度,服务端根据时间范围自适应。
|
|
6689
|
+
支持指定以下几种粒度:
|
|
6690
|
+
min:1分钟粒度
|
|
6691
|
+
5min:5分钟粒度
|
|
6692
|
+
hour:1小时粒度
|
|
6693
|
+
day:天粒度
|
|
6694
|
+
*/
|
|
6695
|
+
Interval?: string
|
|
6696
|
+
}
|
|
6697
|
+
|
|
6698
|
+
/**
|
|
6699
|
+
* 缓存规则配置。
|
|
6700
|
+
*/
|
|
6701
|
+
export interface CacheConfig {
|
|
6702
|
+
/**
|
|
6703
|
+
* 缓存配置
|
|
6704
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6705
|
+
*/
|
|
6706
|
+
Cache?: CacheConfigCache
|
|
6707
|
+
|
|
6708
|
+
/**
|
|
6709
|
+
* 不缓存配置
|
|
4986
6710
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4987
6711
|
*/
|
|
4988
6712
|
NoCache?: CacheConfigNoCache
|
|
@@ -4994,6 +6718,98 @@ export interface CacheConfig {
|
|
|
4994
6718
|
FollowOrigin?: CacheConfigFollowOrigin
|
|
4995
6719
|
}
|
|
4996
6720
|
|
|
6721
|
+
/**
|
|
6722
|
+
* DescribeDDosAttackEventDetail返回参数结构体
|
|
6723
|
+
*/
|
|
6724
|
+
export interface DescribeDDosAttackEventDetailResponse {
|
|
6725
|
+
/**
|
|
6726
|
+
* DDos攻击事件详情
|
|
6727
|
+
*/
|
|
6728
|
+
Data: DDosAttackEventDetailData
|
|
6729
|
+
|
|
6730
|
+
/**
|
|
6731
|
+
* 状态,1:失败,0:成功
|
|
6732
|
+
*/
|
|
6733
|
+
Status: number
|
|
6734
|
+
|
|
6735
|
+
/**
|
|
6736
|
+
* 返回信息
|
|
6737
|
+
*/
|
|
6738
|
+
Msg: string
|
|
6739
|
+
|
|
6740
|
+
/**
|
|
6741
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6742
|
+
*/
|
|
6743
|
+
RequestId?: string
|
|
6744
|
+
}
|
|
6745
|
+
|
|
6746
|
+
/**
|
|
6747
|
+
* ModifyApplicationProxyRule请求参数结构体
|
|
6748
|
+
*/
|
|
6749
|
+
export interface ModifyApplicationProxyRuleRequest {
|
|
6750
|
+
/**
|
|
6751
|
+
* 站点ID
|
|
6752
|
+
*/
|
|
6753
|
+
ZoneId: string
|
|
6754
|
+
|
|
6755
|
+
/**
|
|
6756
|
+
* 代理ID
|
|
6757
|
+
*/
|
|
6758
|
+
ProxyId: string
|
|
6759
|
+
|
|
6760
|
+
/**
|
|
6761
|
+
* 规则ID
|
|
6762
|
+
*/
|
|
6763
|
+
RuleId: string
|
|
6764
|
+
|
|
6765
|
+
/**
|
|
6766
|
+
* 协议,取值为TCP或者UDP
|
|
6767
|
+
*/
|
|
6768
|
+
Proto: string
|
|
6769
|
+
|
|
6770
|
+
/**
|
|
6771
|
+
* 端口,支持格式:
|
|
6772
|
+
80:80端口
|
|
6773
|
+
81-90:81至90端口
|
|
6774
|
+
*/
|
|
6775
|
+
Port: Array<string>
|
|
6776
|
+
|
|
6777
|
+
/**
|
|
6778
|
+
* 源站类型,取值:
|
|
6779
|
+
custom:手动添加
|
|
6780
|
+
origins:源站组
|
|
6781
|
+
load_balancing:负载均衡
|
|
6782
|
+
*/
|
|
6783
|
+
OriginType: string
|
|
6784
|
+
|
|
6785
|
+
/**
|
|
6786
|
+
* 源站信息:
|
|
6787
|
+
当OriginType=custom时,表示多个:
|
|
6788
|
+
IP:端口
|
|
6789
|
+
域名:端口
|
|
6790
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
6791
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
6792
|
+
*/
|
|
6793
|
+
OriginValue: Array<string>
|
|
6794
|
+
|
|
6795
|
+
/**
|
|
6796
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
6797
|
+
TOA:TOA
|
|
6798
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
6799
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
6800
|
+
OFF:不传递
|
|
6801
|
+
当Proto=UDP时,取值:
|
|
6802
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
6803
|
+
OFF:不传递
|
|
6804
|
+
*/
|
|
6805
|
+
ForwardClientIp?: string
|
|
6806
|
+
|
|
6807
|
+
/**
|
|
6808
|
+
* 是否开启会话保持
|
|
6809
|
+
*/
|
|
6810
|
+
SessionPersist?: boolean
|
|
6811
|
+
}
|
|
6812
|
+
|
|
4997
6813
|
/**
|
|
4998
6814
|
* ModifyDDoSPolicy请求参数结构体
|
|
4999
6815
|
*/
|
|
@@ -5047,43 +6863,164 @@ export interface ModifyZoneCnameSpeedUpResponse {
|
|
|
5047
6863
|
}
|
|
5048
6864
|
|
|
5049
6865
|
/**
|
|
5050
|
-
*
|
|
6866
|
+
* DescribeWebProtectionLog请求参数结构体
|
|
5051
6867
|
*/
|
|
5052
|
-
export interface
|
|
6868
|
+
export interface DescribeWebProtectionLogRequest {
|
|
5053
6869
|
/**
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
*/
|
|
5058
|
-
Name: string
|
|
6870
|
+
* 起始时间
|
|
6871
|
+
*/
|
|
6872
|
+
StartTime: string
|
|
5059
6873
|
|
|
5060
6874
|
/**
|
|
5061
|
-
*
|
|
6875
|
+
* 结束时间
|
|
5062
6876
|
*/
|
|
5063
|
-
|
|
6877
|
+
EndTime: string
|
|
5064
6878
|
|
|
5065
6879
|
/**
|
|
5066
|
-
*
|
|
6880
|
+
* 每页条数
|
|
5067
6881
|
*/
|
|
5068
|
-
|
|
6882
|
+
PageSize: number
|
|
6883
|
+
|
|
6884
|
+
/**
|
|
6885
|
+
* 当前页
|
|
6886
|
+
*/
|
|
6887
|
+
PageNo: number
|
|
6888
|
+
|
|
6889
|
+
/**
|
|
6890
|
+
* 站点集合
|
|
6891
|
+
*/
|
|
6892
|
+
ZoneIds?: Array<string>
|
|
6893
|
+
|
|
6894
|
+
/**
|
|
6895
|
+
* 域名集合
|
|
6896
|
+
*/
|
|
6897
|
+
Domains?: Array<string>
|
|
6898
|
+
|
|
6899
|
+
/**
|
|
6900
|
+
* 查询条件
|
|
6901
|
+
*/
|
|
6902
|
+
QueryCondition?: Array<QueryCondition>
|
|
5069
6903
|
}
|
|
5070
6904
|
|
|
5071
6905
|
/**
|
|
5072
|
-
*
|
|
6906
|
+
* 限速拦截日志
|
|
5073
6907
|
*/
|
|
5074
|
-
export interface
|
|
6908
|
+
export interface CCLogData {
|
|
5075
6909
|
/**
|
|
5076
|
-
*
|
|
5077
|
-
注意:时间为0,即不缓存。
|
|
6910
|
+
* CC拦截日志数据集合
|
|
5078
6911
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5079
6912
|
*/
|
|
5080
|
-
|
|
6913
|
+
List: Array<CCLog>
|
|
5081
6914
|
|
|
5082
6915
|
/**
|
|
5083
|
-
*
|
|
6916
|
+
* 当前页
|
|
5084
6917
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5085
6918
|
*/
|
|
5086
|
-
|
|
6919
|
+
PageNo: number
|
|
6920
|
+
|
|
6921
|
+
/**
|
|
6922
|
+
* 每页展示条数
|
|
6923
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6924
|
+
*/
|
|
6925
|
+
PageSize: number
|
|
6926
|
+
|
|
6927
|
+
/**
|
|
6928
|
+
* 总页数
|
|
6929
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6930
|
+
*/
|
|
6931
|
+
Pages: number
|
|
6932
|
+
|
|
6933
|
+
/**
|
|
6934
|
+
* 总条数
|
|
6935
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6936
|
+
*/
|
|
6937
|
+
TotalSize: number
|
|
6938
|
+
}
|
|
6939
|
+
|
|
6940
|
+
/**
|
|
6941
|
+
* DescribePrefetchTasks请求参数结构体
|
|
6942
|
+
*/
|
|
6943
|
+
export interface DescribePrefetchTasksRequest {
|
|
6944
|
+
/**
|
|
6945
|
+
* 任务ID
|
|
6946
|
+
*/
|
|
6947
|
+
JobId?: string
|
|
6948
|
+
|
|
6949
|
+
/**
|
|
6950
|
+
* 查询起始时间
|
|
6951
|
+
*/
|
|
6952
|
+
StartTime?: string
|
|
6953
|
+
|
|
6954
|
+
/**
|
|
6955
|
+
* 查询结束时间
|
|
6956
|
+
*/
|
|
6957
|
+
EndTime?: string
|
|
6958
|
+
|
|
6959
|
+
/**
|
|
6960
|
+
* 查询起始偏移量
|
|
6961
|
+
*/
|
|
6962
|
+
Offset?: number
|
|
6963
|
+
|
|
6964
|
+
/**
|
|
6965
|
+
* 查询最大返回的结果条数
|
|
6966
|
+
*/
|
|
6967
|
+
Limit?: number
|
|
6968
|
+
|
|
6969
|
+
/**
|
|
6970
|
+
* 查询的状态
|
|
6971
|
+
允许的值为:processing、success、failed、timeout、invalid
|
|
6972
|
+
*/
|
|
6973
|
+
Statuses?: Array<string>
|
|
6974
|
+
|
|
6975
|
+
/**
|
|
6976
|
+
* zone id
|
|
6977
|
+
*/
|
|
6978
|
+
ZoneId?: string
|
|
6979
|
+
|
|
6980
|
+
/**
|
|
6981
|
+
* 查询的域名列表
|
|
6982
|
+
*/
|
|
6983
|
+
Domains?: Array<string>
|
|
6984
|
+
|
|
6985
|
+
/**
|
|
6986
|
+
* 查询的资源
|
|
6987
|
+
*/
|
|
6988
|
+
Target?: string
|
|
6989
|
+
}
|
|
6990
|
+
|
|
6991
|
+
/**
|
|
6992
|
+
* 内容管理任务结果
|
|
6993
|
+
*/
|
|
6994
|
+
export interface Task {
|
|
6995
|
+
/**
|
|
6996
|
+
* 任务ID
|
|
6997
|
+
*/
|
|
6998
|
+
JobId: string
|
|
6999
|
+
|
|
7000
|
+
/**
|
|
7001
|
+
* 状态
|
|
7002
|
+
*/
|
|
7003
|
+
Status: string
|
|
7004
|
+
|
|
7005
|
+
/**
|
|
7006
|
+
* 资源
|
|
7007
|
+
*/
|
|
7008
|
+
Target: string
|
|
7009
|
+
|
|
7010
|
+
/**
|
|
7011
|
+
* 任务类型
|
|
7012
|
+
*/
|
|
7013
|
+
Type: string
|
|
7014
|
+
|
|
7015
|
+
/**
|
|
7016
|
+
* 任务创建时间
|
|
7017
|
+
*/
|
|
7018
|
+
CreateTime: string
|
|
7019
|
+
|
|
7020
|
+
/**
|
|
7021
|
+
* 任务完成时间
|
|
7022
|
+
*/
|
|
7023
|
+
UpdateTime: string
|
|
5087
7024
|
}
|
|
5088
7025
|
|
|
5089
7026
|
/**
|
|
@@ -5160,48 +7097,52 @@ export interface DescribeZoneDDoSPolicyResponse {
|
|
|
5160
7097
|
}
|
|
5161
7098
|
|
|
5162
7099
|
/**
|
|
5163
|
-
*
|
|
7100
|
+
* CNAME 状态
|
|
5164
7101
|
*/
|
|
5165
|
-
export interface
|
|
7102
|
+
export interface CnameStatus {
|
|
5166
7103
|
/**
|
|
5167
|
-
*
|
|
7104
|
+
* 记录名称
|
|
5168
7105
|
*/
|
|
5169
|
-
|
|
7106
|
+
Name: string
|
|
5170
7107
|
|
|
5171
7108
|
/**
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
7109
|
+
* CNAME 地址
|
|
7110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7111
|
+
*/
|
|
7112
|
+
Cname: string
|
|
7113
|
+
|
|
7114
|
+
/**
|
|
7115
|
+
* 状态
|
|
7116
|
+
生效:active
|
|
7117
|
+
不生效:moved
|
|
7118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7119
|
+
*/
|
|
7120
|
+
Status: string
|
|
5175
7121
|
}
|
|
5176
7122
|
|
|
5177
7123
|
/**
|
|
5178
|
-
*
|
|
7124
|
+
* DescribeDDosMajorAttackEvent返回参数结构体
|
|
5179
7125
|
*/
|
|
5180
|
-
export interface
|
|
7126
|
+
export interface DescribeDDosMajorAttackEventResponse {
|
|
5181
7127
|
/**
|
|
5182
|
-
*
|
|
7128
|
+
* DDos查询主攻击事件
|
|
5183
7129
|
*/
|
|
5184
|
-
|
|
7130
|
+
Data: DDosMajorAttackEventData
|
|
5185
7131
|
|
|
5186
7132
|
/**
|
|
5187
|
-
*
|
|
7133
|
+
* 状态,1:失败,0:成功
|
|
5188
7134
|
*/
|
|
5189
|
-
|
|
7135
|
+
Status: number
|
|
5190
7136
|
|
|
5191
7137
|
/**
|
|
5192
|
-
*
|
|
7138
|
+
* 返回消息
|
|
5193
7139
|
*/
|
|
5194
|
-
|
|
7140
|
+
Msg: string
|
|
5195
7141
|
|
|
5196
7142
|
/**
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
5min:5分钟粒度
|
|
5201
|
-
hour:1小时粒度
|
|
5202
|
-
day:天粒度
|
|
5203
|
-
*/
|
|
5204
|
-
Interval?: string
|
|
7143
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7144
|
+
*/
|
|
7145
|
+
RequestId?: string
|
|
5205
7146
|
}
|
|
5206
7147
|
|
|
5207
7148
|
/**
|
|
@@ -5314,6 +7255,31 @@ export interface DDoSFeaturesFilter {
|
|
|
5314
7255
|
MatchBegin2?: string
|
|
5315
7256
|
}
|
|
5316
7257
|
|
|
7258
|
+
/**
|
|
7259
|
+
* DescribeWebProtectionAttackEvents返回参数结构体
|
|
7260
|
+
*/
|
|
7261
|
+
export interface DescribeWebProtectionAttackEventsResponse {
|
|
7262
|
+
/**
|
|
7263
|
+
* DDos攻击事件数据
|
|
7264
|
+
*/
|
|
7265
|
+
Data: CCInterceptEventData
|
|
7266
|
+
|
|
7267
|
+
/**
|
|
7268
|
+
* 状态,1:失败,0:成功
|
|
7269
|
+
*/
|
|
7270
|
+
Status: number
|
|
7271
|
+
|
|
7272
|
+
/**
|
|
7273
|
+
* 返回消息
|
|
7274
|
+
*/
|
|
7275
|
+
Msg: string
|
|
7276
|
+
|
|
7277
|
+
/**
|
|
7278
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7279
|
+
*/
|
|
7280
|
+
RequestId?: string
|
|
7281
|
+
}
|
|
7282
|
+
|
|
5317
7283
|
/**
|
|
5318
7284
|
* CreatePurgeTask请求参数结构体
|
|
5319
7285
|
*/
|
|
@@ -5449,6 +7415,46 @@ instance:实例
|
|
|
5449
7415
|
RequestId?: string
|
|
5450
7416
|
}
|
|
5451
7417
|
|
|
7418
|
+
/**
|
|
7419
|
+
* DescribeBotLog请求参数结构体
|
|
7420
|
+
*/
|
|
7421
|
+
export interface DescribeBotLogRequest {
|
|
7422
|
+
/**
|
|
7423
|
+
* 起始时间
|
|
7424
|
+
*/
|
|
7425
|
+
StartTime: string
|
|
7426
|
+
|
|
7427
|
+
/**
|
|
7428
|
+
* 结束时间
|
|
7429
|
+
*/
|
|
7430
|
+
EndTime: string
|
|
7431
|
+
|
|
7432
|
+
/**
|
|
7433
|
+
* 每页条数
|
|
7434
|
+
*/
|
|
7435
|
+
PageSize: number
|
|
7436
|
+
|
|
7437
|
+
/**
|
|
7438
|
+
* 当前页
|
|
7439
|
+
*/
|
|
7440
|
+
PageNo: number
|
|
7441
|
+
|
|
7442
|
+
/**
|
|
7443
|
+
* 站点集合
|
|
7444
|
+
*/
|
|
7445
|
+
ZoneIds?: Array<string>
|
|
7446
|
+
|
|
7447
|
+
/**
|
|
7448
|
+
* 域名集合
|
|
7449
|
+
*/
|
|
7450
|
+
Domains?: Array<string>
|
|
7451
|
+
|
|
7452
|
+
/**
|
|
7453
|
+
* 查询条件
|
|
7454
|
+
*/
|
|
7455
|
+
QueryCondition?: Array<QueryCondition>
|
|
7456
|
+
}
|
|
7457
|
+
|
|
5452
7458
|
/**
|
|
5453
7459
|
* DownloadL7Logs返回参数结构体
|
|
5454
7460
|
*/
|
|
@@ -5460,118 +7466,334 @@ export interface DownloadL7LogsResponse {
|
|
|
5460
7466
|
Data: Array<L7OfflineLog>
|
|
5461
7467
|
|
|
5462
7468
|
/**
|
|
5463
|
-
* 页面大小
|
|
5464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5465
|
-
*/
|
|
7469
|
+
* 页面大小
|
|
7470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7471
|
+
*/
|
|
7472
|
+
PageSize: number
|
|
7473
|
+
|
|
7474
|
+
/**
|
|
7475
|
+
* 页号
|
|
7476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7477
|
+
*/
|
|
7478
|
+
PageNo: number
|
|
7479
|
+
|
|
7480
|
+
/**
|
|
7481
|
+
* 总页数
|
|
7482
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7483
|
+
*/
|
|
7484
|
+
Pages: number
|
|
7485
|
+
|
|
7486
|
+
/**
|
|
7487
|
+
* 总条数
|
|
7488
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7489
|
+
*/
|
|
7490
|
+
TotalSize: number
|
|
7491
|
+
|
|
7492
|
+
/**
|
|
7493
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7494
|
+
*/
|
|
7495
|
+
RequestId?: string
|
|
7496
|
+
}
|
|
7497
|
+
|
|
7498
|
+
/**
|
|
7499
|
+
* ddos 攻击事件的详情
|
|
7500
|
+
*/
|
|
7501
|
+
export interface DDosAttackEventDetailData {
|
|
7502
|
+
/**
|
|
7503
|
+
* 攻击状态
|
|
7504
|
+
*/
|
|
7505
|
+
AttackStatus: number
|
|
7506
|
+
|
|
7507
|
+
/**
|
|
7508
|
+
* 攻击类型
|
|
7509
|
+
*/
|
|
7510
|
+
AttackType: string
|
|
7511
|
+
|
|
7512
|
+
/**
|
|
7513
|
+
* 结束时间
|
|
7514
|
+
*/
|
|
7515
|
+
EndTime: number
|
|
7516
|
+
|
|
7517
|
+
/**
|
|
7518
|
+
* 开始时间
|
|
7519
|
+
*/
|
|
7520
|
+
StartTime: number
|
|
7521
|
+
|
|
7522
|
+
/**
|
|
7523
|
+
* 最大带宽
|
|
7524
|
+
*/
|
|
7525
|
+
MaxBandWidth: number
|
|
7526
|
+
|
|
7527
|
+
/**
|
|
7528
|
+
* 最大包速率
|
|
7529
|
+
*/
|
|
7530
|
+
PacketMaxRate: number
|
|
7531
|
+
|
|
7532
|
+
/**
|
|
7533
|
+
* 事件Id
|
|
7534
|
+
*/
|
|
7535
|
+
EventId: string
|
|
7536
|
+
|
|
7537
|
+
/**
|
|
7538
|
+
* ddos 策略组id
|
|
7539
|
+
*/
|
|
7540
|
+
PolicyId: number
|
|
7541
|
+
}
|
|
7542
|
+
|
|
7543
|
+
/**
|
|
7544
|
+
* CreateOriginGroup请求参数结构体
|
|
7545
|
+
*/
|
|
7546
|
+
export interface CreateOriginGroupRequest {
|
|
7547
|
+
/**
|
|
7548
|
+
* 源站组名称
|
|
7549
|
+
*/
|
|
7550
|
+
OriginName: string
|
|
7551
|
+
|
|
7552
|
+
/**
|
|
7553
|
+
* 配置类型,当OriginType=self 时,需要填写:
|
|
7554
|
+
area: 按区域配置
|
|
7555
|
+
weight: 按权重配置
|
|
7556
|
+
当OriginType=third_party 时,不需要填写
|
|
7557
|
+
*/
|
|
7558
|
+
Type: string
|
|
7559
|
+
|
|
7560
|
+
/**
|
|
7561
|
+
* 源站记录
|
|
7562
|
+
*/
|
|
7563
|
+
Record: Array<OriginRecord>
|
|
7564
|
+
|
|
7565
|
+
/**
|
|
7566
|
+
* 站点ID
|
|
7567
|
+
*/
|
|
7568
|
+
ZoneId: string
|
|
7569
|
+
|
|
7570
|
+
/**
|
|
7571
|
+
* 源站类型
|
|
7572
|
+
self:自有源站
|
|
7573
|
+
third_party:第三方源站
|
|
7574
|
+
*/
|
|
7575
|
+
OriginType?: string
|
|
7576
|
+
}
|
|
7577
|
+
|
|
7578
|
+
/**
|
|
7579
|
+
* DescribeTimingL4Data请求参数结构体
|
|
7580
|
+
*/
|
|
7581
|
+
export interface DescribeTimingL4DataRequest {
|
|
7582
|
+
/**
|
|
7583
|
+
* RFC3339格式,客户端时间
|
|
7584
|
+
*/
|
|
7585
|
+
StartTime: string
|
|
7586
|
+
|
|
7587
|
+
/**
|
|
7588
|
+
* RFC3339格式,客户端时间
|
|
7589
|
+
*/
|
|
7590
|
+
EndTime: string
|
|
7591
|
+
|
|
7592
|
+
/**
|
|
7593
|
+
* 指标列表
|
|
7594
|
+
*/
|
|
7595
|
+
MetricNames: Array<string>
|
|
7596
|
+
|
|
7597
|
+
/**
|
|
7598
|
+
* ZoneId列表,仅在zone/instance维度下查询时该参数有效
|
|
7599
|
+
*/
|
|
7600
|
+
ZoneIds?: Array<string>
|
|
7601
|
+
|
|
7602
|
+
/**
|
|
7603
|
+
* InstanceId列表,仅在Instance维度下查询时该参数有效
|
|
7604
|
+
*/
|
|
7605
|
+
InstanceIds?: Array<string>
|
|
7606
|
+
|
|
7607
|
+
/**
|
|
7608
|
+
* 协议类型, 该字段当前无效
|
|
7609
|
+
*/
|
|
7610
|
+
Protocol?: string
|
|
7611
|
+
|
|
7612
|
+
/**
|
|
7613
|
+
* 时间间隔,选填{min, 5min, hour, day}
|
|
7614
|
+
*/
|
|
7615
|
+
Interval?: string
|
|
7616
|
+
|
|
7617
|
+
/**
|
|
7618
|
+
* 规则ID,仅在instance维度有效
|
|
7619
|
+
*/
|
|
7620
|
+
RuleId?: string
|
|
7621
|
+
}
|
|
7622
|
+
|
|
7623
|
+
/**
|
|
7624
|
+
* DescribeHostsSetting请求参数结构体
|
|
7625
|
+
*/
|
|
7626
|
+
export interface DescribeHostsSettingRequest {
|
|
7627
|
+
/**
|
|
7628
|
+
* 站点ID
|
|
7629
|
+
*/
|
|
7630
|
+
ZoneId: string
|
|
7631
|
+
|
|
7632
|
+
/**
|
|
7633
|
+
* 分页查询偏移量,默认为 0
|
|
7634
|
+
*/
|
|
7635
|
+
Offset?: number
|
|
7636
|
+
|
|
7637
|
+
/**
|
|
7638
|
+
* 分页查询限制数目,默认为 100,最大可设置为 1000
|
|
7639
|
+
*/
|
|
7640
|
+
Limit?: number
|
|
7641
|
+
|
|
7642
|
+
/**
|
|
7643
|
+
* 指定域名查询
|
|
7644
|
+
*/
|
|
7645
|
+
Hosts?: Array<string>
|
|
7646
|
+
}
|
|
7647
|
+
|
|
7648
|
+
/**
|
|
7649
|
+
* DescribeZoneDDoSPolicy请求参数结构体
|
|
7650
|
+
*/
|
|
7651
|
+
export interface DescribeZoneDDoSPolicyRequest {
|
|
7652
|
+
/**
|
|
7653
|
+
* 一级域名id
|
|
7654
|
+
*/
|
|
7655
|
+
ZoneId?: string
|
|
7656
|
+
}
|
|
7657
|
+
|
|
7658
|
+
/**
|
|
7659
|
+
* DescribeDDosAttackData返回参数结构体
|
|
7660
|
+
*/
|
|
7661
|
+
export interface DescribeDDosAttackDataResponse {
|
|
7662
|
+
/**
|
|
7663
|
+
* DDos攻击数据
|
|
7664
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7665
|
+
*/
|
|
7666
|
+
Data: Array<SecEntry>
|
|
7667
|
+
|
|
7668
|
+
/**
|
|
7669
|
+
* 状态,1:失败,0:成功
|
|
7670
|
+
*/
|
|
7671
|
+
Status: number
|
|
7672
|
+
|
|
7673
|
+
/**
|
|
7674
|
+
* 返回数据
|
|
7675
|
+
*/
|
|
7676
|
+
Msg: string
|
|
7677
|
+
|
|
7678
|
+
/**
|
|
7679
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
7680
|
+
*/
|
|
7681
|
+
Interval: string
|
|
7682
|
+
|
|
7683
|
+
/**
|
|
7684
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7685
|
+
*/
|
|
7686
|
+
RequestId?: string
|
|
7687
|
+
}
|
|
7688
|
+
|
|
7689
|
+
/**
|
|
7690
|
+
* DescribeWebManagedRulesLog请求参数结构体
|
|
7691
|
+
*/
|
|
7692
|
+
export interface DescribeWebManagedRulesLogRequest {
|
|
7693
|
+
/**
|
|
7694
|
+
* 起始时间
|
|
7695
|
+
*/
|
|
7696
|
+
StartTime: string
|
|
7697
|
+
|
|
7698
|
+
/**
|
|
7699
|
+
* 结束时间
|
|
7700
|
+
*/
|
|
7701
|
+
EndTime: string
|
|
7702
|
+
|
|
7703
|
+
/**
|
|
7704
|
+
* 每页条数
|
|
7705
|
+
*/
|
|
5466
7706
|
PageSize: number
|
|
5467
7707
|
|
|
5468
7708
|
/**
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
*/
|
|
7709
|
+
* 当前页
|
|
7710
|
+
*/
|
|
5472
7711
|
PageNo: number
|
|
5473
7712
|
|
|
5474
7713
|
/**
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
Pages: number
|
|
7714
|
+
* 站点集合
|
|
7715
|
+
*/
|
|
7716
|
+
ZoneIds?: Array<string>
|
|
5479
7717
|
|
|
5480
7718
|
/**
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
TotalSize: number
|
|
7719
|
+
* 域名集合
|
|
7720
|
+
*/
|
|
7721
|
+
Domains?: Array<string>
|
|
5485
7722
|
|
|
5486
7723
|
/**
|
|
5487
|
-
*
|
|
7724
|
+
* 查询条件
|
|
5488
7725
|
*/
|
|
5489
|
-
|
|
7726
|
+
QueryCondition?: Array<QueryCondition>
|
|
5490
7727
|
}
|
|
5491
7728
|
|
|
5492
7729
|
/**
|
|
5493
|
-
*
|
|
7730
|
+
* CreateApplicationProxyRules返回参数结构体
|
|
5494
7731
|
*/
|
|
5495
|
-
export interface
|
|
7732
|
+
export interface CreateApplicationProxyRulesResponse {
|
|
5496
7733
|
/**
|
|
5497
|
-
*
|
|
7734
|
+
* 新增的规则ID数组
|
|
5498
7735
|
*/
|
|
5499
|
-
|
|
7736
|
+
RuleId: Array<string>
|
|
5500
7737
|
|
|
5501
7738
|
/**
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
*/
|
|
5507
|
-
Type: string
|
|
7739
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7740
|
+
*/
|
|
7741
|
+
RequestId?: string
|
|
7742
|
+
}
|
|
5508
7743
|
|
|
7744
|
+
/**
|
|
7745
|
+
* DescribeWebManagedRulesTopData请求参数结构体
|
|
7746
|
+
*/
|
|
7747
|
+
export interface DescribeWebManagedRulesTopDataRequest {
|
|
5509
7748
|
/**
|
|
5510
|
-
*
|
|
7749
|
+
* 开始时间
|
|
5511
7750
|
*/
|
|
5512
|
-
|
|
7751
|
+
StartTime: string
|
|
5513
7752
|
|
|
5514
7753
|
/**
|
|
5515
|
-
*
|
|
7754
|
+
* 结束时间
|
|
5516
7755
|
*/
|
|
5517
|
-
|
|
7756
|
+
EndTime: string
|
|
5518
7757
|
|
|
5519
7758
|
/**
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
*/
|
|
5524
|
-
OriginType?: string
|
|
5525
|
-
}
|
|
7759
|
+
* 过滤指标
|
|
7760
|
+
*/
|
|
7761
|
+
MetricName: string
|
|
5526
7762
|
|
|
5527
|
-
/**
|
|
5528
|
-
* DescribeHostsSetting请求参数结构体
|
|
5529
|
-
*/
|
|
5530
|
-
export interface DescribeHostsSettingRequest {
|
|
5531
7763
|
/**
|
|
5532
|
-
*
|
|
7764
|
+
* 查询前多少名,传值为0 全量
|
|
5533
7765
|
*/
|
|
5534
|
-
|
|
7766
|
+
Limit: number
|
|
5535
7767
|
|
|
5536
7768
|
/**
|
|
5537
|
-
*
|
|
7769
|
+
* 站点集合
|
|
5538
7770
|
*/
|
|
5539
|
-
|
|
7771
|
+
ZoneIds?: Array<string>
|
|
5540
7772
|
|
|
5541
7773
|
/**
|
|
5542
|
-
*
|
|
7774
|
+
* ddos策略组id 集合
|
|
5543
7775
|
*/
|
|
5544
|
-
|
|
7776
|
+
PolicyIds?: Array<number>
|
|
5545
7777
|
|
|
5546
7778
|
/**
|
|
5547
|
-
*
|
|
7779
|
+
* 端口号
|
|
5548
7780
|
*/
|
|
5549
|
-
|
|
5550
|
-
}
|
|
7781
|
+
Port?: number
|
|
5551
7782
|
|
|
5552
|
-
/**
|
|
5553
|
-
* DescribeZoneDDoSPolicy请求参数结构体
|
|
5554
|
-
*/
|
|
5555
|
-
export interface DescribeZoneDDoSPolicyRequest {
|
|
5556
7783
|
/**
|
|
5557
|
-
*
|
|
7784
|
+
* 协议类型,tcp,udp,all
|
|
5558
7785
|
*/
|
|
5559
|
-
|
|
5560
|
-
}
|
|
7786
|
+
ProtocolType?: string
|
|
5561
7787
|
|
|
5562
|
-
/**
|
|
5563
|
-
* CreateApplicationProxyRules返回参数结构体
|
|
5564
|
-
*/
|
|
5565
|
-
export interface CreateApplicationProxyRulesResponse {
|
|
5566
7788
|
/**
|
|
5567
|
-
*
|
|
7789
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
5568
7790
|
*/
|
|
5569
|
-
|
|
7791
|
+
AttackType?: string
|
|
5570
7792
|
|
|
5571
7793
|
/**
|
|
5572
|
-
*
|
|
7794
|
+
* 域名集合
|
|
5573
7795
|
*/
|
|
5574
|
-
|
|
7796
|
+
Domains?: Array<string>
|
|
5575
7797
|
}
|
|
5576
7798
|
|
|
5577
7799
|
/**
|
|
@@ -5618,61 +7840,55 @@ export interface DescribeIdentificationResponse {
|
|
|
5618
7840
|
}
|
|
5619
7841
|
|
|
5620
7842
|
/**
|
|
5621
|
-
*
|
|
7843
|
+
* DDos主攻击事件
|
|
5622
7844
|
*/
|
|
5623
|
-
export interface
|
|
7845
|
+
export interface DDosMajorAttackEvent {
|
|
5624
7846
|
/**
|
|
5625
|
-
*
|
|
7847
|
+
* ddos 策略组id
|
|
5626
7848
|
*/
|
|
5627
|
-
|
|
7849
|
+
PolicyId: number
|
|
5628
7850
|
|
|
5629
7851
|
/**
|
|
5630
|
-
*
|
|
7852
|
+
* 攻击最大带宽
|
|
5631
7853
|
*/
|
|
5632
|
-
|
|
7854
|
+
AttackMaxBandWidth: number
|
|
5633
7855
|
|
|
5634
7856
|
/**
|
|
5635
|
-
*
|
|
7857
|
+
* 攻击时间 单位为s
|
|
5636
7858
|
*/
|
|
5637
|
-
|
|
7859
|
+
AttackTime: number
|
|
7860
|
+
}
|
|
5638
7861
|
|
|
7862
|
+
/**
|
|
7863
|
+
* ModifyZoneCnameSpeedUp请求参数结构体
|
|
7864
|
+
*/
|
|
7865
|
+
export interface ModifyZoneCnameSpeedUpRequest {
|
|
5639
7866
|
/**
|
|
5640
|
-
*
|
|
7867
|
+
* 站点 ID
|
|
5641
7868
|
*/
|
|
5642
|
-
|
|
7869
|
+
Id: string
|
|
5643
7870
|
|
|
5644
7871
|
/**
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
7872
|
+
* CNAME 加速状态
|
|
7873
|
+
- enabled 开启
|
|
7874
|
+
- disabled 关闭
|
|
7875
|
+
*/
|
|
7876
|
+
Status: string
|
|
7877
|
+
}
|
|
5648
7878
|
|
|
7879
|
+
/**
|
|
7880
|
+
* ModifyLoadBalancing返回参数结构体
|
|
7881
|
+
*/
|
|
7882
|
+
export interface ModifyLoadBalancingResponse {
|
|
5649
7883
|
/**
|
|
5650
|
-
*
|
|
7884
|
+
* 负载均衡ID
|
|
5651
7885
|
*/
|
|
5652
|
-
|
|
7886
|
+
LoadBalancingId: string
|
|
5653
7887
|
|
|
5654
7888
|
/**
|
|
5655
|
-
*
|
|
7889
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5656
7890
|
*/
|
|
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
|
|
7891
|
+
RequestId?: string
|
|
5676
7892
|
}
|
|
5677
7893
|
|
|
5678
7894
|
/**
|
|
@@ -5716,6 +7932,31 @@ export interface DDoSUserAllowBlockIP {
|
|
|
5716
7932
|
Mask2?: number
|
|
5717
7933
|
}
|
|
5718
7934
|
|
|
7935
|
+
/**
|
|
7936
|
+
* DescribeBotLog返回参数结构体
|
|
7937
|
+
*/
|
|
7938
|
+
export interface DescribeBotLogResponse {
|
|
7939
|
+
/**
|
|
7940
|
+
* Bot攻击Data
|
|
7941
|
+
*/
|
|
7942
|
+
Data: BotLogData
|
|
7943
|
+
|
|
7944
|
+
/**
|
|
7945
|
+
* 状态,1:失败,0:成功
|
|
7946
|
+
*/
|
|
7947
|
+
Status: number
|
|
7948
|
+
|
|
7949
|
+
/**
|
|
7950
|
+
* 返回信息
|
|
7951
|
+
*/
|
|
7952
|
+
Msg: string
|
|
7953
|
+
|
|
7954
|
+
/**
|
|
7955
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7956
|
+
*/
|
|
7957
|
+
RequestId?: string
|
|
7958
|
+
}
|
|
7959
|
+
|
|
5719
7960
|
/**
|
|
5720
7961
|
* DescribeLoadBalancing返回参数结构体
|
|
5721
7962
|
*/
|
|
@@ -5736,6 +7977,37 @@ export interface DescribeLoadBalancingResponse {
|
|
|
5736
7977
|
RequestId?: string
|
|
5737
7978
|
}
|
|
5738
7979
|
|
|
7980
|
+
/**
|
|
7981
|
+
* DescribeWebProtectionData返回参数结构体
|
|
7982
|
+
*/
|
|
7983
|
+
export interface DescribeWebProtectionDataResponse {
|
|
7984
|
+
/**
|
|
7985
|
+
* 数据详情
|
|
7986
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7987
|
+
*/
|
|
7988
|
+
Data: Array<SecEntry>
|
|
7989
|
+
|
|
7990
|
+
/**
|
|
7991
|
+
* 状态,1:失败,0:成功
|
|
7992
|
+
*/
|
|
7993
|
+
Status: number
|
|
7994
|
+
|
|
7995
|
+
/**
|
|
7996
|
+
* 消息
|
|
7997
|
+
*/
|
|
7998
|
+
Msg: string
|
|
7999
|
+
|
|
8000
|
+
/**
|
|
8001
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
8002
|
+
*/
|
|
8003
|
+
Interval: string
|
|
8004
|
+
|
|
8005
|
+
/**
|
|
8006
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8007
|
+
*/
|
|
8008
|
+
RequestId?: string
|
|
8009
|
+
}
|
|
8010
|
+
|
|
5739
8011
|
/**
|
|
5740
8012
|
* ModifyDnssec返回参数结构体
|
|
5741
8013
|
*/
|
|
@@ -6060,6 +8332,57 @@ export interface OfflineCache {
|
|
|
6060
8332
|
Switch: string
|
|
6061
8333
|
}
|
|
6062
8334
|
|
|
8335
|
+
/**
|
|
8336
|
+
* DescribeOriginGroupDetail请求参数结构体
|
|
8337
|
+
*/
|
|
8338
|
+
export interface DescribeOriginGroupDetailRequest {
|
|
8339
|
+
/**
|
|
8340
|
+
* 源站组ID
|
|
8341
|
+
*/
|
|
8342
|
+
OriginId: string
|
|
8343
|
+
|
|
8344
|
+
/**
|
|
8345
|
+
* 站点ID
|
|
8346
|
+
*/
|
|
8347
|
+
ZoneId: string
|
|
8348
|
+
}
|
|
8349
|
+
|
|
8350
|
+
/**
|
|
8351
|
+
* DescribeDDosAttackEventDetail请求参数结构体
|
|
8352
|
+
*/
|
|
8353
|
+
export interface DescribeDDosAttackEventDetailRequest {
|
|
8354
|
+
/**
|
|
8355
|
+
* 事件id
|
|
8356
|
+
*/
|
|
8357
|
+
EventId: string
|
|
8358
|
+
}
|
|
8359
|
+
|
|
8360
|
+
/**
|
|
8361
|
+
* DescribeTimingL4Data返回参数结构体
|
|
8362
|
+
*/
|
|
8363
|
+
export interface DescribeTimingL4DataResponse {
|
|
8364
|
+
/**
|
|
8365
|
+
* 查询维度
|
|
8366
|
+
*/
|
|
8367
|
+
Type: string
|
|
8368
|
+
|
|
8369
|
+
/**
|
|
8370
|
+
* 时间间隔
|
|
8371
|
+
*/
|
|
8372
|
+
Interval: string
|
|
8373
|
+
|
|
8374
|
+
/**
|
|
8375
|
+
* 详细数据
|
|
8376
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8377
|
+
*/
|
|
8378
|
+
Data: Array<TimingDataRecord>
|
|
8379
|
+
|
|
8380
|
+
/**
|
|
8381
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8382
|
+
*/
|
|
8383
|
+
RequestId?: string
|
|
8384
|
+
}
|
|
8385
|
+
|
|
6063
8386
|
/**
|
|
6064
8387
|
* 安全Bot配置
|
|
6065
8388
|
*/
|
|
@@ -6091,18 +8414,43 @@ export interface BotConfig {
|
|
|
6091
8414
|
}
|
|
6092
8415
|
|
|
6093
8416
|
/**
|
|
6094
|
-
*
|
|
8417
|
+
* 时序类型详细数据
|
|
6095
8418
|
*/
|
|
6096
|
-
export interface
|
|
8419
|
+
export interface TimingTypeValue {
|
|
6097
8420
|
/**
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
8421
|
+
* 数据和
|
|
8422
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8423
|
+
*/
|
|
8424
|
+
Sum: number
|
|
6101
8425
|
|
|
6102
8426
|
/**
|
|
6103
|
-
|
|
8427
|
+
* 最大
|
|
8428
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8429
|
+
*/
|
|
8430
|
+
Max: number
|
|
8431
|
+
|
|
8432
|
+
/**
|
|
8433
|
+
* 平均
|
|
8434
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8435
|
+
*/
|
|
8436
|
+
Avg: number
|
|
8437
|
+
|
|
8438
|
+
/**
|
|
8439
|
+
* 指标名
|
|
6104
8440
|
*/
|
|
6105
|
-
|
|
8441
|
+
MetricName: string
|
|
8442
|
+
|
|
8443
|
+
/**
|
|
8444
|
+
* 废弃字段,即将下线,请使用Detail字段
|
|
8445
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8446
|
+
*/
|
|
8447
|
+
DetailData: Array<number>
|
|
8448
|
+
|
|
8449
|
+
/**
|
|
8450
|
+
* 详细数据
|
|
8451
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8452
|
+
*/
|
|
8453
|
+
Detail: Array<TimingDataItem>
|
|
6106
8454
|
}
|
|
6107
8455
|
|
|
6108
8456
|
/**
|