tencentcloud-sdk-nodejs-teo 4.0.361 → 4.0.362
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 +287 -0
- package/SERVICE_CHANGELOG.md +445 -95
- package/package.json +1 -1
- package/products.md +10 -10
- package/src/services/teo/v20220106/teo_client.ts +642 -398
- package/src/services/teo/v20220106/teo_models.ts +2970 -749
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +197 -125
- package/tencentcloud/services/teo/v20220106/teo_client.js +294 -186
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +2464 -593
|
@@ -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,88 +181,68 @@ 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
|
-
|
|
161
|
-
|
|
162
|
-
/**
|
|
163
|
-
* 用户当前使用的 NS 列表
|
|
164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
165
|
-
*/
|
|
166
|
-
OriginalNameServers: Array<string>
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* 腾讯云分配给用户的 NS 列表
|
|
170
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
171
|
-
*/
|
|
172
|
-
NameServers: Array<string>
|
|
173
|
-
|
|
174
|
-
/**
|
|
175
|
-
* 站点状态
|
|
176
|
-
- active:NS 已切换
|
|
177
|
-
- pending:NS 未切换
|
|
178
|
-
- moved:NS 已切走
|
|
179
|
-
- deactivated:被封禁
|
|
180
|
-
*/
|
|
181
|
-
Status: string
|
|
195
|
+
Status: number
|
|
182
196
|
|
|
183
197
|
/**
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
*/
|
|
188
|
-
Type: string
|
|
198
|
+
* 返回消息
|
|
199
|
+
*/
|
|
200
|
+
Msg: string
|
|
189
201
|
|
|
190
202
|
/**
|
|
191
|
-
*
|
|
203
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
192
204
|
*/
|
|
193
|
-
|
|
205
|
+
RequestId?: string
|
|
206
|
+
}
|
|
194
207
|
|
|
208
|
+
/**
|
|
209
|
+
* DescribeOriginGroup返回参数结构体
|
|
210
|
+
*/
|
|
211
|
+
export interface DescribeOriginGroupResponse {
|
|
195
212
|
/**
|
|
196
|
-
*
|
|
213
|
+
* 源站组信息
|
|
197
214
|
*/
|
|
198
|
-
|
|
215
|
+
Data: Array<OriginGroup>
|
|
199
216
|
|
|
200
217
|
/**
|
|
201
|
-
*
|
|
218
|
+
* 记录总数
|
|
202
219
|
*/
|
|
203
|
-
|
|
220
|
+
TotalCount: number
|
|
204
221
|
|
|
205
222
|
/**
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
223
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
224
|
+
*/
|
|
225
|
+
RequestId?: string
|
|
226
|
+
}
|
|
210
227
|
|
|
228
|
+
/**
|
|
229
|
+
* DescribeWebManagedRulesAttackEvents返回参数结构体
|
|
230
|
+
*/
|
|
231
|
+
export interface DescribeWebManagedRulesAttackEventsResponse {
|
|
211
232
|
/**
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
VanityNameServersIps: Array<VanityNameServersIps>
|
|
233
|
+
* Web攻击事件数据
|
|
234
|
+
*/
|
|
235
|
+
Data: WebEventData
|
|
216
236
|
|
|
217
237
|
/**
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
*/
|
|
222
|
-
CnameSpeedUp: string
|
|
238
|
+
* 状态,1:失败,0:成功
|
|
239
|
+
*/
|
|
240
|
+
Status: number
|
|
223
241
|
|
|
224
242
|
/**
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
229
|
-
*/
|
|
230
|
-
CnameStatus: string
|
|
243
|
+
* 返回数据
|
|
244
|
+
*/
|
|
245
|
+
Msg: string
|
|
231
246
|
|
|
232
247
|
/**
|
|
233
248
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -236,23 +251,21 @@ export interface DescribeZoneDetailsResponse {
|
|
|
236
251
|
}
|
|
237
252
|
|
|
238
253
|
/**
|
|
239
|
-
*
|
|
254
|
+
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
240
255
|
*/
|
|
241
|
-
export interface
|
|
242
|
-
/**
|
|
243
|
-
* 源站组信息
|
|
244
|
-
*/
|
|
245
|
-
Data: Array<OriginGroup>
|
|
246
|
-
|
|
256
|
+
export interface MaxAge {
|
|
247
257
|
/**
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
258
|
+
* MaxAge 时间设置,单位秒,最大365天
|
|
259
|
+
注意:时间为0,即不缓存。
|
|
260
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
261
|
+
*/
|
|
262
|
+
MaxAgeTime?: number
|
|
251
263
|
|
|
252
264
|
/**
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
265
|
+
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
267
|
+
*/
|
|
268
|
+
FollowOrigin?: string
|
|
256
269
|
}
|
|
257
270
|
|
|
258
271
|
/**
|
|
@@ -304,6 +317,31 @@ off:关闭
|
|
|
304
317
|
Hsts?: Hsts
|
|
305
318
|
}
|
|
306
319
|
|
|
320
|
+
/**
|
|
321
|
+
* 安全防护实例
|
|
322
|
+
*/
|
|
323
|
+
export interface SecurityEntity {
|
|
324
|
+
/**
|
|
325
|
+
* 用户appid
|
|
326
|
+
*/
|
|
327
|
+
AppId: number
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* 一级域名
|
|
331
|
+
*/
|
|
332
|
+
ZoneId: string
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* 二级域名
|
|
336
|
+
*/
|
|
337
|
+
Entity: string
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* 类型 domain/application
|
|
341
|
+
*/
|
|
342
|
+
EntityType: string
|
|
343
|
+
}
|
|
344
|
+
|
|
307
345
|
/**
|
|
308
346
|
* 源站组查询过滤参数
|
|
309
347
|
*/
|
|
@@ -320,18 +358,75 @@ export interface OriginFilter {
|
|
|
320
358
|
}
|
|
321
359
|
|
|
322
360
|
/**
|
|
323
|
-
*
|
|
361
|
+
* 限速拦截日志
|
|
324
362
|
*/
|
|
325
|
-
export interface
|
|
363
|
+
export interface BotLogData {
|
|
326
364
|
/**
|
|
327
|
-
|
|
365
|
+
* Bot攻击日志数据集合
|
|
366
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
367
|
+
*/
|
|
368
|
+
List: Array<BotLog>
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* 当前页
|
|
372
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
373
|
+
*/
|
|
374
|
+
PageNo: number
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* 每页展示条数
|
|
378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
379
|
+
*/
|
|
380
|
+
PageSize: number
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* 总页数
|
|
384
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
385
|
+
*/
|
|
386
|
+
Pages: number
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* 总条数
|
|
390
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
391
|
+
*/
|
|
392
|
+
TotalSize: number
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* DescribeZones请求参数结构体
|
|
397
|
+
*/
|
|
398
|
+
export interface DescribeZonesRequest {
|
|
399
|
+
/**
|
|
400
|
+
* 分页参数,页偏移
|
|
328
401
|
*/
|
|
329
|
-
|
|
402
|
+
Offset?: number
|
|
330
403
|
|
|
331
404
|
/**
|
|
332
|
-
*
|
|
405
|
+
* 分页参数,每页返回的站点个数
|
|
333
406
|
*/
|
|
334
|
-
|
|
407
|
+
Limit?: number
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* 查询条件过滤器,复杂类型
|
|
411
|
+
*/
|
|
412
|
+
Filters?: Array<ZoneFilter>
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* 速率限制模板
|
|
417
|
+
*/
|
|
418
|
+
export interface RateLimitTemplate {
|
|
419
|
+
/**
|
|
420
|
+
* 模板名称
|
|
421
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
422
|
+
*/
|
|
423
|
+
Mode?: string
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* 模板值详情
|
|
427
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
428
|
+
*/
|
|
429
|
+
Detail?: RateLimitTemplateDetail
|
|
335
430
|
}
|
|
336
431
|
|
|
337
432
|
/**
|
|
@@ -472,6 +567,31 @@ export interface DescribePrefetchTasksResponse {
|
|
|
472
567
|
RequestId?: string
|
|
473
568
|
}
|
|
474
569
|
|
|
570
|
+
/**
|
|
571
|
+
* DescribeDDosAttackEvent返回参数结构体
|
|
572
|
+
*/
|
|
573
|
+
export interface DescribeDDosAttackEventResponse {
|
|
574
|
+
/**
|
|
575
|
+
* DDos攻击事件数据
|
|
576
|
+
*/
|
|
577
|
+
Data: DDosAttackEventData
|
|
578
|
+
|
|
579
|
+
/**
|
|
580
|
+
* 状态,1:失败,0:成功
|
|
581
|
+
*/
|
|
582
|
+
Status: number
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* 返回信息
|
|
586
|
+
*/
|
|
587
|
+
Msg: string
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
591
|
+
*/
|
|
592
|
+
RequestId?: string
|
|
593
|
+
}
|
|
594
|
+
|
|
475
595
|
/**
|
|
476
596
|
* DeleteApplicationProxy请求参数结构体
|
|
477
597
|
*/
|
|
@@ -898,38 +1018,200 @@ export interface ModifyOriginGroupResponse {
|
|
|
898
1018
|
}
|
|
899
1019
|
|
|
900
1020
|
/**
|
|
901
|
-
*
|
|
1021
|
+
* DescribeZoneDetails返回参数结构体
|
|
902
1022
|
*/
|
|
903
|
-
export interface
|
|
1023
|
+
export interface DescribeZoneDetailsResponse {
|
|
904
1024
|
/**
|
|
905
|
-
*
|
|
1025
|
+
* 站点 ID
|
|
906
1026
|
*/
|
|
907
|
-
|
|
1027
|
+
Id: string
|
|
908
1028
|
|
|
909
1029
|
/**
|
|
910
|
-
*
|
|
1030
|
+
* 站点名称
|
|
911
1031
|
*/
|
|
912
|
-
|
|
1032
|
+
Name: string
|
|
913
1033
|
|
|
914
1034
|
/**
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
1035
|
+
* 用户当前使用的 NS 列表
|
|
1036
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1037
|
+
*/
|
|
1038
|
+
OriginalNameServers: Array<string>
|
|
918
1039
|
|
|
919
1040
|
/**
|
|
920
|
-
|
|
921
|
-
|
|
1041
|
+
* 腾讯云分配给用户的 NS 列表
|
|
1042
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1043
|
+
*/
|
|
1044
|
+
NameServers: Array<string>
|
|
1045
|
+
|
|
1046
|
+
/**
|
|
1047
|
+
* 站点状态
|
|
1048
|
+
- active:NS 已切换
|
|
1049
|
+
- pending:NS 未切换
|
|
1050
|
+
- moved:NS 已切走
|
|
1051
|
+
- deactivated:被封禁
|
|
1052
|
+
*/
|
|
1053
|
+
Status: string
|
|
1054
|
+
|
|
1055
|
+
/**
|
|
1056
|
+
* 站点接入方式
|
|
1057
|
+
- full:NS 接入
|
|
1058
|
+
- partial:CNAME 接入
|
|
1059
|
+
*/
|
|
922
1060
|
Type: string
|
|
923
1061
|
|
|
924
1062
|
/**
|
|
925
|
-
*
|
|
1063
|
+
* 站点是否关闭
|
|
926
1064
|
*/
|
|
927
|
-
|
|
1065
|
+
Paused: boolean
|
|
928
1066
|
|
|
929
1067
|
/**
|
|
930
|
-
*
|
|
1068
|
+
* 站点创建时间
|
|
931
1069
|
*/
|
|
932
|
-
|
|
1070
|
+
CreatedOn: string
|
|
1071
|
+
|
|
1072
|
+
/**
|
|
1073
|
+
* 站点修改时间
|
|
1074
|
+
*/
|
|
1075
|
+
ModifiedOn: string
|
|
1076
|
+
|
|
1077
|
+
/**
|
|
1078
|
+
* 用户自定义 NS 信息
|
|
1079
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1080
|
+
*/
|
|
1081
|
+
VanityNameServers: VanityNameServers
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* 用户自定义 NS IP 信息
|
|
1085
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1086
|
+
*/
|
|
1087
|
+
VanityNameServersIps: Array<VanityNameServersIps>
|
|
1088
|
+
|
|
1089
|
+
/**
|
|
1090
|
+
* 是否开启 CNAME 加速
|
|
1091
|
+
- enabled:开启
|
|
1092
|
+
- disabled:关闭
|
|
1093
|
+
*/
|
|
1094
|
+
CnameSpeedUp: string
|
|
1095
|
+
|
|
1096
|
+
/**
|
|
1097
|
+
* cname切换验证状态
|
|
1098
|
+
- finished 切换完成
|
|
1099
|
+
- pending 切换验证中
|
|
1100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1101
|
+
*/
|
|
1102
|
+
CnameStatus: string
|
|
1103
|
+
|
|
1104
|
+
/**
|
|
1105
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1106
|
+
*/
|
|
1107
|
+
RequestId?: string
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
/**
|
|
1111
|
+
* Bot攻击日志
|
|
1112
|
+
*/
|
|
1113
|
+
export interface BotLog {
|
|
1114
|
+
/**
|
|
1115
|
+
* 攻击时间
|
|
1116
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1117
|
+
*/
|
|
1118
|
+
AttackTime: number
|
|
1119
|
+
|
|
1120
|
+
/**
|
|
1121
|
+
* 攻击ip
|
|
1122
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1123
|
+
*/
|
|
1124
|
+
AttackIp: string
|
|
1125
|
+
|
|
1126
|
+
/**
|
|
1127
|
+
* 域名
|
|
1128
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1129
|
+
*/
|
|
1130
|
+
Domain: string
|
|
1131
|
+
|
|
1132
|
+
/**
|
|
1133
|
+
* 请求uri
|
|
1134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1135
|
+
*/
|
|
1136
|
+
RequestUri: string
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* 攻击类型
|
|
1140
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1141
|
+
*/
|
|
1142
|
+
AttackType: string
|
|
1143
|
+
|
|
1144
|
+
/**
|
|
1145
|
+
* 请求方法
|
|
1146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1147
|
+
*/
|
|
1148
|
+
RequestMethod: string
|
|
1149
|
+
|
|
1150
|
+
/**
|
|
1151
|
+
* 攻击内容
|
|
1152
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1153
|
+
*/
|
|
1154
|
+
AttackContent: string
|
|
1155
|
+
|
|
1156
|
+
/**
|
|
1157
|
+
* 风险等级
|
|
1158
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1159
|
+
*/
|
|
1160
|
+
RiskLevel: string
|
|
1161
|
+
|
|
1162
|
+
/**
|
|
1163
|
+
* 规则编号
|
|
1164
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1165
|
+
*/
|
|
1166
|
+
RuleId: number
|
|
1167
|
+
|
|
1168
|
+
/**
|
|
1169
|
+
* IP所在国家
|
|
1170
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1171
|
+
*/
|
|
1172
|
+
SipCountryCode: string
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* 事件id
|
|
1176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1177
|
+
*/
|
|
1178
|
+
EventId: string
|
|
1179
|
+
|
|
1180
|
+
/**
|
|
1181
|
+
* 处置方式
|
|
1182
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1183
|
+
*/
|
|
1184
|
+
DisposalMethod: string
|
|
1185
|
+
|
|
1186
|
+
/**
|
|
1187
|
+
* http_log
|
|
1188
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1189
|
+
*/
|
|
1190
|
+
HttpLog: string
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* user agent
|
|
1194
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1195
|
+
*/
|
|
1196
|
+
Ua: string
|
|
1197
|
+
|
|
1198
|
+
/**
|
|
1199
|
+
* 检出方法
|
|
1200
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1201
|
+
*/
|
|
1202
|
+
DetectionMethod: string
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* 置信度
|
|
1206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1207
|
+
*/
|
|
1208
|
+
Confidence: string
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* 恶意度
|
|
1212
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1213
|
+
*/
|
|
1214
|
+
Maliciousness: string
|
|
933
1215
|
}
|
|
934
1216
|
|
|
935
1217
|
/**
|
|
@@ -1179,6 +1461,46 @@ export interface ModifyZoneResponse {
|
|
|
1179
1461
|
RequestId?: string
|
|
1180
1462
|
}
|
|
1181
1463
|
|
|
1464
|
+
/**
|
|
1465
|
+
* DescribeDDosAttackSourceEvent请求参数结构体
|
|
1466
|
+
*/
|
|
1467
|
+
export interface DescribeDDosAttackSourceEventRequest {
|
|
1468
|
+
/**
|
|
1469
|
+
* 开始时间
|
|
1470
|
+
*/
|
|
1471
|
+
StartTime: string
|
|
1472
|
+
|
|
1473
|
+
/**
|
|
1474
|
+
* 结束时间
|
|
1475
|
+
*/
|
|
1476
|
+
EndTime: string
|
|
1477
|
+
|
|
1478
|
+
/**
|
|
1479
|
+
* 条数
|
|
1480
|
+
*/
|
|
1481
|
+
PageSize: number
|
|
1482
|
+
|
|
1483
|
+
/**
|
|
1484
|
+
* 当前页
|
|
1485
|
+
*/
|
|
1486
|
+
PageNo: number
|
|
1487
|
+
|
|
1488
|
+
/**
|
|
1489
|
+
* ddos策略组id 集合
|
|
1490
|
+
*/
|
|
1491
|
+
PolicyIds?: Array<number>
|
|
1492
|
+
|
|
1493
|
+
/**
|
|
1494
|
+
* 站点集合
|
|
1495
|
+
*/
|
|
1496
|
+
ZoneIds?: Array<string>
|
|
1497
|
+
|
|
1498
|
+
/**
|
|
1499
|
+
* 协议类型,{tcp,udp,all}
|
|
1500
|
+
*/
|
|
1501
|
+
ProtocolType?: string
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1182
1504
|
/**
|
|
1183
1505
|
* ModifyZone请求参数结构体
|
|
1184
1506
|
*/
|
|
@@ -1217,23 +1539,38 @@ export interface DeleteZoneResponse {
|
|
|
1217
1539
|
}
|
|
1218
1540
|
|
|
1219
1541
|
/**
|
|
1220
|
-
*
|
|
1542
|
+
* DDos攻击事件数据
|
|
1221
1543
|
*/
|
|
1222
|
-
export interface
|
|
1544
|
+
export interface DDosAttackEventData {
|
|
1223
1545
|
/**
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1546
|
+
* 攻击事件数据集合
|
|
1547
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1548
|
+
*/
|
|
1549
|
+
List: Array<DDosAttackEvent>
|
|
1227
1550
|
|
|
1228
1551
|
/**
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1552
|
+
* 当前页
|
|
1553
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1554
|
+
*/
|
|
1555
|
+
PageNo: number
|
|
1232
1556
|
|
|
1233
1557
|
/**
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1558
|
+
* 每页展示条数
|
|
1559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1560
|
+
*/
|
|
1561
|
+
PageSize: number
|
|
1562
|
+
|
|
1563
|
+
/**
|
|
1564
|
+
* 总页数
|
|
1565
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1566
|
+
*/
|
|
1567
|
+
Pages: number
|
|
1568
|
+
|
|
1569
|
+
/**
|
|
1570
|
+
* 总条数
|
|
1571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1572
|
+
*/
|
|
1573
|
+
TotalSize: number
|
|
1237
1574
|
}
|
|
1238
1575
|
|
|
1239
1576
|
/**
|
|
@@ -1300,6 +1637,51 @@ export interface DeleteApplicationProxyRuleResponse {
|
|
|
1300
1637
|
RequestId?: string
|
|
1301
1638
|
}
|
|
1302
1639
|
|
|
1640
|
+
/**
|
|
1641
|
+
* DDos攻击事件对象
|
|
1642
|
+
*/
|
|
1643
|
+
export interface DDosAttackSourceEvent {
|
|
1644
|
+
/**
|
|
1645
|
+
* 攻击源ip
|
|
1646
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1647
|
+
*/
|
|
1648
|
+
AttackSourceIp: string
|
|
1649
|
+
|
|
1650
|
+
/**
|
|
1651
|
+
* 地区(国家)
|
|
1652
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1653
|
+
*/
|
|
1654
|
+
AttackRegion: string
|
|
1655
|
+
|
|
1656
|
+
/**
|
|
1657
|
+
* 累计攻击流量
|
|
1658
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1659
|
+
*/
|
|
1660
|
+
AttackFlow: number
|
|
1661
|
+
|
|
1662
|
+
/**
|
|
1663
|
+
* 累计攻击包量
|
|
1664
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1665
|
+
*/
|
|
1666
|
+
AttackPacketNum: number
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
/**
|
|
1670
|
+
* L7数据分析时序数据
|
|
1671
|
+
*/
|
|
1672
|
+
export interface TimingDataRecord {
|
|
1673
|
+
/**
|
|
1674
|
+
* 查询维度值
|
|
1675
|
+
*/
|
|
1676
|
+
TypeKey: string
|
|
1677
|
+
|
|
1678
|
+
/**
|
|
1679
|
+
* 详细时序数据
|
|
1680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1681
|
+
*/
|
|
1682
|
+
TypeValue: Array<TimingTypeValue>
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1303
1685
|
/**
|
|
1304
1686
|
* ddos端口过滤
|
|
1305
1687
|
*/
|
|
@@ -1330,6 +1712,21 @@ export interface DeleteOriginGroupRequest {
|
|
|
1330
1712
|
ZoneId: string
|
|
1331
1713
|
}
|
|
1332
1714
|
|
|
1715
|
+
/**
|
|
1716
|
+
* 用于对top数据排序的结构体
|
|
1717
|
+
*/
|
|
1718
|
+
export interface TopDetailData {
|
|
1719
|
+
/**
|
|
1720
|
+
* 字段名
|
|
1721
|
+
*/
|
|
1722
|
+
Key: string
|
|
1723
|
+
|
|
1724
|
+
/**
|
|
1725
|
+
* 字段值
|
|
1726
|
+
*/
|
|
1727
|
+
Value: number
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1333
1730
|
/**
|
|
1334
1731
|
* ModifyHostsCertificate返回参数结构体
|
|
1335
1732
|
*/
|
|
@@ -1451,24 +1848,23 @@ export interface L7OfflineLog {
|
|
|
1451
1848
|
}
|
|
1452
1849
|
|
|
1453
1850
|
/**
|
|
1454
|
-
*
|
|
1851
|
+
* ModifyHostsCertificate请求参数结构体
|
|
1455
1852
|
*/
|
|
1456
|
-
export interface
|
|
1853
|
+
export interface ModifyHostsCertificateRequest {
|
|
1457
1854
|
/**
|
|
1458
|
-
*
|
|
1855
|
+
* Zone ID
|
|
1459
1856
|
*/
|
|
1460
|
-
|
|
1857
|
+
ZoneId: string
|
|
1461
1858
|
|
|
1462
1859
|
/**
|
|
1463
|
-
*
|
|
1860
|
+
* 本次变更的域名
|
|
1464
1861
|
*/
|
|
1465
|
-
|
|
1862
|
+
Hosts: Array<string>
|
|
1466
1863
|
|
|
1467
1864
|
/**
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
ObserveRuleIDs?: Array<number>
|
|
1865
|
+
* 证书信息, 只需要传入 CertId 即可, 如果为空, 则使用默认证书
|
|
1866
|
+
*/
|
|
1867
|
+
CertInfo?: Array<ServerCertInfo>
|
|
1472
1868
|
}
|
|
1473
1869
|
|
|
1474
1870
|
/**
|
|
@@ -1637,6 +2033,28 @@ export interface Zone {
|
|
|
1637
2033
|
CnameStatus: string
|
|
1638
2034
|
}
|
|
1639
2035
|
|
|
2036
|
+
/**
|
|
2037
|
+
* 站点查询过滤条件
|
|
2038
|
+
*/
|
|
2039
|
+
export interface ZoneFilter {
|
|
2040
|
+
/**
|
|
2041
|
+
* 过滤字段名,支持的列表如下:
|
|
2042
|
+
- name: 站点名。
|
|
2043
|
+
- status: 站点状态
|
|
2044
|
+
*/
|
|
2045
|
+
Name: string
|
|
2046
|
+
|
|
2047
|
+
/**
|
|
2048
|
+
* 过滤字段值
|
|
2049
|
+
*/
|
|
2050
|
+
Values: Array<string>
|
|
2051
|
+
|
|
2052
|
+
/**
|
|
2053
|
+
* 是否启用模糊查询,仅支持过滤字段名为name。模糊查询时,Values长度最大为1
|
|
2054
|
+
*/
|
|
2055
|
+
Fuzzy?: boolean
|
|
2056
|
+
}
|
|
2057
|
+
|
|
1640
2058
|
/**
|
|
1641
2059
|
* DescribeSecurityPolicyManagedRulesId请求参数结构体
|
|
1642
2060
|
*/
|
|
@@ -1755,13 +2173,28 @@ offline: 停用
|
|
|
1755
2173
|
}
|
|
1756
2174
|
|
|
1757
2175
|
/**
|
|
1758
|
-
*
|
|
2176
|
+
* DescribeDDosAttackTopData返回参数结构体
|
|
1759
2177
|
*/
|
|
1760
|
-
export interface
|
|
2178
|
+
export interface DescribeDDosAttackTopDataResponse {
|
|
1761
2179
|
/**
|
|
1762
|
-
*
|
|
2180
|
+
* topn数据
|
|
1763
2181
|
*/
|
|
1764
|
-
|
|
2182
|
+
Data: Array<TopNEntry>
|
|
2183
|
+
|
|
2184
|
+
/**
|
|
2185
|
+
* 状态,1:失败,0:成功
|
|
2186
|
+
*/
|
|
2187
|
+
Status: number
|
|
2188
|
+
|
|
2189
|
+
/**
|
|
2190
|
+
* 返回消息
|
|
2191
|
+
*/
|
|
2192
|
+
Msg: string
|
|
2193
|
+
|
|
2194
|
+
/**
|
|
2195
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2196
|
+
*/
|
|
2197
|
+
RequestId?: string
|
|
1765
2198
|
}
|
|
1766
2199
|
|
|
1767
2200
|
/**
|
|
@@ -1825,70 +2258,25 @@ export interface DescribeLoadBalancingRequest {
|
|
|
1825
2258
|
}
|
|
1826
2259
|
|
|
1827
2260
|
/**
|
|
1828
|
-
*
|
|
2261
|
+
* CC拦截事件
|
|
1829
2262
|
*/
|
|
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
|
-
|
|
2263
|
+
export interface CCInterceptEvent {
|
|
1866
2264
|
/**
|
|
1867
|
-
*
|
|
1868
|
-
|
|
1869
|
-
IP:端口
|
|
1870
|
-
域名:端口
|
|
1871
|
-
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
1872
|
-
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
2265
|
+
* 客户端ip
|
|
2266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1873
2267
|
*/
|
|
1874
|
-
|
|
2268
|
+
ClientIp: string
|
|
1875
2269
|
|
|
1876
2270
|
/**
|
|
1877
|
-
*
|
|
1878
|
-
|
|
1879
|
-
PPV1: Proxy Protocol传递,协议版本V1
|
|
1880
|
-
PPV2: Proxy Protocol传递,协议版本V2
|
|
1881
|
-
OFF:不传递
|
|
1882
|
-
当Proto=UDP时,取值:
|
|
1883
|
-
PPV2: Proxy Protocol传递,协议版本V2
|
|
1884
|
-
OFF:不传递
|
|
2271
|
+
* 拦截次数/min
|
|
2272
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1885
2273
|
*/
|
|
1886
|
-
|
|
2274
|
+
InterceptNum: number
|
|
1887
2275
|
|
|
1888
2276
|
/**
|
|
1889
|
-
*
|
|
2277
|
+
* 速拦截时间,分钟时间/min,单位为s
|
|
1890
2278
|
*/
|
|
1891
|
-
|
|
2279
|
+
InterceptTime: number
|
|
1892
2280
|
}
|
|
1893
2281
|
|
|
1894
2282
|
/**
|
|
@@ -1912,27 +2300,18 @@ export interface DDoSStatusInfo {
|
|
|
1912
2300
|
}
|
|
1913
2301
|
|
|
1914
2302
|
/**
|
|
1915
|
-
*
|
|
2303
|
+
* ACL配置
|
|
1916
2304
|
*/
|
|
1917
|
-
export interface
|
|
2305
|
+
export interface AclConfig {
|
|
1918
2306
|
/**
|
|
1919
|
-
*
|
|
2307
|
+
* 开关
|
|
1920
2308
|
*/
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
/**
|
|
1924
|
-
* CNAME 地址
|
|
1925
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1926
|
-
*/
|
|
1927
|
-
Cname: string
|
|
2309
|
+
Switch: string
|
|
1928
2310
|
|
|
1929
2311
|
/**
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1934
|
-
*/
|
|
1935
|
-
Status: string
|
|
2312
|
+
* ACL用户规则
|
|
2313
|
+
*/
|
|
2314
|
+
UserRules: Array<ACLUserRule>
|
|
1936
2315
|
}
|
|
1937
2316
|
|
|
1938
2317
|
/**
|
|
@@ -2107,6 +2486,77 @@ pending: 不生效
|
|
|
2107
2486
|
RequestId?: string
|
|
2108
2487
|
}
|
|
2109
2488
|
|
|
2489
|
+
/**
|
|
2490
|
+
* 限速拦截日志
|
|
2491
|
+
*/
|
|
2492
|
+
export interface CCLog {
|
|
2493
|
+
/**
|
|
2494
|
+
* 攻击时间
|
|
2495
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2496
|
+
*/
|
|
2497
|
+
AttackTime: number
|
|
2498
|
+
|
|
2499
|
+
/**
|
|
2500
|
+
* 攻击源ip
|
|
2501
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2502
|
+
*/
|
|
2503
|
+
AttackSip: string
|
|
2504
|
+
|
|
2505
|
+
/**
|
|
2506
|
+
* 攻击域名
|
|
2507
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2508
|
+
*/
|
|
2509
|
+
AttackDomain: string
|
|
2510
|
+
|
|
2511
|
+
/**
|
|
2512
|
+
* 请求uri
|
|
2513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2514
|
+
*/
|
|
2515
|
+
RequestUri: string
|
|
2516
|
+
|
|
2517
|
+
/**
|
|
2518
|
+
* 命中次数
|
|
2519
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2520
|
+
*/
|
|
2521
|
+
HitCount: number
|
|
2522
|
+
|
|
2523
|
+
/**
|
|
2524
|
+
* IP所在国家
|
|
2525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2526
|
+
*/
|
|
2527
|
+
SipCountryCode: string
|
|
2528
|
+
|
|
2529
|
+
/**
|
|
2530
|
+
* 事件id
|
|
2531
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2532
|
+
*/
|
|
2533
|
+
EventId: string
|
|
2534
|
+
|
|
2535
|
+
/**
|
|
2536
|
+
* 处置方式
|
|
2537
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2538
|
+
*/
|
|
2539
|
+
DisposalMethod: string
|
|
2540
|
+
|
|
2541
|
+
/**
|
|
2542
|
+
* http_log
|
|
2543
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2544
|
+
*/
|
|
2545
|
+
HttpLog: string
|
|
2546
|
+
|
|
2547
|
+
/**
|
|
2548
|
+
* 规则编号
|
|
2549
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2550
|
+
*/
|
|
2551
|
+
RuleId: number
|
|
2552
|
+
|
|
2553
|
+
/**
|
|
2554
|
+
* 风险等级
|
|
2555
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2556
|
+
*/
|
|
2557
|
+
RiskLevel: string
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2110
2560
|
/**
|
|
2111
2561
|
* https 服务端证书配置
|
|
2112
2562
|
*/
|
|
@@ -2164,23 +2614,59 @@ export interface DDoSConfig {
|
|
|
2164
2614
|
}
|
|
2165
2615
|
|
|
2166
2616
|
/**
|
|
2167
|
-
*
|
|
2617
|
+
* DescribeWebManagedRulesData返回参数结构体
|
|
2168
2618
|
*/
|
|
2169
|
-
export interface
|
|
2619
|
+
export interface DescribeWebManagedRulesDataResponse {
|
|
2170
2620
|
/**
|
|
2171
|
-
|
|
2621
|
+
* Web攻击日志实体
|
|
2622
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2623
|
+
*/
|
|
2624
|
+
Data: Array<SecEntry>
|
|
2625
|
+
|
|
2626
|
+
/**
|
|
2627
|
+
* 状态,1:失败,0:成功
|
|
2172
2628
|
*/
|
|
2173
|
-
|
|
2629
|
+
Status: number
|
|
2174
2630
|
|
|
2175
2631
|
/**
|
|
2176
|
-
*
|
|
2632
|
+
* 返回消息
|
|
2177
2633
|
*/
|
|
2178
|
-
|
|
2634
|
+
Msg: string
|
|
2179
2635
|
|
|
2180
2636
|
/**
|
|
2181
|
-
*
|
|
2637
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
2182
2638
|
*/
|
|
2183
|
-
|
|
2639
|
+
Interval: string
|
|
2640
|
+
|
|
2641
|
+
/**
|
|
2642
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2643
|
+
*/
|
|
2644
|
+
RequestId?: string
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
/**
|
|
2648
|
+
* DescribeWebManagedRulesLog返回参数结构体
|
|
2649
|
+
*/
|
|
2650
|
+
export interface DescribeWebManagedRulesLogResponse {
|
|
2651
|
+
/**
|
|
2652
|
+
* web攻击日志data
|
|
2653
|
+
*/
|
|
2654
|
+
Data: WebLogData
|
|
2655
|
+
|
|
2656
|
+
/**
|
|
2657
|
+
* 状态,1:失败,0:失败
|
|
2658
|
+
*/
|
|
2659
|
+
Status: number
|
|
2660
|
+
|
|
2661
|
+
/**
|
|
2662
|
+
* 返回信息
|
|
2663
|
+
*/
|
|
2664
|
+
Msg: string
|
|
2665
|
+
|
|
2666
|
+
/**
|
|
2667
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2668
|
+
*/
|
|
2669
|
+
RequestId?: string
|
|
2184
2670
|
}
|
|
2185
2671
|
|
|
2186
2672
|
/**
|
|
@@ -2313,6 +2799,61 @@ export interface ACLCondition {
|
|
|
2313
2799
|
MatchContent: string
|
|
2314
2800
|
}
|
|
2315
2801
|
|
|
2802
|
+
/**
|
|
2803
|
+
* DescribeTopL7AnalysisData请求参数结构体
|
|
2804
|
+
*/
|
|
2805
|
+
export interface DescribeTopL7AnalysisDataRequest {
|
|
2806
|
+
/**
|
|
2807
|
+
* RFC3339标准,客户端时间
|
|
2808
|
+
*/
|
|
2809
|
+
StartTime: string
|
|
2810
|
+
|
|
2811
|
+
/**
|
|
2812
|
+
* RFC3339标准,客户端时间
|
|
2813
|
+
*/
|
|
2814
|
+
EndTime: string
|
|
2815
|
+
|
|
2816
|
+
/**
|
|
2817
|
+
* 时序类访问流量指标
|
|
2818
|
+
*/
|
|
2819
|
+
MetricName: string
|
|
2820
|
+
|
|
2821
|
+
/**
|
|
2822
|
+
* topN,填0时返回全量数据
|
|
2823
|
+
*/
|
|
2824
|
+
Limit: number
|
|
2825
|
+
|
|
2826
|
+
/**
|
|
2827
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
2828
|
+
*/
|
|
2829
|
+
Interval: string
|
|
2830
|
+
|
|
2831
|
+
/**
|
|
2832
|
+
* ZoneId数组
|
|
2833
|
+
*/
|
|
2834
|
+
ZoneIds?: Array<string>
|
|
2835
|
+
|
|
2836
|
+
/**
|
|
2837
|
+
* 筛选条件
|
|
2838
|
+
*/
|
|
2839
|
+
Filters?: Array<Filter>
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
/**
|
|
2843
|
+
* TopN entry
|
|
2844
|
+
*/
|
|
2845
|
+
export interface TopNEntry {
|
|
2846
|
+
/**
|
|
2847
|
+
* Entry key
|
|
2848
|
+
*/
|
|
2849
|
+
Key: string
|
|
2850
|
+
|
|
2851
|
+
/**
|
|
2852
|
+
* TopN数据
|
|
2853
|
+
*/
|
|
2854
|
+
Value: Array<TopNEntryValue>
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2316
2857
|
/**
|
|
2317
2858
|
* DescribeApplicationProxy返回参数结构体
|
|
2318
2859
|
*/
|
|
@@ -2357,26 +2898,66 @@ export interface CreateLoadBalancingResponse {
|
|
|
2357
2898
|
}
|
|
2358
2899
|
|
|
2359
2900
|
/**
|
|
2360
|
-
*
|
|
2901
|
+
* DescribeOverviewL7Data请求参数结构体
|
|
2361
2902
|
*/
|
|
2362
|
-
export interface
|
|
2903
|
+
export interface DescribeOverviewL7DataRequest {
|
|
2363
2904
|
/**
|
|
2364
|
-
*
|
|
2905
|
+
* RFC3339格式,客户端时间
|
|
2365
2906
|
*/
|
|
2366
|
-
|
|
2367
|
-
}
|
|
2907
|
+
StartTime: string
|
|
2368
2908
|
|
|
2369
|
-
/**
|
|
2370
|
-
* IdentifyZone返回参数结构体
|
|
2371
|
-
*/
|
|
2372
|
-
export interface IdentifyZoneResponse {
|
|
2373
2909
|
/**
|
|
2374
|
-
*
|
|
2910
|
+
* RFC3339格式,客户端时间
|
|
2375
2911
|
*/
|
|
2376
|
-
|
|
2912
|
+
EndTime: string
|
|
2377
2913
|
|
|
2378
2914
|
/**
|
|
2379
|
-
*
|
|
2915
|
+
* 指标列表
|
|
2916
|
+
*/
|
|
2917
|
+
MetricNames: Array<string>
|
|
2918
|
+
|
|
2919
|
+
/**
|
|
2920
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
2921
|
+
*/
|
|
2922
|
+
Interval: string
|
|
2923
|
+
|
|
2924
|
+
/**
|
|
2925
|
+
* ZoneId列表,仅在zone/domain维度下查询时该参数有效
|
|
2926
|
+
*/
|
|
2927
|
+
ZoneIds?: Array<string>
|
|
2928
|
+
|
|
2929
|
+
/**
|
|
2930
|
+
* Domain列表,仅在domain维度下查询时该参数有效
|
|
2931
|
+
*/
|
|
2932
|
+
Domains?: Array<string>
|
|
2933
|
+
|
|
2934
|
+
/**
|
|
2935
|
+
* 协议类型, 选填{http,http2,https,all}
|
|
2936
|
+
*/
|
|
2937
|
+
Protocol?: string
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
/**
|
|
2941
|
+
* 功能总开关
|
|
2942
|
+
*/
|
|
2943
|
+
export interface SwitchConfig {
|
|
2944
|
+
/**
|
|
2945
|
+
* Web类型的安全总开关:Web基础防护,自定义规则,速率限制
|
|
2946
|
+
*/
|
|
2947
|
+
WebSwitch: string
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
/**
|
|
2951
|
+
* IdentifyZone返回参数结构体
|
|
2952
|
+
*/
|
|
2953
|
+
export interface IdentifyZoneResponse {
|
|
2954
|
+
/**
|
|
2955
|
+
* 站点名称
|
|
2956
|
+
*/
|
|
2957
|
+
Name: string
|
|
2958
|
+
|
|
2959
|
+
/**
|
|
2960
|
+
* 子域
|
|
2380
2961
|
*/
|
|
2381
2962
|
Subdomain: string
|
|
2382
2963
|
|
|
@@ -2501,6 +3082,66 @@ export interface DescribeDnssecRequest {
|
|
|
2501
3082
|
Id: string
|
|
2502
3083
|
}
|
|
2503
3084
|
|
|
3085
|
+
/**
|
|
3086
|
+
* DescribeWebProtectionLog返回参数结构体
|
|
3087
|
+
*/
|
|
3088
|
+
export interface DescribeWebProtectionLogResponse {
|
|
3089
|
+
/**
|
|
3090
|
+
* 限速拦截Data
|
|
3091
|
+
*/
|
|
3092
|
+
Data: CCLogData
|
|
3093
|
+
|
|
3094
|
+
/**
|
|
3095
|
+
* 状态,1:失败,0:成功
|
|
3096
|
+
*/
|
|
3097
|
+
Status: number
|
|
3098
|
+
|
|
3099
|
+
/**
|
|
3100
|
+
* 返回信息
|
|
3101
|
+
*/
|
|
3102
|
+
Msg: string
|
|
3103
|
+
|
|
3104
|
+
/**
|
|
3105
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3106
|
+
*/
|
|
3107
|
+
RequestId?: string
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
/**
|
|
3111
|
+
* CC拦截事件数据
|
|
3112
|
+
*/
|
|
3113
|
+
export interface CCInterceptEventData {
|
|
3114
|
+
/**
|
|
3115
|
+
* 攻击事件数据集合
|
|
3116
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3117
|
+
*/
|
|
3118
|
+
List: Array<CCInterceptEvent>
|
|
3119
|
+
|
|
3120
|
+
/**
|
|
3121
|
+
* 当前页
|
|
3122
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3123
|
+
*/
|
|
3124
|
+
PageNo: number
|
|
3125
|
+
|
|
3126
|
+
/**
|
|
3127
|
+
* 每页展示条数
|
|
3128
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3129
|
+
*/
|
|
3130
|
+
PageSize: number
|
|
3131
|
+
|
|
3132
|
+
/**
|
|
3133
|
+
* 总页数
|
|
3134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3135
|
+
*/
|
|
3136
|
+
Pages: number
|
|
3137
|
+
|
|
3138
|
+
/**
|
|
3139
|
+
* 总条数
|
|
3140
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3141
|
+
*/
|
|
3142
|
+
TotalSize: number
|
|
3143
|
+
}
|
|
3144
|
+
|
|
2504
3145
|
/**
|
|
2505
3146
|
* DescribeLoadBalancingDetail返回参数结构体
|
|
2506
3147
|
*/
|
|
@@ -2606,28 +3247,38 @@ export interface SecurityConfig {
|
|
|
2606
3247
|
}
|
|
2607
3248
|
|
|
2608
3249
|
/**
|
|
2609
|
-
*
|
|
3250
|
+
* 主攻击对象Data
|
|
2610
3251
|
*/
|
|
2611
|
-
export interface
|
|
3252
|
+
export interface DDosMajorAttackEventData {
|
|
2612
3253
|
/**
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
3254
|
+
* DDosMajorAttackEvent ddos 攻击事件
|
|
3255
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3256
|
+
*/
|
|
3257
|
+
List: Array<DDosMajorAttackEvent>
|
|
2616
3258
|
|
|
2617
3259
|
/**
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
3260
|
+
* 当前页
|
|
3261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3262
|
+
*/
|
|
3263
|
+
PageNo: number
|
|
2621
3264
|
|
|
2622
3265
|
/**
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
3266
|
+
* 每页展示条数
|
|
3267
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3268
|
+
*/
|
|
3269
|
+
PageSize: number
|
|
2626
3270
|
|
|
2627
3271
|
/**
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
3272
|
+
* 总页数
|
|
3273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3274
|
+
*/
|
|
3275
|
+
Pages: number
|
|
3276
|
+
|
|
3277
|
+
/**
|
|
3278
|
+
* 总条数
|
|
3279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3280
|
+
*/
|
|
3281
|
+
TotalSize: number
|
|
2631
3282
|
}
|
|
2632
3283
|
|
|
2633
3284
|
/**
|
|
@@ -2743,6 +3394,22 @@ pending: 不生效
|
|
|
2743
3394
|
DomainStatus: Array<string>
|
|
2744
3395
|
}
|
|
2745
3396
|
|
|
3397
|
+
/**
|
|
3398
|
+
* 七层数据分析类top数据
|
|
3399
|
+
*/
|
|
3400
|
+
export interface TopDataRecord {
|
|
3401
|
+
/**
|
|
3402
|
+
* 查询维度值
|
|
3403
|
+
*/
|
|
3404
|
+
TypeKey: string
|
|
3405
|
+
|
|
3406
|
+
/**
|
|
3407
|
+
* top数据排行
|
|
3408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3409
|
+
*/
|
|
3410
|
+
DetailData: Array<TopDetailData>
|
|
3411
|
+
}
|
|
3412
|
+
|
|
2746
3413
|
/**
|
|
2747
3414
|
* DDoS协议防护+连接防护
|
|
2748
3415
|
*/
|
|
@@ -2813,6 +3480,100 @@ export interface DDoSAntiPly {
|
|
|
2813
3480
|
EmptyConnectProtect: string
|
|
2814
3481
|
}
|
|
2815
3482
|
|
|
3483
|
+
/**
|
|
3484
|
+
* DescribeWebManagedRulesData请求参数结构体
|
|
3485
|
+
*/
|
|
3486
|
+
export interface DescribeWebManagedRulesDataRequest {
|
|
3487
|
+
/**
|
|
3488
|
+
* 开始时间
|
|
3489
|
+
*/
|
|
3490
|
+
StartTime: string
|
|
3491
|
+
|
|
3492
|
+
/**
|
|
3493
|
+
* 结束时间
|
|
3494
|
+
*/
|
|
3495
|
+
EndTime: string
|
|
3496
|
+
|
|
3497
|
+
/**
|
|
3498
|
+
* 统计指标列表
|
|
3499
|
+
*/
|
|
3500
|
+
MetricNames: Array<string>
|
|
3501
|
+
|
|
3502
|
+
/**
|
|
3503
|
+
* 站点id列表
|
|
3504
|
+
*/
|
|
3505
|
+
ZoneIds?: Array<string>
|
|
3506
|
+
|
|
3507
|
+
/**
|
|
3508
|
+
* 子域名列表
|
|
3509
|
+
*/
|
|
3510
|
+
Domains?: Array<string>
|
|
3511
|
+
|
|
3512
|
+
/**
|
|
3513
|
+
* 协议类型
|
|
3514
|
+
*/
|
|
3515
|
+
ProtocolType?: string
|
|
3516
|
+
|
|
3517
|
+
/**
|
|
3518
|
+
* "webshell" : Webshell检测防护
|
|
3519
|
+
"oa" : 常见OA漏洞防护
|
|
3520
|
+
"xss" : XSS跨站脚本攻击防护
|
|
3521
|
+
"xxe" : XXE攻击防护
|
|
3522
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
3523
|
+
"cms" : 常见CMS漏洞防护
|
|
3524
|
+
"upload" : 恶意文件上传攻击防护
|
|
3525
|
+
"sql" : SQL注入攻击防护
|
|
3526
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
3527
|
+
"osc" : 开源组件漏洞防护
|
|
3528
|
+
"file_read" : 任意文件读取
|
|
3529
|
+
"ldap" : LDAP注入攻击防护
|
|
3530
|
+
"other" : 其它漏洞防护
|
|
3531
|
+
|
|
3532
|
+
"all":"所有"
|
|
3533
|
+
*/
|
|
3534
|
+
AttackType?: string
|
|
3535
|
+
|
|
3536
|
+
/**
|
|
3537
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3538
|
+
*/
|
|
3539
|
+
Interval?: string
|
|
3540
|
+
}
|
|
3541
|
+
|
|
3542
|
+
/**
|
|
3543
|
+
* DDos攻击源数据
|
|
3544
|
+
*/
|
|
3545
|
+
export interface DDosAttackSourceEventData {
|
|
3546
|
+
/**
|
|
3547
|
+
* DDos攻击源数据集合
|
|
3548
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3549
|
+
*/
|
|
3550
|
+
List: Array<DDosAttackSourceEvent>
|
|
3551
|
+
|
|
3552
|
+
/**
|
|
3553
|
+
* 当前页
|
|
3554
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3555
|
+
*/
|
|
3556
|
+
PageNo: number
|
|
3557
|
+
|
|
3558
|
+
/**
|
|
3559
|
+
* 每页展示条数
|
|
3560
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3561
|
+
*/
|
|
3562
|
+
PageSize: number
|
|
3563
|
+
|
|
3564
|
+
/**
|
|
3565
|
+
* 总页数
|
|
3566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3567
|
+
*/
|
|
3568
|
+
Pages: number
|
|
3569
|
+
|
|
3570
|
+
/**
|
|
3571
|
+
* 总条数
|
|
3572
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3573
|
+
*/
|
|
3574
|
+
TotalSize: number
|
|
3575
|
+
}
|
|
3576
|
+
|
|
2816
3577
|
/**
|
|
2817
3578
|
* ModifyDDoSPolicy返回参数结构体
|
|
2818
3579
|
*/
|
|
@@ -2889,6 +3650,27 @@ export interface CreatePrefetchTaskResponse {
|
|
|
2889
3650
|
RequestId?: string
|
|
2890
3651
|
}
|
|
2891
3652
|
|
|
3653
|
+
/**
|
|
3654
|
+
* Waf规则
|
|
3655
|
+
*/
|
|
3656
|
+
export interface WafRule {
|
|
3657
|
+
/**
|
|
3658
|
+
* 黑名单
|
|
3659
|
+
*/
|
|
3660
|
+
BlockRuleIDs: Array<number>
|
|
3661
|
+
|
|
3662
|
+
/**
|
|
3663
|
+
* id的开关
|
|
3664
|
+
*/
|
|
3665
|
+
Switch: string
|
|
3666
|
+
|
|
3667
|
+
/**
|
|
3668
|
+
* 观察模式
|
|
3669
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3670
|
+
*/
|
|
3671
|
+
ObserveRuleIDs?: Array<number>
|
|
3672
|
+
}
|
|
3673
|
+
|
|
2892
3674
|
/**
|
|
2893
3675
|
* DescribeDefaultCertificates请求参数结构体
|
|
2894
3676
|
*/
|
|
@@ -2960,23 +3742,62 @@ export interface ModifyApplicationProxyRuleResponse {
|
|
|
2960
3742
|
}
|
|
2961
3743
|
|
|
2962
3744
|
/**
|
|
2963
|
-
*
|
|
3745
|
+
* DDos攻击事件对象
|
|
2964
3746
|
*/
|
|
2965
|
-
export interface
|
|
3747
|
+
export interface DDosAttackEvent {
|
|
2966
3748
|
/**
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
3749
|
+
* ddos 策略组id
|
|
3750
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3751
|
+
*/
|
|
3752
|
+
PolicyId: number
|
|
2970
3753
|
|
|
2971
3754
|
/**
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
3755
|
+
* 攻击类型(对应交互事件名称)
|
|
3756
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3757
|
+
*/
|
|
3758
|
+
AttackType: string
|
|
2975
3759
|
|
|
2976
3760
|
/**
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
3761
|
+
* 攻击状态
|
|
3762
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3763
|
+
*/
|
|
3764
|
+
AttackStatus: number
|
|
3765
|
+
|
|
3766
|
+
/**
|
|
3767
|
+
* 攻击最大带宽
|
|
3768
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3769
|
+
*/
|
|
3770
|
+
AttackMaxBandWidth: number
|
|
3771
|
+
|
|
3772
|
+
/**
|
|
3773
|
+
* 攻击包速率峰值
|
|
3774
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3775
|
+
*/
|
|
3776
|
+
AttackPacketMaxRate: number
|
|
3777
|
+
|
|
3778
|
+
/**
|
|
3779
|
+
* 攻击开始时间 单位为s
|
|
3780
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3781
|
+
*/
|
|
3782
|
+
AttackStartTime: number
|
|
3783
|
+
|
|
3784
|
+
/**
|
|
3785
|
+
* 攻击结束时间 单位为s
|
|
3786
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3787
|
+
*/
|
|
3788
|
+
AttackEndTime: number
|
|
3789
|
+
|
|
3790
|
+
/**
|
|
3791
|
+
* 事件ID
|
|
3792
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3793
|
+
*/
|
|
3794
|
+
EventId: string
|
|
3795
|
+
|
|
3796
|
+
/**
|
|
3797
|
+
* 站点id
|
|
3798
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3799
|
+
*/
|
|
3800
|
+
ZoneId: string
|
|
2980
3801
|
}
|
|
2981
3802
|
|
|
2982
3803
|
/**
|
|
@@ -3184,11 +4005,70 @@ export interface DeleteLoadBalancingResponse {
|
|
|
3184
4005
|
}
|
|
3185
4006
|
|
|
3186
4007
|
/**
|
|
3187
|
-
*
|
|
4008
|
+
* DescribeWebProtectionData请求参数结构体
|
|
3188
4009
|
*/
|
|
3189
|
-
export interface
|
|
4010
|
+
export interface DescribeWebProtectionDataRequest {
|
|
3190
4011
|
/**
|
|
3191
|
-
*
|
|
4012
|
+
* 开始时间
|
|
4013
|
+
*/
|
|
4014
|
+
StartTime: string
|
|
4015
|
+
|
|
4016
|
+
/**
|
|
4017
|
+
* 结束时间
|
|
4018
|
+
*/
|
|
4019
|
+
EndTime: string
|
|
4020
|
+
|
|
4021
|
+
/**
|
|
4022
|
+
* 统计指标列表
|
|
4023
|
+
*/
|
|
4024
|
+
MetricNames: Array<string>
|
|
4025
|
+
|
|
4026
|
+
/**
|
|
4027
|
+
* 站点id列表
|
|
4028
|
+
*/
|
|
4029
|
+
ZoneIds?: Array<string>
|
|
4030
|
+
|
|
4031
|
+
/**
|
|
4032
|
+
* 子域名列表
|
|
4033
|
+
*/
|
|
4034
|
+
Domains?: Array<string>
|
|
4035
|
+
|
|
4036
|
+
/**
|
|
4037
|
+
* 协议类型
|
|
4038
|
+
*/
|
|
4039
|
+
ProtocolType?: string
|
|
4040
|
+
|
|
4041
|
+
/**
|
|
4042
|
+
* "webshell" : Webshell检测防护
|
|
4043
|
+
"oa" : 常见OA漏洞防护
|
|
4044
|
+
"xss" : XSS跨站脚本攻击防护
|
|
4045
|
+
"xxe" : XXE攻击防护
|
|
4046
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
4047
|
+
"cms" : 常见CMS漏洞防护
|
|
4048
|
+
"upload" : 恶意文件上传攻击防护
|
|
4049
|
+
"sql" : SQL注入攻击防护
|
|
4050
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
4051
|
+
"osc" : 开源组件漏洞防护
|
|
4052
|
+
"file_read" : 任意文件读取
|
|
4053
|
+
"ldap" : LDAP注入攻击防护
|
|
4054
|
+
"other" : 其它漏洞防护
|
|
4055
|
+
|
|
4056
|
+
"all":"所有"
|
|
4057
|
+
*/
|
|
4058
|
+
AttackType?: string
|
|
4059
|
+
|
|
4060
|
+
/**
|
|
4061
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
4062
|
+
*/
|
|
4063
|
+
Interval?: string
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
/**
|
|
4067
|
+
* CheckCertificate请求参数结构体
|
|
4068
|
+
*/
|
|
4069
|
+
export interface CheckCertificateRequest {
|
|
4070
|
+
/**
|
|
4071
|
+
* 证书
|
|
3192
4072
|
*/
|
|
3193
4073
|
Certificate: string
|
|
3194
4074
|
|
|
@@ -3286,54 +4166,28 @@ OFF:不传递
|
|
|
3286
4166
|
}
|
|
3287
4167
|
|
|
3288
4168
|
/**
|
|
3289
|
-
*
|
|
4169
|
+
* bot托管规则详情
|
|
3290
4170
|
*/
|
|
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
|
-
|
|
4171
|
+
export interface BotManagedRuleDetail {
|
|
3312
4172
|
/**
|
|
3313
|
-
*
|
|
4173
|
+
* 规则ID
|
|
3314
4174
|
*/
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
/**
|
|
3318
|
-
* 查询的状态
|
|
3319
|
-
允许的值为:processing、success、failed、timeout、invalid
|
|
3320
|
-
*/
|
|
3321
|
-
Statuses?: Array<string>
|
|
4175
|
+
RuleId: number
|
|
3322
4176
|
|
|
3323
4177
|
/**
|
|
3324
|
-
*
|
|
4178
|
+
* 规则描述
|
|
3325
4179
|
*/
|
|
3326
|
-
|
|
4180
|
+
Description: string
|
|
3327
4181
|
|
|
3328
4182
|
/**
|
|
3329
|
-
*
|
|
4183
|
+
* 规则分类
|
|
3330
4184
|
*/
|
|
3331
|
-
|
|
4185
|
+
RuleTypeName: string
|
|
3332
4186
|
|
|
3333
4187
|
/**
|
|
3334
|
-
*
|
|
4188
|
+
* 该规则开启/关闭
|
|
3335
4189
|
*/
|
|
3336
|
-
|
|
4190
|
+
Status: string
|
|
3337
4191
|
}
|
|
3338
4192
|
|
|
3339
4193
|
/**
|
|
@@ -3413,6 +4267,16 @@ export interface ModifyApplicationProxyStatusResponse {
|
|
|
3413
4267
|
RequestId?: string
|
|
3414
4268
|
}
|
|
3415
4269
|
|
|
4270
|
+
/**
|
|
4271
|
+
* IdentifyZone请求参数结构体
|
|
4272
|
+
*/
|
|
4273
|
+
export interface IdentifyZoneRequest {
|
|
4274
|
+
/**
|
|
4275
|
+
* 站点名称
|
|
4276
|
+
*/
|
|
4277
|
+
Name: string
|
|
4278
|
+
}
|
|
4279
|
+
|
|
3416
4280
|
/**
|
|
3417
4281
|
* 域名配置信息
|
|
3418
4282
|
*/
|
|
@@ -3461,6 +4325,53 @@ export interface DescribeDnsRecordsResponse {
|
|
|
3461
4325
|
RequestId?: string
|
|
3462
4326
|
}
|
|
3463
4327
|
|
|
4328
|
+
/**
|
|
4329
|
+
* DescribeDefaultCertificates返回参数结构体
|
|
4330
|
+
*/
|
|
4331
|
+
export interface DescribeDefaultCertificatesResponse {
|
|
4332
|
+
/**
|
|
4333
|
+
* 证书总数
|
|
4334
|
+
*/
|
|
4335
|
+
TotalCount: number
|
|
4336
|
+
|
|
4337
|
+
/**
|
|
4338
|
+
* 默认证书列表
|
|
4339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4340
|
+
*/
|
|
4341
|
+
CertInfo: Array<DefaultServerCertInfo>
|
|
4342
|
+
|
|
4343
|
+
/**
|
|
4344
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4345
|
+
*/
|
|
4346
|
+
RequestId?: string
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
/**
|
|
4350
|
+
* DescribeTimingL7AnalysisData返回参数结构体
|
|
4351
|
+
*/
|
|
4352
|
+
export interface DescribeTimingL7AnalysisDataResponse {
|
|
4353
|
+
/**
|
|
4354
|
+
* 详细数据
|
|
4355
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4356
|
+
*/
|
|
4357
|
+
Data: Array<TimingDataRecord>
|
|
4358
|
+
|
|
4359
|
+
/**
|
|
4360
|
+
* 查询维度
|
|
4361
|
+
*/
|
|
4362
|
+
Type: string
|
|
4363
|
+
|
|
4364
|
+
/**
|
|
4365
|
+
* 时间间隔
|
|
4366
|
+
*/
|
|
4367
|
+
Interval: string
|
|
4368
|
+
|
|
4369
|
+
/**
|
|
4370
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4371
|
+
*/
|
|
4372
|
+
RequestId?: string
|
|
4373
|
+
}
|
|
4374
|
+
|
|
3464
4375
|
/**
|
|
3465
4376
|
* bot 用户画像规则
|
|
3466
4377
|
*/
|
|
@@ -3503,20 +4414,63 @@ export interface BotPortraitRule {
|
|
|
3503
4414
|
}
|
|
3504
4415
|
|
|
3505
4416
|
/**
|
|
3506
|
-
*
|
|
4417
|
+
* DescribeWebProtectionAttackEvents请求参数结构体
|
|
3507
4418
|
*/
|
|
3508
|
-
export interface
|
|
4419
|
+
export interface DescribeWebProtectionAttackEventsRequest {
|
|
3509
4420
|
/**
|
|
3510
|
-
*
|
|
4421
|
+
* 开始时间
|
|
3511
4422
|
*/
|
|
3512
|
-
|
|
4423
|
+
StartTime: string
|
|
3513
4424
|
|
|
3514
4425
|
/**
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
4426
|
+
* 结束时间
|
|
4427
|
+
*/
|
|
4428
|
+
EndTime: string
|
|
4429
|
+
|
|
4430
|
+
/**
|
|
4431
|
+
* 条数
|
|
4432
|
+
*/
|
|
4433
|
+
PageSize: number
|
|
4434
|
+
|
|
4435
|
+
/**
|
|
4436
|
+
* 当前页
|
|
4437
|
+
*/
|
|
4438
|
+
PageNo: number
|
|
4439
|
+
|
|
4440
|
+
/**
|
|
4441
|
+
* 域名
|
|
4442
|
+
*/
|
|
4443
|
+
Domains?: Array<string>
|
|
4444
|
+
|
|
4445
|
+
/**
|
|
4446
|
+
* 站点集合
|
|
4447
|
+
*/
|
|
4448
|
+
ZoneIds?: Array<string>
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4451
|
+
/**
|
|
4452
|
+
* DescribeOverviewL7Data返回参数结构体
|
|
4453
|
+
*/
|
|
4454
|
+
export interface DescribeOverviewL7DataResponse {
|
|
4455
|
+
/**
|
|
4456
|
+
* 查询维度
|
|
4457
|
+
*/
|
|
4458
|
+
Type: string
|
|
4459
|
+
|
|
4460
|
+
/**
|
|
4461
|
+
* 时间间隔
|
|
4462
|
+
*/
|
|
4463
|
+
Interval: string
|
|
4464
|
+
|
|
4465
|
+
/**
|
|
4466
|
+
* 详细数据
|
|
4467
|
+
*/
|
|
4468
|
+
Data: Array<TimingDataRecord>
|
|
4469
|
+
|
|
4470
|
+
/**
|
|
4471
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4472
|
+
*/
|
|
4473
|
+
RequestId?: string
|
|
3520
4474
|
}
|
|
3521
4475
|
|
|
3522
4476
|
/**
|
|
@@ -3575,20 +4529,61 @@ export interface DescribeSecurityPolicyManagedRulesResponse {
|
|
|
3575
4529
|
}
|
|
3576
4530
|
|
|
3577
4531
|
/**
|
|
3578
|
-
*
|
|
4532
|
+
* 源站组信息
|
|
3579
4533
|
*/
|
|
3580
|
-
export interface
|
|
4534
|
+
export interface OriginGroup {
|
|
3581
4535
|
/**
|
|
3582
|
-
|
|
4536
|
+
* 源站组ID
|
|
4537
|
+
*/
|
|
4538
|
+
OriginId: string
|
|
4539
|
+
|
|
4540
|
+
/**
|
|
4541
|
+
* 源站组名称
|
|
4542
|
+
*/
|
|
4543
|
+
OriginName: string
|
|
4544
|
+
|
|
4545
|
+
/**
|
|
4546
|
+
* 配置类型
|
|
4547
|
+
*/
|
|
4548
|
+
Type: string
|
|
4549
|
+
|
|
4550
|
+
/**
|
|
4551
|
+
* 记录
|
|
4552
|
+
*/
|
|
4553
|
+
Record: Array<OriginRecord>
|
|
4554
|
+
|
|
4555
|
+
/**
|
|
4556
|
+
* 更新时间
|
|
4557
|
+
*/
|
|
4558
|
+
UpdateTime: string
|
|
4559
|
+
|
|
4560
|
+
/**
|
|
4561
|
+
* 站点ID
|
|
4562
|
+
*/
|
|
4563
|
+
ZoneId: string
|
|
4564
|
+
|
|
4565
|
+
/**
|
|
4566
|
+
* 站点名称
|
|
4567
|
+
*/
|
|
4568
|
+
ZoneName: string
|
|
4569
|
+
|
|
4570
|
+
/**
|
|
4571
|
+
* 源站类型
|
|
3583
4572
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3584
4573
|
*/
|
|
3585
|
-
|
|
4574
|
+
OriginType: string
|
|
3586
4575
|
|
|
3587
4576
|
/**
|
|
3588
|
-
*
|
|
4577
|
+
* 是否为四层代理使用
|
|
3589
4578
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3590
4579
|
*/
|
|
3591
|
-
|
|
4580
|
+
ApplicationProxyUsed: boolean
|
|
4581
|
+
|
|
4582
|
+
/**
|
|
4583
|
+
* 是否为负载均衡使用
|
|
4584
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4585
|
+
*/
|
|
4586
|
+
LoadBalancingUsed: boolean
|
|
3592
4587
|
}
|
|
3593
4588
|
|
|
3594
4589
|
/**
|
|
@@ -3611,6 +4606,21 @@ export interface DescribeApplicationProxyRequest {
|
|
|
3611
4606
|
Limit?: number
|
|
3612
4607
|
}
|
|
3613
4608
|
|
|
4609
|
+
/**
|
|
4610
|
+
* TopN数据Entry
|
|
4611
|
+
*/
|
|
4612
|
+
export interface TopNEntryValue {
|
|
4613
|
+
/**
|
|
4614
|
+
* Entry的name
|
|
4615
|
+
*/
|
|
4616
|
+
Name: string
|
|
4617
|
+
|
|
4618
|
+
/**
|
|
4619
|
+
* 数量
|
|
4620
|
+
*/
|
|
4621
|
+
Count: number
|
|
4622
|
+
}
|
|
4623
|
+
|
|
3614
4624
|
/**
|
|
3615
4625
|
* ModifyDDoSPolicyHost返回参数结构体
|
|
3616
4626
|
*/
|
|
@@ -3654,44 +4664,76 @@ online: 启用
|
|
|
3654
4664
|
}
|
|
3655
4665
|
|
|
3656
4666
|
/**
|
|
3657
|
-
*
|
|
4667
|
+
* Web拦截事件
|
|
3658
4668
|
*/
|
|
3659
|
-
export interface
|
|
4669
|
+
export interface WebAttackEvent {
|
|
3660
4670
|
/**
|
|
3661
|
-
*
|
|
4671
|
+
* 客户端ip
|
|
3662
4672
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3663
4673
|
*/
|
|
3664
|
-
|
|
4674
|
+
ClientIp: string
|
|
3665
4675
|
|
|
3666
4676
|
/**
|
|
3667
|
-
*
|
|
4677
|
+
* 攻击URL
|
|
3668
4678
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3669
4679
|
*/
|
|
3670
|
-
|
|
4680
|
+
AttackUrl: string
|
|
3671
4681
|
|
|
3672
4682
|
/**
|
|
3673
|
-
*
|
|
4683
|
+
* 攻击时间 单位为s
|
|
3674
4684
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3675
4685
|
*/
|
|
3676
|
-
|
|
4686
|
+
AttackTime: number
|
|
4687
|
+
}
|
|
3677
4688
|
|
|
4689
|
+
/**
|
|
4690
|
+
* DescribeDDosAttackTopData请求参数结构体
|
|
4691
|
+
*/
|
|
4692
|
+
export interface DescribeDDosAttackTopDataRequest {
|
|
3678
4693
|
/**
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
PunishTime?: number
|
|
4694
|
+
* 开始时间
|
|
4695
|
+
*/
|
|
4696
|
+
StartTime: string
|
|
3683
4697
|
|
|
3684
4698
|
/**
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
Threshold?: number
|
|
4699
|
+
* 结束时间
|
|
4700
|
+
*/
|
|
4701
|
+
EndTime: string
|
|
3689
4702
|
|
|
3690
4703
|
/**
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
4704
|
+
* 过滤指标
|
|
4705
|
+
*/
|
|
4706
|
+
MetricName: string
|
|
4707
|
+
|
|
4708
|
+
/**
|
|
4709
|
+
* 查询前多少名,传值为0 全量
|
|
4710
|
+
*/
|
|
4711
|
+
Limit: number
|
|
4712
|
+
|
|
4713
|
+
/**
|
|
4714
|
+
* 站点集合
|
|
4715
|
+
*/
|
|
4716
|
+
ZoneIds?: Array<string>
|
|
4717
|
+
|
|
4718
|
+
/**
|
|
4719
|
+
* ddos策略组id 集合
|
|
4720
|
+
*/
|
|
4721
|
+
PolicyIds?: Array<number>
|
|
4722
|
+
|
|
4723
|
+
/**
|
|
4724
|
+
* 端口号
|
|
4725
|
+
*/
|
|
4726
|
+
Port?: number
|
|
4727
|
+
|
|
4728
|
+
/**
|
|
4729
|
+
* 协议类型,tcp,udp,all
|
|
4730
|
+
*/
|
|
4731
|
+
ProtocolType?: string
|
|
4732
|
+
|
|
4733
|
+
/**
|
|
4734
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
4735
|
+
*/
|
|
4736
|
+
AttackType?: string
|
|
3695
4737
|
}
|
|
3696
4738
|
|
|
3697
4739
|
/**
|
|
@@ -3710,71 +4752,53 @@ export interface CreateApplicationProxyRuleResponse {
|
|
|
3710
4752
|
}
|
|
3711
4753
|
|
|
3712
4754
|
/**
|
|
3713
|
-
*
|
|
4755
|
+
* DescribeDDosAttackData请求参数结构体
|
|
3714
4756
|
*/
|
|
3715
|
-
export interface
|
|
4757
|
+
export interface DescribeDDosAttackDataRequest {
|
|
3716
4758
|
/**
|
|
3717
|
-
*
|
|
4759
|
+
* 开始时间
|
|
3718
4760
|
*/
|
|
3719
|
-
|
|
4761
|
+
StartTime: string
|
|
3720
4762
|
|
|
3721
4763
|
/**
|
|
3722
|
-
*
|
|
4764
|
+
* 结束时间
|
|
3723
4765
|
*/
|
|
3724
|
-
|
|
4766
|
+
EndTime: string
|
|
3725
4767
|
|
|
3726
4768
|
/**
|
|
3727
|
-
*
|
|
4769
|
+
* 统计指标列表
|
|
3728
4770
|
*/
|
|
3729
|
-
|
|
4771
|
+
MetricNames: Array<string>
|
|
3730
4772
|
|
|
3731
4773
|
/**
|
|
3732
|
-
*
|
|
4774
|
+
* 站点id列表
|
|
3733
4775
|
*/
|
|
3734
|
-
|
|
4776
|
+
ZoneIds?: Array<string>
|
|
3735
4777
|
|
|
3736
4778
|
/**
|
|
3737
|
-
*
|
|
4779
|
+
* ddos策略组id列表
|
|
3738
4780
|
*/
|
|
3739
|
-
|
|
4781
|
+
PolicyIds?: Array<number>
|
|
3740
4782
|
|
|
3741
4783
|
/**
|
|
3742
|
-
*
|
|
4784
|
+
* 端口号
|
|
3743
4785
|
*/
|
|
3744
|
-
|
|
4786
|
+
Port?: number
|
|
3745
4787
|
|
|
3746
4788
|
/**
|
|
3747
|
-
*
|
|
4789
|
+
* 协议类型,tcp,udp,all
|
|
3748
4790
|
*/
|
|
3749
|
-
|
|
4791
|
+
ProtocolType?: string
|
|
3750
4792
|
|
|
3751
4793
|
/**
|
|
3752
|
-
*
|
|
4794
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
3753
4795
|
*/
|
|
3754
|
-
|
|
4796
|
+
AttackType?: string
|
|
3755
4797
|
|
|
3756
4798
|
/**
|
|
3757
|
-
*
|
|
4799
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3758
4800
|
*/
|
|
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
|
|
4801
|
+
Interval?: string
|
|
3778
4802
|
}
|
|
3779
4803
|
|
|
3780
4804
|
/**
|
|
@@ -3858,6 +4882,64 @@ export interface ModifyDnsRecordResponse {
|
|
|
3858
4882
|
RequestId?: string
|
|
3859
4883
|
}
|
|
3860
4884
|
|
|
4885
|
+
/**
|
|
4886
|
+
* 模板当前详细配置
|
|
4887
|
+
*/
|
|
4888
|
+
export interface RateLimitTemplateDetail {
|
|
4889
|
+
/**
|
|
4890
|
+
* 模板名称
|
|
4891
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4892
|
+
*/
|
|
4893
|
+
Mode?: string
|
|
4894
|
+
|
|
4895
|
+
/**
|
|
4896
|
+
* 唯一id
|
|
4897
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4898
|
+
*/
|
|
4899
|
+
ID?: number
|
|
4900
|
+
|
|
4901
|
+
/**
|
|
4902
|
+
* 处置动作
|
|
4903
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4904
|
+
*/
|
|
4905
|
+
Action?: string
|
|
4906
|
+
|
|
4907
|
+
/**
|
|
4908
|
+
* 惩罚时间,秒
|
|
4909
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4910
|
+
*/
|
|
4911
|
+
PunishTime?: number
|
|
4912
|
+
|
|
4913
|
+
/**
|
|
4914
|
+
* 阈值
|
|
4915
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4916
|
+
*/
|
|
4917
|
+
Threshold?: number
|
|
4918
|
+
|
|
4919
|
+
/**
|
|
4920
|
+
* 统计周期
|
|
4921
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4922
|
+
*/
|
|
4923
|
+
Period?: number
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4926
|
+
/**
|
|
4927
|
+
* 统计曲线数据项
|
|
4928
|
+
*/
|
|
4929
|
+
export interface TimingDataItem {
|
|
4930
|
+
/**
|
|
4931
|
+
* 秒级时间戳
|
|
4932
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4933
|
+
*/
|
|
4934
|
+
Timestamp: number
|
|
4935
|
+
|
|
4936
|
+
/**
|
|
4937
|
+
* 数值
|
|
4938
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4939
|
+
*/
|
|
4940
|
+
Value: number
|
|
4941
|
+
}
|
|
4942
|
+
|
|
3861
4943
|
/**
|
|
3862
4944
|
* CreateApplicationProxy请求参数结构体
|
|
3863
4945
|
*/
|
|
@@ -3923,139 +5005,378 @@ instance:实例
|
|
|
3923
5005
|
}
|
|
3924
5006
|
|
|
3925
5007
|
/**
|
|
3926
|
-
*
|
|
5008
|
+
* DescribeTopL7AnalysisData返回参数结构体
|
|
3927
5009
|
*/
|
|
3928
|
-
export interface
|
|
3929
|
-
/**
|
|
3930
|
-
* 是调整POST请求限制,平台默认为32MB。
|
|
3931
|
-
关闭:off,
|
|
3932
|
-
开启:on。
|
|
3933
|
-
*/
|
|
3934
|
-
Switch: string
|
|
3935
|
-
|
|
5010
|
+
export interface DescribeTopL7AnalysisDataResponse {
|
|
3936
5011
|
/**
|
|
3937
|
-
*
|
|
5012
|
+
* top详细数据
|
|
3938
5013
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3939
5014
|
*/
|
|
3940
|
-
|
|
3941
|
-
}
|
|
5015
|
+
Data: Array<TopDataRecord>
|
|
3942
5016
|
|
|
3943
|
-
/**
|
|
3944
|
-
* 门神规则
|
|
3945
|
-
*/
|
|
3946
|
-
export interface ManagedRule {
|
|
3947
5017
|
/**
|
|
3948
|
-
*
|
|
5018
|
+
* 查询维度
|
|
3949
5019
|
*/
|
|
3950
|
-
|
|
5020
|
+
Type: string
|
|
3951
5021
|
|
|
3952
5022
|
/**
|
|
3953
|
-
*
|
|
5023
|
+
* 查询指标
|
|
3954
5024
|
*/
|
|
3955
|
-
|
|
5025
|
+
MetricName: string
|
|
3956
5026
|
|
|
3957
5027
|
/**
|
|
3958
|
-
*
|
|
5028
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3959
5029
|
*/
|
|
3960
|
-
|
|
5030
|
+
RequestId?: string
|
|
5031
|
+
}
|
|
3961
5032
|
|
|
5033
|
+
/**
|
|
5034
|
+
* web攻击日志
|
|
5035
|
+
*/
|
|
5036
|
+
export interface WebLogs {
|
|
3962
5037
|
/**
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
5038
|
+
* 攻击内容
|
|
5039
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5040
|
+
*/
|
|
5041
|
+
AttackContent: string
|
|
3966
5042
|
|
|
3967
5043
|
/**
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
5044
|
+
* 攻击IP
|
|
5045
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5046
|
+
*/
|
|
5047
|
+
AttackIp: string
|
|
3971
5048
|
|
|
3972
5049
|
/**
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
5050
|
+
* 攻击类型
|
|
5051
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5052
|
+
*/
|
|
5053
|
+
AttackType: string
|
|
3976
5054
|
|
|
3977
5055
|
/**
|
|
3978
|
-
*
|
|
5056
|
+
* 域名
|
|
3979
5057
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3980
5058
|
*/
|
|
3981
|
-
|
|
5059
|
+
Domain: string
|
|
3982
5060
|
|
|
3983
5061
|
/**
|
|
3984
|
-
*
|
|
5062
|
+
* uuid
|
|
3985
5063
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3986
5064
|
*/
|
|
3987
|
-
|
|
5065
|
+
Msuuid: string
|
|
3988
5066
|
|
|
3989
5067
|
/**
|
|
3990
|
-
*
|
|
5068
|
+
* 请求方法
|
|
3991
5069
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3992
5070
|
*/
|
|
3993
|
-
|
|
3994
|
-
}
|
|
5071
|
+
RequestMethod: string
|
|
3995
5072
|
|
|
3996
|
-
/**
|
|
3997
|
-
* ModifyLoadBalancing返回参数结构体
|
|
3998
|
-
*/
|
|
3999
|
-
export interface ModifyLoadBalancingResponse {
|
|
4000
5073
|
/**
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
5074
|
+
* 请求URI
|
|
5075
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5076
|
+
*/
|
|
5077
|
+
RequestUri: string
|
|
4004
5078
|
|
|
4005
5079
|
/**
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
5080
|
+
* 风险等级
|
|
5081
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5082
|
+
*/
|
|
5083
|
+
RiskLevel: string
|
|
4010
5084
|
|
|
4011
|
-
/**
|
|
4012
|
-
* DescribeCnameStatus请求参数结构体
|
|
4013
|
-
*/
|
|
4014
|
-
export interface DescribeCnameStatusRequest {
|
|
4015
5085
|
/**
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
5086
|
+
* 规则ID
|
|
5087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5088
|
+
*/
|
|
5089
|
+
RuleId: number
|
|
4019
5090
|
|
|
4020
5091
|
/**
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
5092
|
+
* IP所在国家
|
|
5093
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5094
|
+
*/
|
|
5095
|
+
SipCountryCode: string
|
|
4025
5096
|
|
|
4026
|
-
/**
|
|
4027
|
-
* CreateCustomErrorPage请求参数结构体
|
|
4028
|
-
*/
|
|
4029
|
-
export interface CreateCustomErrorPageRequest {
|
|
4030
5097
|
/**
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
5098
|
+
* 事件id
|
|
5099
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5100
|
+
*/
|
|
5101
|
+
EventId: string
|
|
4034
5102
|
|
|
4035
5103
|
/**
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
5104
|
+
* 处置方式
|
|
5105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5106
|
+
*/
|
|
5107
|
+
DisposalMethod: string
|
|
4039
5108
|
|
|
4040
5109
|
/**
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
5110
|
+
* http_log
|
|
5111
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5112
|
+
*/
|
|
5113
|
+
HttpLog: string
|
|
4044
5114
|
|
|
4045
5115
|
/**
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
5116
|
+
* user agent
|
|
5117
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5118
|
+
*/
|
|
5119
|
+
Ua: string
|
|
5120
|
+
|
|
5121
|
+
/**
|
|
5122
|
+
* 攻击时间,为保持统一,原参数time更名为AttackTime
|
|
5123
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5124
|
+
*/
|
|
5125
|
+
AttackTime: number
|
|
4049
5126
|
}
|
|
4050
5127
|
|
|
4051
5128
|
/**
|
|
4052
|
-
*
|
|
5129
|
+
* POST请求上传文件流式传输最大限制
|
|
4053
5130
|
*/
|
|
4054
|
-
export interface
|
|
5131
|
+
export interface PostMaxSize {
|
|
4055
5132
|
/**
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
5133
|
+
* 是调整POST请求限制,平台默认为32MB。
|
|
5134
|
+
关闭:off,
|
|
5135
|
+
开启:on。
|
|
5136
|
+
*/
|
|
5137
|
+
Switch: string
|
|
5138
|
+
|
|
5139
|
+
/**
|
|
5140
|
+
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
5141
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5142
|
+
*/
|
|
5143
|
+
MaxSize?: number
|
|
5144
|
+
}
|
|
5145
|
+
|
|
5146
|
+
/**
|
|
5147
|
+
* RateLimit规则
|
|
5148
|
+
*/
|
|
5149
|
+
export interface RateLimitUserRule {
|
|
5150
|
+
/**
|
|
5151
|
+
* RateLimit统计阈值
|
|
5152
|
+
*/
|
|
5153
|
+
Threshold: number
|
|
5154
|
+
|
|
5155
|
+
/**
|
|
5156
|
+
* RateLimit统计时间
|
|
5157
|
+
*/
|
|
5158
|
+
Period: number
|
|
5159
|
+
|
|
5160
|
+
/**
|
|
5161
|
+
* 规则名
|
|
5162
|
+
*/
|
|
5163
|
+
RuleName: string
|
|
5164
|
+
|
|
5165
|
+
/**
|
|
5166
|
+
* 动作:monitor(观察), drop(拦截)
|
|
5167
|
+
*/
|
|
5168
|
+
Action: string
|
|
5169
|
+
|
|
5170
|
+
/**
|
|
5171
|
+
* 惩罚时长
|
|
5172
|
+
*/
|
|
5173
|
+
PunishTime: number
|
|
5174
|
+
|
|
5175
|
+
/**
|
|
5176
|
+
* 处罚时长单位,second
|
|
5177
|
+
*/
|
|
5178
|
+
PunishTimeUnit: string
|
|
5179
|
+
|
|
5180
|
+
/**
|
|
5181
|
+
* 规则状态
|
|
5182
|
+
*/
|
|
5183
|
+
RuleStatus: string
|
|
5184
|
+
|
|
5185
|
+
/**
|
|
5186
|
+
* 规则
|
|
5187
|
+
*/
|
|
5188
|
+
Conditions: Array<ACLCondition>
|
|
5189
|
+
|
|
5190
|
+
/**
|
|
5191
|
+
* 规则权重
|
|
5192
|
+
*/
|
|
5193
|
+
RulePriority: number
|
|
5194
|
+
|
|
5195
|
+
/**
|
|
5196
|
+
* 规则id
|
|
5197
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5198
|
+
*/
|
|
5199
|
+
RuleID?: number
|
|
5200
|
+
|
|
5201
|
+
/**
|
|
5202
|
+
* 过滤词
|
|
5203
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5204
|
+
*/
|
|
5205
|
+
FreqFields?: Array<string>
|
|
5206
|
+
|
|
5207
|
+
/**
|
|
5208
|
+
* 更新时间
|
|
5209
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5210
|
+
*/
|
|
5211
|
+
UpdateTime?: string
|
|
5212
|
+
}
|
|
5213
|
+
|
|
5214
|
+
/**
|
|
5215
|
+
* 门神规则
|
|
5216
|
+
*/
|
|
5217
|
+
export interface ManagedRule {
|
|
5218
|
+
/**
|
|
5219
|
+
* 规则id
|
|
5220
|
+
*/
|
|
5221
|
+
RuleId: number
|
|
5222
|
+
|
|
5223
|
+
/**
|
|
5224
|
+
* 规则描述
|
|
5225
|
+
*/
|
|
5226
|
+
Description: string
|
|
5227
|
+
|
|
5228
|
+
/**
|
|
5229
|
+
* 规则类型名
|
|
5230
|
+
*/
|
|
5231
|
+
RuleTypeName: string
|
|
5232
|
+
|
|
5233
|
+
/**
|
|
5234
|
+
* 策略规则防护等级
|
|
5235
|
+
*/
|
|
5236
|
+
RuleLevelDesc: string
|
|
5237
|
+
|
|
5238
|
+
/**
|
|
5239
|
+
* 更新时间
|
|
5240
|
+
*/
|
|
5241
|
+
UpdateTime: string
|
|
5242
|
+
|
|
5243
|
+
/**
|
|
5244
|
+
* 规则当前状态 block, allow
|
|
5245
|
+
*/
|
|
5246
|
+
Status: string
|
|
5247
|
+
|
|
5248
|
+
/**
|
|
5249
|
+
* 规则标签
|
|
5250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5251
|
+
*/
|
|
5252
|
+
RuleTags?: Array<string>
|
|
5253
|
+
|
|
5254
|
+
/**
|
|
5255
|
+
* 规则类型详细描述
|
|
5256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5257
|
+
*/
|
|
5258
|
+
RuleTypeDesc?: string
|
|
5259
|
+
|
|
5260
|
+
/**
|
|
5261
|
+
* 规则类型id
|
|
5262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5263
|
+
*/
|
|
5264
|
+
RuleTypeId?: number
|
|
5265
|
+
}
|
|
5266
|
+
|
|
5267
|
+
/**
|
|
5268
|
+
* 过滤条件
|
|
5269
|
+
*/
|
|
5270
|
+
export interface Filter {
|
|
5271
|
+
/**
|
|
5272
|
+
* 筛选维度
|
|
5273
|
+
*/
|
|
5274
|
+
Key: string
|
|
5275
|
+
|
|
5276
|
+
/**
|
|
5277
|
+
* 操作符
|
|
5278
|
+
*/
|
|
5279
|
+
Operator: string
|
|
5280
|
+
|
|
5281
|
+
/**
|
|
5282
|
+
* 筛选维度值
|
|
5283
|
+
*/
|
|
5284
|
+
Value: Array<string>
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5287
|
+
/**
|
|
5288
|
+
* DescribeWebManagedRulesAttackEvents请求参数结构体
|
|
5289
|
+
*/
|
|
5290
|
+
export interface DescribeWebManagedRulesAttackEventsRequest {
|
|
5291
|
+
/**
|
|
5292
|
+
* 开始时间
|
|
5293
|
+
*/
|
|
5294
|
+
StartTime: string
|
|
5295
|
+
|
|
5296
|
+
/**
|
|
5297
|
+
* 结束时间
|
|
5298
|
+
*/
|
|
5299
|
+
EndTime: string
|
|
5300
|
+
|
|
5301
|
+
/**
|
|
5302
|
+
* 条数
|
|
5303
|
+
*/
|
|
5304
|
+
PageSize: number
|
|
5305
|
+
|
|
5306
|
+
/**
|
|
5307
|
+
* 当前页
|
|
5308
|
+
*/
|
|
5309
|
+
PageNo: number
|
|
5310
|
+
|
|
5311
|
+
/**
|
|
5312
|
+
* ddos策略组id 集合
|
|
5313
|
+
*/
|
|
5314
|
+
PolicyIds?: Array<number>
|
|
5315
|
+
|
|
5316
|
+
/**
|
|
5317
|
+
* 站点集合
|
|
5318
|
+
*/
|
|
5319
|
+
ZoneIds?: Array<string>
|
|
5320
|
+
|
|
5321
|
+
/**
|
|
5322
|
+
* 协议类型,{tcp,udp,all}
|
|
5323
|
+
*/
|
|
5324
|
+
Domains?: Array<string>
|
|
5325
|
+
|
|
5326
|
+
/**
|
|
5327
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
5328
|
+
*/
|
|
5329
|
+
IsShowDetail?: string
|
|
5330
|
+
}
|
|
5331
|
+
|
|
5332
|
+
/**
|
|
5333
|
+
* DescribeCnameStatus请求参数结构体
|
|
5334
|
+
*/
|
|
5335
|
+
export interface DescribeCnameStatusRequest {
|
|
5336
|
+
/**
|
|
5337
|
+
* 站点 ID
|
|
5338
|
+
*/
|
|
5339
|
+
ZoneId: string
|
|
5340
|
+
|
|
5341
|
+
/**
|
|
5342
|
+
* 域名列表
|
|
5343
|
+
*/
|
|
5344
|
+
Names: Array<string>
|
|
5345
|
+
}
|
|
5346
|
+
|
|
5347
|
+
/**
|
|
5348
|
+
* CreateCustomErrorPage请求参数结构体
|
|
5349
|
+
*/
|
|
5350
|
+
export interface CreateCustomErrorPageRequest {
|
|
5351
|
+
/**
|
|
5352
|
+
* zone的id
|
|
5353
|
+
*/
|
|
5354
|
+
ZoneId: string
|
|
5355
|
+
|
|
5356
|
+
/**
|
|
5357
|
+
* 具体所属实体
|
|
5358
|
+
*/
|
|
5359
|
+
Entity: string
|
|
5360
|
+
|
|
5361
|
+
/**
|
|
5362
|
+
* 自定义页面的文件名
|
|
5363
|
+
*/
|
|
5364
|
+
Name: string
|
|
5365
|
+
|
|
5366
|
+
/**
|
|
5367
|
+
* 自定义页面的内容
|
|
5368
|
+
*/
|
|
5369
|
+
Content: string
|
|
5370
|
+
}
|
|
5371
|
+
|
|
5372
|
+
/**
|
|
5373
|
+
* DescribeDnssec返回参数结构体
|
|
5374
|
+
*/
|
|
5375
|
+
export interface DescribeDnssecResponse {
|
|
5376
|
+
/**
|
|
5377
|
+
* 站点 ID
|
|
5378
|
+
*/
|
|
5379
|
+
Id: string
|
|
4059
5380
|
|
|
4060
5381
|
/**
|
|
4061
5382
|
* 站点名称
|
|
@@ -4204,44 +5525,114 @@ export interface DeleteLoadBalancingRequest {
|
|
|
4204
5525
|
}
|
|
4205
5526
|
|
|
4206
5527
|
/**
|
|
4207
|
-
*
|
|
5528
|
+
* DescribeTimingL7AnalysisData请求参数结构体
|
|
4208
5529
|
*/
|
|
4209
|
-
export interface
|
|
5530
|
+
export interface DescribeTimingL7AnalysisDataRequest {
|
|
4210
5531
|
/**
|
|
4211
|
-
*
|
|
5532
|
+
* RFC3339标准,客户端时间
|
|
4212
5533
|
*/
|
|
4213
|
-
|
|
5534
|
+
StartTime: string
|
|
4214
5535
|
|
|
4215
5536
|
/**
|
|
4216
|
-
*
|
|
5537
|
+
* RFC3339标准,客户端时间
|
|
4217
5538
|
*/
|
|
4218
|
-
|
|
5539
|
+
EndTime: string
|
|
4219
5540
|
|
|
4220
5541
|
/**
|
|
4221
|
-
*
|
|
5542
|
+
* 时序类访问流量指标
|
|
4222
5543
|
*/
|
|
4223
|
-
|
|
5544
|
+
MetricNames: Array<string>
|
|
4224
5545
|
|
|
4225
5546
|
/**
|
|
4226
|
-
*
|
|
5547
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
4227
5548
|
*/
|
|
4228
|
-
|
|
4229
|
-
}
|
|
5549
|
+
Interval: string
|
|
4230
5550
|
|
|
4231
|
-
/**
|
|
4232
|
-
* 应用代理实例
|
|
4233
|
-
*/
|
|
4234
|
-
export interface ApplicationProxy {
|
|
4235
5551
|
/**
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
ProxyId?: string
|
|
5552
|
+
* ZoneId数组
|
|
5553
|
+
*/
|
|
5554
|
+
ZoneIds?: Array<string>
|
|
4240
5555
|
|
|
4241
5556
|
/**
|
|
4242
|
-
*
|
|
5557
|
+
* 筛选条件
|
|
4243
5558
|
*/
|
|
4244
|
-
|
|
5559
|
+
Filters?: Array<Filter>
|
|
5560
|
+
}
|
|
5561
|
+
|
|
5562
|
+
/**
|
|
5563
|
+
* DescribeSecurityPolicyManagedRulesId返回参数结构体
|
|
5564
|
+
*/
|
|
5565
|
+
export interface DescribeSecurityPolicyManagedRulesIdResponse {
|
|
5566
|
+
/**
|
|
5567
|
+
* 返回总数
|
|
5568
|
+
*/
|
|
5569
|
+
Total: number
|
|
5570
|
+
|
|
5571
|
+
/**
|
|
5572
|
+
* 门神规则
|
|
5573
|
+
*/
|
|
5574
|
+
Rules: Array<ManagedRule>
|
|
5575
|
+
|
|
5576
|
+
/**
|
|
5577
|
+
* 返回总数
|
|
5578
|
+
*/
|
|
5579
|
+
Count: number
|
|
5580
|
+
|
|
5581
|
+
/**
|
|
5582
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5583
|
+
*/
|
|
5584
|
+
RequestId?: string
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5587
|
+
/**
|
|
5588
|
+
* web事件数据
|
|
5589
|
+
*/
|
|
5590
|
+
export interface WebEventData {
|
|
5591
|
+
/**
|
|
5592
|
+
* 攻击事件数据集合
|
|
5593
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5594
|
+
*/
|
|
5595
|
+
List: Array<WebAttackEvent>
|
|
5596
|
+
|
|
5597
|
+
/**
|
|
5598
|
+
* 当前页
|
|
5599
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5600
|
+
*/
|
|
5601
|
+
PageNo: number
|
|
5602
|
+
|
|
5603
|
+
/**
|
|
5604
|
+
* 每页展示条数
|
|
5605
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5606
|
+
*/
|
|
5607
|
+
PageSize: number
|
|
5608
|
+
|
|
5609
|
+
/**
|
|
5610
|
+
* 总页数
|
|
5611
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5612
|
+
*/
|
|
5613
|
+
Pages: number
|
|
5614
|
+
|
|
5615
|
+
/**
|
|
5616
|
+
* 总条数
|
|
5617
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5618
|
+
*/
|
|
5619
|
+
TotalSize: number
|
|
5620
|
+
}
|
|
5621
|
+
|
|
5622
|
+
/**
|
|
5623
|
+
* 应用代理实例
|
|
5624
|
+
*/
|
|
5625
|
+
export interface ApplicationProxy {
|
|
5626
|
+
/**
|
|
5627
|
+
* 实例ID
|
|
5628
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5629
|
+
*/
|
|
5630
|
+
ProxyId?: string
|
|
5631
|
+
|
|
5632
|
+
/**
|
|
5633
|
+
* 实例名称
|
|
5634
|
+
*/
|
|
5635
|
+
ProxyName: string
|
|
4245
5636
|
|
|
4246
5637
|
/**
|
|
4247
5638
|
* 调度模式:
|
|
@@ -4491,6 +5882,46 @@ export interface Header {
|
|
|
4491
5882
|
Value: string
|
|
4492
5883
|
}
|
|
4493
5884
|
|
|
5885
|
+
/**
|
|
5886
|
+
* 自定义名字服务器 IP 信息
|
|
5887
|
+
*/
|
|
5888
|
+
export interface VanityNameServersIps {
|
|
5889
|
+
/**
|
|
5890
|
+
* 自定义名字服务器名称
|
|
5891
|
+
*/
|
|
5892
|
+
Name: string
|
|
5893
|
+
|
|
5894
|
+
/**
|
|
5895
|
+
* 自定义名字服务器 IPv4 地址
|
|
5896
|
+
*/
|
|
5897
|
+
IPv4: string
|
|
5898
|
+
}
|
|
5899
|
+
|
|
5900
|
+
/**
|
|
5901
|
+
* DescribeDDosAttackSourceEvent返回参数结构体
|
|
5902
|
+
*/
|
|
5903
|
+
export interface DescribeDDosAttackSourceEventResponse {
|
|
5904
|
+
/**
|
|
5905
|
+
* DDos攻击源数据
|
|
5906
|
+
*/
|
|
5907
|
+
Data: DDosAttackSourceEventData
|
|
5908
|
+
|
|
5909
|
+
/**
|
|
5910
|
+
* 状态,1:失败,0:成功
|
|
5911
|
+
*/
|
|
5912
|
+
Status: number
|
|
5913
|
+
|
|
5914
|
+
/**
|
|
5915
|
+
* 返回信息
|
|
5916
|
+
*/
|
|
5917
|
+
Msg: string
|
|
5918
|
+
|
|
5919
|
+
/**
|
|
5920
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5921
|
+
*/
|
|
5922
|
+
RequestId?: string
|
|
5923
|
+
}
|
|
5924
|
+
|
|
4494
5925
|
/**
|
|
4495
5926
|
* DescribeZoneDetails请求参数结构体
|
|
4496
5927
|
*/
|
|
@@ -4517,24 +5948,70 @@ export interface DescribeDDoSPolicyRequest {
|
|
|
4517
5948
|
}
|
|
4518
5949
|
|
|
4519
5950
|
/**
|
|
4520
|
-
*
|
|
5951
|
+
* 安全数据Entry返回值
|
|
4521
5952
|
*/
|
|
4522
|
-
export interface
|
|
5953
|
+
export interface SecEntry {
|
|
4523
5954
|
/**
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
5955
|
+
* Entry的Key
|
|
5956
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5957
|
+
*/
|
|
5958
|
+
Key: string
|
|
4527
5959
|
|
|
4528
5960
|
/**
|
|
4529
|
-
*
|
|
5961
|
+
* Entry的Value
|
|
4530
5962
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4531
5963
|
*/
|
|
4532
|
-
|
|
5964
|
+
Value: Array<SecEntryValue>
|
|
5965
|
+
}
|
|
4533
5966
|
|
|
5967
|
+
/**
|
|
5968
|
+
* DescribeDDosMajorAttackEvent请求参数结构体
|
|
5969
|
+
*/
|
|
5970
|
+
export interface DescribeDDosMajorAttackEventRequest {
|
|
4534
5971
|
/**
|
|
4535
|
-
*
|
|
5972
|
+
* 开始时间
|
|
4536
5973
|
*/
|
|
4537
|
-
|
|
5974
|
+
StartTime: string
|
|
5975
|
+
|
|
5976
|
+
/**
|
|
5977
|
+
* 结束时间
|
|
5978
|
+
*/
|
|
5979
|
+
EndTime: string
|
|
5980
|
+
|
|
5981
|
+
/**
|
|
5982
|
+
* 条数
|
|
5983
|
+
*/
|
|
5984
|
+
PageSize: number
|
|
5985
|
+
|
|
5986
|
+
/**
|
|
5987
|
+
* 当前页
|
|
5988
|
+
*/
|
|
5989
|
+
PageNo: number
|
|
5990
|
+
|
|
5991
|
+
/**
|
|
5992
|
+
* ddos 策略组id集合
|
|
5993
|
+
*/
|
|
5994
|
+
PolicyIds?: Array<number>
|
|
5995
|
+
|
|
5996
|
+
/**
|
|
5997
|
+
* 协议类型,{tcp,udp,all}
|
|
5998
|
+
*/
|
|
5999
|
+
ProtocolType?: string
|
|
6000
|
+
|
|
6001
|
+
/**
|
|
6002
|
+
* 站点集合
|
|
6003
|
+
*/
|
|
6004
|
+
ZoneIds?: Array<string>
|
|
6005
|
+
}
|
|
6006
|
+
|
|
6007
|
+
/**
|
|
6008
|
+
* Quic配置项
|
|
6009
|
+
*/
|
|
6010
|
+
export interface Quic {
|
|
6011
|
+
/**
|
|
6012
|
+
* 是否启动Quic配置
|
|
6013
|
+
*/
|
|
6014
|
+
Switch: string
|
|
4538
6015
|
}
|
|
4539
6016
|
|
|
4540
6017
|
/**
|
|
@@ -4612,6 +6089,41 @@ excludeCustom:排除部分url参数
|
|
|
4612
6089
|
*/
|
|
4613
6090
|
export type DescribeSecurityPolicyRegionsRequest = null
|
|
4614
6091
|
|
|
6092
|
+
/**
|
|
6093
|
+
* 安全数据Entry对应的值
|
|
6094
|
+
*/
|
|
6095
|
+
export interface SecEntryValue {
|
|
6096
|
+
/**
|
|
6097
|
+
* 指标名称
|
|
6098
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6099
|
+
*/
|
|
6100
|
+
Metric: string
|
|
6101
|
+
|
|
6102
|
+
/**
|
|
6103
|
+
* 指标数据明细
|
|
6104
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6105
|
+
*/
|
|
6106
|
+
Detail: Array<TimingDataItem>
|
|
6107
|
+
|
|
6108
|
+
/**
|
|
6109
|
+
* 最大值
|
|
6110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6111
|
+
*/
|
|
6112
|
+
Max: number
|
|
6113
|
+
|
|
6114
|
+
/**
|
|
6115
|
+
* 平均值
|
|
6116
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6117
|
+
*/
|
|
6118
|
+
Avg: number
|
|
6119
|
+
|
|
6120
|
+
/**
|
|
6121
|
+
* 数据总和
|
|
6122
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6123
|
+
*/
|
|
6124
|
+
Sum: number
|
|
6125
|
+
}
|
|
6126
|
+
|
|
4615
6127
|
/**
|
|
4616
6128
|
* ReclaimZone请求参数结构体
|
|
4617
6129
|
*/
|
|
@@ -4729,6 +6241,51 @@ export interface ModifyDefaultCertificateResponse {
|
|
|
4729
6241
|
RequestId?: string
|
|
4730
6242
|
}
|
|
4731
6243
|
|
|
6244
|
+
/**
|
|
6245
|
+
* DescribeDDosAttackEvent请求参数结构体
|
|
6246
|
+
*/
|
|
6247
|
+
export interface DescribeDDosAttackEventRequest {
|
|
6248
|
+
/**
|
|
6249
|
+
* 开始时间
|
|
6250
|
+
*/
|
|
6251
|
+
StartTime: string
|
|
6252
|
+
|
|
6253
|
+
/**
|
|
6254
|
+
* 结束时间
|
|
6255
|
+
*/
|
|
6256
|
+
EndTime: string
|
|
6257
|
+
|
|
6258
|
+
/**
|
|
6259
|
+
* 条数
|
|
6260
|
+
*/
|
|
6261
|
+
PageSize: number
|
|
6262
|
+
|
|
6263
|
+
/**
|
|
6264
|
+
* 当前页
|
|
6265
|
+
*/
|
|
6266
|
+
PageNo: number
|
|
6267
|
+
|
|
6268
|
+
/**
|
|
6269
|
+
* ddos策略组id 集合
|
|
6270
|
+
*/
|
|
6271
|
+
PolicyIds?: Array<number>
|
|
6272
|
+
|
|
6273
|
+
/**
|
|
6274
|
+
* 站点集合
|
|
6275
|
+
*/
|
|
6276
|
+
ZoneIds?: Array<string>
|
|
6277
|
+
|
|
6278
|
+
/**
|
|
6279
|
+
* 协议类型,{tcp,udp,all}
|
|
6280
|
+
*/
|
|
6281
|
+
ProtocolType?: string
|
|
6282
|
+
|
|
6283
|
+
/**
|
|
6284
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
6285
|
+
*/
|
|
6286
|
+
IsShowDetail?: string
|
|
6287
|
+
}
|
|
6288
|
+
|
|
4732
6289
|
/**
|
|
4733
6290
|
* 客户端IP头部
|
|
4734
6291
|
*/
|
|
@@ -4812,113 +6369,456 @@ export interface DescribeZoneSettingResponse {
|
|
|
4812
6369
|
MaxAge: MaxAge
|
|
4813
6370
|
|
|
4814
6371
|
/**
|
|
4815
|
-
* 离线缓存
|
|
4816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4817
|
-
*/
|
|
4818
|
-
OfflineCache: OfflineCache
|
|
6372
|
+
* 离线缓存
|
|
6373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6374
|
+
*/
|
|
6375
|
+
OfflineCache: OfflineCache
|
|
6376
|
+
|
|
6377
|
+
/**
|
|
6378
|
+
* Quic访问
|
|
6379
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6380
|
+
*/
|
|
6381
|
+
Quic: Quic
|
|
6382
|
+
|
|
6383
|
+
/**
|
|
6384
|
+
* POST请求传输配置
|
|
6385
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6386
|
+
*/
|
|
6387
|
+
PostMaxSize: PostMaxSize
|
|
6388
|
+
|
|
6389
|
+
/**
|
|
6390
|
+
* 智能压缩配置
|
|
6391
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6392
|
+
*/
|
|
6393
|
+
Compression: Compression
|
|
6394
|
+
|
|
6395
|
+
/**
|
|
6396
|
+
* http2回源配置
|
|
6397
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6398
|
+
*/
|
|
6399
|
+
UpstreamHttp2: UpstreamHttp2
|
|
6400
|
+
|
|
6401
|
+
/**
|
|
6402
|
+
* 访问协议强制https跳转配置
|
|
6403
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6404
|
+
*/
|
|
6405
|
+
ForceRedirect: ForceRedirect
|
|
6406
|
+
|
|
6407
|
+
/**
|
|
6408
|
+
* Https 加速配置
|
|
6409
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6410
|
+
*/
|
|
6411
|
+
Https: Https
|
|
6412
|
+
|
|
6413
|
+
/**
|
|
6414
|
+
* 源站配置
|
|
6415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6416
|
+
*/
|
|
6417
|
+
Origin: Origin
|
|
6418
|
+
|
|
6419
|
+
/**
|
|
6420
|
+
* 动态加速配置
|
|
6421
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6422
|
+
*/
|
|
6423
|
+
SmartRouting: SmartRouting
|
|
6424
|
+
|
|
6425
|
+
/**
|
|
6426
|
+
* 站点ID
|
|
6427
|
+
*/
|
|
6428
|
+
ZoneId: string
|
|
6429
|
+
|
|
6430
|
+
/**
|
|
6431
|
+
* 站点域名
|
|
6432
|
+
*/
|
|
6433
|
+
Zone: string
|
|
6434
|
+
|
|
6435
|
+
/**
|
|
6436
|
+
* WebSocket配置
|
|
6437
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6438
|
+
*/
|
|
6439
|
+
WebSocket: WebSocket
|
|
6440
|
+
|
|
6441
|
+
/**
|
|
6442
|
+
* 客户端IP回源请求头配置
|
|
6443
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6444
|
+
*/
|
|
6445
|
+
ClientIpHeader: ClientIp
|
|
6446
|
+
|
|
6447
|
+
/**
|
|
6448
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6449
|
+
*/
|
|
6450
|
+
RequestId?: string
|
|
6451
|
+
}
|
|
6452
|
+
|
|
6453
|
+
/**
|
|
6454
|
+
* AI规则引擎防护
|
|
6455
|
+
*/
|
|
6456
|
+
export interface AiRule {
|
|
6457
|
+
/**
|
|
6458
|
+
* smart_status_close-关闭;smart_status_open-拦截处置;
|
|
6459
|
+
smart_status_observe-观察处置
|
|
6460
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6461
|
+
*/
|
|
6462
|
+
Mode?: string
|
|
6463
|
+
}
|
|
6464
|
+
|
|
6465
|
+
/**
|
|
6466
|
+
* DescribePurgeTasks请求参数结构体
|
|
6467
|
+
*/
|
|
6468
|
+
export interface DescribePurgeTasksRequest {
|
|
6469
|
+
/**
|
|
6470
|
+
* 任务ID
|
|
6471
|
+
*/
|
|
6472
|
+
JobId?: string
|
|
6473
|
+
|
|
6474
|
+
/**
|
|
6475
|
+
* 类型
|
|
6476
|
+
*/
|
|
6477
|
+
Type?: string
|
|
6478
|
+
|
|
6479
|
+
/**
|
|
6480
|
+
* 查询起始时间
|
|
6481
|
+
*/
|
|
6482
|
+
StartTime?: string
|
|
6483
|
+
|
|
6484
|
+
/**
|
|
6485
|
+
* 查询结束时间
|
|
6486
|
+
*/
|
|
6487
|
+
EndTime?: string
|
|
6488
|
+
|
|
6489
|
+
/**
|
|
6490
|
+
* 查询起始偏移量
|
|
6491
|
+
*/
|
|
6492
|
+
Offset?: number
|
|
6493
|
+
|
|
6494
|
+
/**
|
|
6495
|
+
* 查询最大返回的结果条数
|
|
6496
|
+
*/
|
|
6497
|
+
Limit?: number
|
|
6498
|
+
|
|
6499
|
+
/**
|
|
6500
|
+
* 查询的状态
|
|
6501
|
+
允许的值为:processing、success、failed、timeout、invalid
|
|
6502
|
+
*/
|
|
6503
|
+
Statuses?: Array<string>
|
|
6504
|
+
|
|
6505
|
+
/**
|
|
6506
|
+
* zone id
|
|
6507
|
+
*/
|
|
6508
|
+
ZoneId?: string
|
|
6509
|
+
|
|
6510
|
+
/**
|
|
6511
|
+
* 查询的域名列表
|
|
6512
|
+
*/
|
|
6513
|
+
Domains?: Array<string>
|
|
6514
|
+
|
|
6515
|
+
/**
|
|
6516
|
+
* 查询内容
|
|
6517
|
+
*/
|
|
6518
|
+
Target?: string
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
/**
|
|
6522
|
+
* 查询条件
|
|
6523
|
+
*/
|
|
6524
|
+
export interface QueryCondition {
|
|
6525
|
+
/**
|
|
6526
|
+
* 维度
|
|
6527
|
+
*/
|
|
6528
|
+
Key: string
|
|
6529
|
+
|
|
6530
|
+
/**
|
|
6531
|
+
* 操作符
|
|
6532
|
+
*/
|
|
6533
|
+
Operator: string
|
|
6534
|
+
|
|
6535
|
+
/**
|
|
6536
|
+
* 维度值
|
|
6537
|
+
*/
|
|
6538
|
+
Value: Array<string>
|
|
6539
|
+
}
|
|
6540
|
+
|
|
6541
|
+
/**
|
|
6542
|
+
* DescribeDnsData请求参数结构体
|
|
6543
|
+
*/
|
|
6544
|
+
export interface DescribeDnsDataRequest {
|
|
6545
|
+
/**
|
|
6546
|
+
* 起始时间
|
|
6547
|
+
*/
|
|
6548
|
+
StartTime: string
|
|
6549
|
+
|
|
6550
|
+
/**
|
|
6551
|
+
* 结束时间
|
|
6552
|
+
*/
|
|
6553
|
+
EndTime: string
|
|
6554
|
+
|
|
6555
|
+
/**
|
|
6556
|
+
* 过滤参数
|
|
6557
|
+
*/
|
|
6558
|
+
Filters?: Array<DnsDataFilter>
|
|
6559
|
+
|
|
6560
|
+
/**
|
|
6561
|
+
* 时间粒度,默认为1分钟粒度,服务端根据时间范围自适应。
|
|
6562
|
+
支持指定以下几种粒度:
|
|
6563
|
+
min:1分钟粒度
|
|
6564
|
+
5min:5分钟粒度
|
|
6565
|
+
hour:1小时粒度
|
|
6566
|
+
day:天粒度
|
|
6567
|
+
*/
|
|
6568
|
+
Interval?: string
|
|
6569
|
+
}
|
|
6570
|
+
|
|
6571
|
+
/**
|
|
6572
|
+
* 缓存规则配置。
|
|
6573
|
+
*/
|
|
6574
|
+
export interface CacheConfig {
|
|
6575
|
+
/**
|
|
6576
|
+
* 缓存配置
|
|
6577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6578
|
+
*/
|
|
6579
|
+
Cache?: CacheConfigCache
|
|
6580
|
+
|
|
6581
|
+
/**
|
|
6582
|
+
* 不缓存配置
|
|
6583
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6584
|
+
*/
|
|
6585
|
+
NoCache?: CacheConfigNoCache
|
|
6586
|
+
|
|
6587
|
+
/**
|
|
6588
|
+
* 遵循源站配置
|
|
6589
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6590
|
+
*/
|
|
6591
|
+
FollowOrigin?: CacheConfigFollowOrigin
|
|
6592
|
+
}
|
|
6593
|
+
|
|
6594
|
+
/**
|
|
6595
|
+
* DescribeDDosAttackEventDetail返回参数结构体
|
|
6596
|
+
*/
|
|
6597
|
+
export interface DescribeDDosAttackEventDetailResponse {
|
|
6598
|
+
/**
|
|
6599
|
+
* DDos攻击事件详情
|
|
6600
|
+
*/
|
|
6601
|
+
Data: DDosAttackEventDetailData
|
|
6602
|
+
|
|
6603
|
+
/**
|
|
6604
|
+
* 状态,1:失败,0:成功
|
|
6605
|
+
*/
|
|
6606
|
+
Status: number
|
|
6607
|
+
|
|
6608
|
+
/**
|
|
6609
|
+
* 返回信息
|
|
6610
|
+
*/
|
|
6611
|
+
Msg: string
|
|
6612
|
+
|
|
6613
|
+
/**
|
|
6614
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6615
|
+
*/
|
|
6616
|
+
RequestId?: string
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
/**
|
|
6620
|
+
* ModifyApplicationProxyRule请求参数结构体
|
|
6621
|
+
*/
|
|
6622
|
+
export interface ModifyApplicationProxyRuleRequest {
|
|
6623
|
+
/**
|
|
6624
|
+
* 站点ID
|
|
6625
|
+
*/
|
|
6626
|
+
ZoneId: string
|
|
6627
|
+
|
|
6628
|
+
/**
|
|
6629
|
+
* 代理ID
|
|
6630
|
+
*/
|
|
6631
|
+
ProxyId: string
|
|
6632
|
+
|
|
6633
|
+
/**
|
|
6634
|
+
* 规则ID
|
|
6635
|
+
*/
|
|
6636
|
+
RuleId: string
|
|
6637
|
+
|
|
6638
|
+
/**
|
|
6639
|
+
* 协议,取值为TCP或者UDP
|
|
6640
|
+
*/
|
|
6641
|
+
Proto: string
|
|
6642
|
+
|
|
6643
|
+
/**
|
|
6644
|
+
* 端口,支持格式:
|
|
6645
|
+
80:80端口
|
|
6646
|
+
81-90:81至90端口
|
|
6647
|
+
*/
|
|
6648
|
+
Port: Array<string>
|
|
6649
|
+
|
|
6650
|
+
/**
|
|
6651
|
+
* 源站类型,取值:
|
|
6652
|
+
custom:手动添加
|
|
6653
|
+
origins:源站组
|
|
6654
|
+
load_balancing:负载均衡
|
|
6655
|
+
*/
|
|
6656
|
+
OriginType: string
|
|
6657
|
+
|
|
6658
|
+
/**
|
|
6659
|
+
* 源站信息:
|
|
6660
|
+
当OriginType=custom时,表示多个:
|
|
6661
|
+
IP:端口
|
|
6662
|
+
域名:端口
|
|
6663
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
6664
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
6665
|
+
*/
|
|
6666
|
+
OriginValue: Array<string>
|
|
6667
|
+
|
|
6668
|
+
/**
|
|
6669
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
6670
|
+
TOA:TOA
|
|
6671
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
6672
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
6673
|
+
OFF:不传递
|
|
6674
|
+
当Proto=UDP时,取值:
|
|
6675
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
6676
|
+
OFF:不传递
|
|
6677
|
+
*/
|
|
6678
|
+
ForwardClientIp?: string
|
|
6679
|
+
|
|
6680
|
+
/**
|
|
6681
|
+
* 是否开启会话保持
|
|
6682
|
+
*/
|
|
6683
|
+
SessionPersist?: boolean
|
|
6684
|
+
}
|
|
6685
|
+
|
|
6686
|
+
/**
|
|
6687
|
+
* ModifyDDoSPolicy请求参数结构体
|
|
6688
|
+
*/
|
|
6689
|
+
export interface ModifyDDoSPolicyRequest {
|
|
6690
|
+
/**
|
|
6691
|
+
* 策略组ID
|
|
6692
|
+
*/
|
|
6693
|
+
PolicyId: number
|
|
6694
|
+
|
|
6695
|
+
/**
|
|
6696
|
+
* 一级域名
|
|
6697
|
+
*/
|
|
6698
|
+
ZoneId: string
|
|
6699
|
+
|
|
6700
|
+
/**
|
|
6701
|
+
* DDoS具体防护配置
|
|
6702
|
+
*/
|
|
6703
|
+
DdosRule?: DdosRule
|
|
6704
|
+
}
|
|
6705
|
+
|
|
6706
|
+
/**
|
|
6707
|
+
* ModifyZoneCnameSpeedUp返回参数结构体
|
|
6708
|
+
*/
|
|
6709
|
+
export interface ModifyZoneCnameSpeedUpResponse {
|
|
6710
|
+
/**
|
|
6711
|
+
* 站点 ID
|
|
6712
|
+
*/
|
|
6713
|
+
Id: string
|
|
6714
|
+
|
|
6715
|
+
/**
|
|
6716
|
+
* 站点名称
|
|
6717
|
+
*/
|
|
6718
|
+
Name: string
|
|
4819
6719
|
|
|
4820
6720
|
/**
|
|
4821
|
-
*
|
|
4822
|
-
|
|
6721
|
+
* CNAME 加速状态
|
|
6722
|
+
- enabled 开启
|
|
6723
|
+
- disabled 关闭
|
|
4823
6724
|
*/
|
|
4824
|
-
|
|
6725
|
+
Status: string
|
|
4825
6726
|
|
|
4826
6727
|
/**
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
PostMaxSize: PostMaxSize
|
|
6728
|
+
* 更新时间
|
|
6729
|
+
*/
|
|
6730
|
+
ModifiedOn: string
|
|
4831
6731
|
|
|
4832
6732
|
/**
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
6733
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6734
|
+
*/
|
|
6735
|
+
RequestId?: string
|
|
6736
|
+
}
|
|
4837
6737
|
|
|
6738
|
+
/**
|
|
6739
|
+
* DescribeWebProtectionLog请求参数结构体
|
|
6740
|
+
*/
|
|
6741
|
+
export interface DescribeWebProtectionLogRequest {
|
|
4838
6742
|
/**
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
UpstreamHttp2: UpstreamHttp2
|
|
6743
|
+
* 起始时间
|
|
6744
|
+
*/
|
|
6745
|
+
StartTime: string
|
|
4843
6746
|
|
|
4844
6747
|
/**
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
ForceRedirect: ForceRedirect
|
|
6748
|
+
* 结束时间
|
|
6749
|
+
*/
|
|
6750
|
+
EndTime: string
|
|
4849
6751
|
|
|
4850
6752
|
/**
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
Https: Https
|
|
6753
|
+
* 每页条数
|
|
6754
|
+
*/
|
|
6755
|
+
PageSize: number
|
|
4855
6756
|
|
|
4856
6757
|
/**
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
Origin: Origin
|
|
6758
|
+
* 当前页
|
|
6759
|
+
*/
|
|
6760
|
+
PageNo: number
|
|
4861
6761
|
|
|
4862
6762
|
/**
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
SmartRouting: SmartRouting
|
|
6763
|
+
* 站点集合
|
|
6764
|
+
*/
|
|
6765
|
+
ZoneIds?: Array<string>
|
|
4867
6766
|
|
|
4868
6767
|
/**
|
|
4869
|
-
*
|
|
6768
|
+
* 域名集合
|
|
4870
6769
|
*/
|
|
4871
|
-
|
|
6770
|
+
Domains?: Array<string>
|
|
4872
6771
|
|
|
4873
6772
|
/**
|
|
4874
|
-
*
|
|
6773
|
+
* 查询条件
|
|
4875
6774
|
*/
|
|
4876
|
-
|
|
6775
|
+
QueryCondition?: Array<QueryCondition>
|
|
6776
|
+
}
|
|
4877
6777
|
|
|
6778
|
+
/**
|
|
6779
|
+
* 限速拦截日志
|
|
6780
|
+
*/
|
|
6781
|
+
export interface CCLogData {
|
|
4878
6782
|
/**
|
|
4879
|
-
*
|
|
6783
|
+
* CC拦截日志数据集合
|
|
4880
6784
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4881
6785
|
*/
|
|
4882
|
-
|
|
6786
|
+
List: Array<CCLog>
|
|
4883
6787
|
|
|
4884
6788
|
/**
|
|
4885
|
-
*
|
|
6789
|
+
* 当前页
|
|
4886
6790
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4887
6791
|
*/
|
|
4888
|
-
|
|
6792
|
+
PageNo: number
|
|
4889
6793
|
|
|
4890
6794
|
/**
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
6795
|
+
* 每页展示条数
|
|
6796
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6797
|
+
*/
|
|
6798
|
+
PageSize: number
|
|
4895
6799
|
|
|
4896
|
-
/**
|
|
4897
|
-
* AI规则引擎防护
|
|
4898
|
-
*/
|
|
4899
|
-
export interface AiRule {
|
|
4900
6800
|
/**
|
|
4901
|
-
*
|
|
4902
|
-
smart_status_observe-观察处置
|
|
6801
|
+
* 总页数
|
|
4903
6802
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4904
6803
|
*/
|
|
4905
|
-
|
|
6804
|
+
Pages: number
|
|
6805
|
+
|
|
6806
|
+
/**
|
|
6807
|
+
* 总条数
|
|
6808
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6809
|
+
*/
|
|
6810
|
+
TotalSize: number
|
|
4906
6811
|
}
|
|
4907
6812
|
|
|
4908
6813
|
/**
|
|
4909
|
-
*
|
|
6814
|
+
* DescribePrefetchTasks请求参数结构体
|
|
4910
6815
|
*/
|
|
4911
|
-
export interface
|
|
6816
|
+
export interface DescribePrefetchTasksRequest {
|
|
4912
6817
|
/**
|
|
4913
6818
|
* 任务ID
|
|
4914
6819
|
*/
|
|
4915
6820
|
JobId?: string
|
|
4916
6821
|
|
|
4917
|
-
/**
|
|
4918
|
-
* 类型
|
|
4919
|
-
*/
|
|
4920
|
-
Type?: string
|
|
4921
|
-
|
|
4922
6822
|
/**
|
|
4923
6823
|
* 查询起始时间
|
|
4924
6824
|
*/
|
|
@@ -4956,134 +6856,44 @@ export interface DescribePurgeTasksRequest {
|
|
|
4956
6856
|
Domains?: Array<string>
|
|
4957
6857
|
|
|
4958
6858
|
/**
|
|
4959
|
-
*
|
|
6859
|
+
* 查询的资源
|
|
4960
6860
|
*/
|
|
4961
6861
|
Target?: string
|
|
4962
6862
|
}
|
|
4963
6863
|
|
|
4964
6864
|
/**
|
|
4965
|
-
*
|
|
4966
|
-
*/
|
|
4967
|
-
export interface IdentifyZoneRequest {
|
|
4968
|
-
/**
|
|
4969
|
-
* 站点名称
|
|
4970
|
-
*/
|
|
4971
|
-
Name: string
|
|
4972
|
-
}
|
|
4973
|
-
|
|
4974
|
-
/**
|
|
4975
|
-
* 缓存规则配置。
|
|
4976
|
-
*/
|
|
4977
|
-
export interface CacheConfig {
|
|
4978
|
-
/**
|
|
4979
|
-
* 缓存配置
|
|
4980
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4981
|
-
*/
|
|
4982
|
-
Cache?: CacheConfigCache
|
|
4983
|
-
|
|
4984
|
-
/**
|
|
4985
|
-
* 不缓存配置
|
|
4986
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4987
|
-
*/
|
|
4988
|
-
NoCache?: CacheConfigNoCache
|
|
4989
|
-
|
|
4990
|
-
/**
|
|
4991
|
-
* 遵循源站配置
|
|
4992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4993
|
-
*/
|
|
4994
|
-
FollowOrigin?: CacheConfigFollowOrigin
|
|
4995
|
-
}
|
|
4996
|
-
|
|
4997
|
-
/**
|
|
4998
|
-
* ModifyDDoSPolicy请求参数结构体
|
|
4999
|
-
*/
|
|
5000
|
-
export interface ModifyDDoSPolicyRequest {
|
|
5001
|
-
/**
|
|
5002
|
-
* 策略组ID
|
|
5003
|
-
*/
|
|
5004
|
-
PolicyId: number
|
|
5005
|
-
|
|
5006
|
-
/**
|
|
5007
|
-
* 一级域名
|
|
5008
|
-
*/
|
|
5009
|
-
ZoneId: string
|
|
5010
|
-
|
|
5011
|
-
/**
|
|
5012
|
-
* DDoS具体防护配置
|
|
5013
|
-
*/
|
|
5014
|
-
DdosRule?: DdosRule
|
|
5015
|
-
}
|
|
5016
|
-
|
|
5017
|
-
/**
|
|
5018
|
-
* ModifyZoneCnameSpeedUp返回参数结构体
|
|
6865
|
+
* 内容管理任务结果
|
|
5019
6866
|
*/
|
|
5020
|
-
export interface
|
|
6867
|
+
export interface Task {
|
|
5021
6868
|
/**
|
|
5022
|
-
*
|
|
6869
|
+
* 任务ID
|
|
5023
6870
|
*/
|
|
5024
|
-
|
|
6871
|
+
JobId: string
|
|
5025
6872
|
|
|
5026
6873
|
/**
|
|
5027
|
-
*
|
|
6874
|
+
* 状态
|
|
5028
6875
|
*/
|
|
5029
|
-
Name: string
|
|
5030
|
-
|
|
5031
|
-
/**
|
|
5032
|
-
* CNAME 加速状态
|
|
5033
|
-
- enabled 开启
|
|
5034
|
-
- disabled 关闭
|
|
5035
|
-
*/
|
|
5036
6876
|
Status: string
|
|
5037
6877
|
|
|
5038
6878
|
/**
|
|
5039
|
-
*
|
|
6879
|
+
* 资源
|
|
5040
6880
|
*/
|
|
5041
|
-
|
|
6881
|
+
Target: string
|
|
5042
6882
|
|
|
5043
6883
|
/**
|
|
5044
|
-
*
|
|
6884
|
+
* 任务类型
|
|
5045
6885
|
*/
|
|
5046
|
-
|
|
5047
|
-
}
|
|
5048
|
-
|
|
5049
|
-
/**
|
|
5050
|
-
* 站点查询过滤条件
|
|
5051
|
-
*/
|
|
5052
|
-
export interface ZoneFilter {
|
|
5053
|
-
/**
|
|
5054
|
-
* 过滤字段名,支持的列表如下:
|
|
5055
|
-
- name: 站点名。
|
|
5056
|
-
- status: 站点状态
|
|
5057
|
-
*/
|
|
5058
|
-
Name: string
|
|
6886
|
+
Type: string
|
|
5059
6887
|
|
|
5060
6888
|
/**
|
|
5061
|
-
*
|
|
6889
|
+
* 任务创建时间
|
|
5062
6890
|
*/
|
|
5063
|
-
|
|
6891
|
+
CreateTime: string
|
|
5064
6892
|
|
|
5065
6893
|
/**
|
|
5066
|
-
*
|
|
6894
|
+
* 任务完成时间
|
|
5067
6895
|
*/
|
|
5068
|
-
|
|
5069
|
-
}
|
|
5070
|
-
|
|
5071
|
-
/**
|
|
5072
|
-
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
5073
|
-
*/
|
|
5074
|
-
export interface MaxAge {
|
|
5075
|
-
/**
|
|
5076
|
-
* MaxAge 时间设置,单位秒,最大365天
|
|
5077
|
-
注意:时间为0,即不缓存。
|
|
5078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5079
|
-
*/
|
|
5080
|
-
MaxAgeTime?: number
|
|
5081
|
-
|
|
5082
|
-
/**
|
|
5083
|
-
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
5084
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5085
|
-
*/
|
|
5086
|
-
FollowOrigin?: string
|
|
6896
|
+
UpdateTime: string
|
|
5087
6897
|
}
|
|
5088
6898
|
|
|
5089
6899
|
/**
|
|
@@ -5160,48 +6970,52 @@ export interface DescribeZoneDDoSPolicyResponse {
|
|
|
5160
6970
|
}
|
|
5161
6971
|
|
|
5162
6972
|
/**
|
|
5163
|
-
*
|
|
6973
|
+
* CNAME 状态
|
|
5164
6974
|
*/
|
|
5165
|
-
export interface
|
|
6975
|
+
export interface CnameStatus {
|
|
5166
6976
|
/**
|
|
5167
|
-
*
|
|
6977
|
+
* 记录名称
|
|
5168
6978
|
*/
|
|
5169
|
-
|
|
6979
|
+
Name: string
|
|
5170
6980
|
|
|
5171
6981
|
/**
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
6982
|
+
* CNAME 地址
|
|
6983
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6984
|
+
*/
|
|
6985
|
+
Cname: string
|
|
6986
|
+
|
|
6987
|
+
/**
|
|
6988
|
+
* 状态
|
|
6989
|
+
生效:active
|
|
6990
|
+
不生效:moved
|
|
6991
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6992
|
+
*/
|
|
6993
|
+
Status: string
|
|
5175
6994
|
}
|
|
5176
6995
|
|
|
5177
6996
|
/**
|
|
5178
|
-
*
|
|
6997
|
+
* DescribeDDosMajorAttackEvent返回参数结构体
|
|
5179
6998
|
*/
|
|
5180
|
-
export interface
|
|
6999
|
+
export interface DescribeDDosMajorAttackEventResponse {
|
|
5181
7000
|
/**
|
|
5182
|
-
*
|
|
7001
|
+
* DDos查询主攻击事件
|
|
5183
7002
|
*/
|
|
5184
|
-
|
|
7003
|
+
Data: DDosMajorAttackEventData
|
|
5185
7004
|
|
|
5186
7005
|
/**
|
|
5187
|
-
*
|
|
7006
|
+
* 状态,1:失败,0:成功
|
|
5188
7007
|
*/
|
|
5189
|
-
|
|
7008
|
+
Status: number
|
|
5190
7009
|
|
|
5191
7010
|
/**
|
|
5192
|
-
*
|
|
7011
|
+
* 返回消息
|
|
5193
7012
|
*/
|
|
5194
|
-
|
|
7013
|
+
Msg: string
|
|
5195
7014
|
|
|
5196
7015
|
/**
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
5min:5分钟粒度
|
|
5201
|
-
hour:1小时粒度
|
|
5202
|
-
day:天粒度
|
|
5203
|
-
*/
|
|
5204
|
-
Interval?: string
|
|
7016
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7017
|
+
*/
|
|
7018
|
+
RequestId?: string
|
|
5205
7019
|
}
|
|
5206
7020
|
|
|
5207
7021
|
/**
|
|
@@ -5314,6 +7128,31 @@ export interface DDoSFeaturesFilter {
|
|
|
5314
7128
|
MatchBegin2?: string
|
|
5315
7129
|
}
|
|
5316
7130
|
|
|
7131
|
+
/**
|
|
7132
|
+
* DescribeWebProtectionAttackEvents返回参数结构体
|
|
7133
|
+
*/
|
|
7134
|
+
export interface DescribeWebProtectionAttackEventsResponse {
|
|
7135
|
+
/**
|
|
7136
|
+
* DDos攻击事件数据
|
|
7137
|
+
*/
|
|
7138
|
+
Data: CCInterceptEventData
|
|
7139
|
+
|
|
7140
|
+
/**
|
|
7141
|
+
* 状态,1:失败,0:成功
|
|
7142
|
+
*/
|
|
7143
|
+
Status: number
|
|
7144
|
+
|
|
7145
|
+
/**
|
|
7146
|
+
* 返回消息
|
|
7147
|
+
*/
|
|
7148
|
+
Msg: string
|
|
7149
|
+
|
|
7150
|
+
/**
|
|
7151
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7152
|
+
*/
|
|
7153
|
+
RequestId?: string
|
|
7154
|
+
}
|
|
7155
|
+
|
|
5317
7156
|
/**
|
|
5318
7157
|
* CreatePurgeTask请求参数结构体
|
|
5319
7158
|
*/
|
|
@@ -5449,6 +7288,46 @@ instance:实例
|
|
|
5449
7288
|
RequestId?: string
|
|
5450
7289
|
}
|
|
5451
7290
|
|
|
7291
|
+
/**
|
|
7292
|
+
* DescribeBotLog请求参数结构体
|
|
7293
|
+
*/
|
|
7294
|
+
export interface DescribeBotLogRequest {
|
|
7295
|
+
/**
|
|
7296
|
+
* 起始时间
|
|
7297
|
+
*/
|
|
7298
|
+
StartTime: string
|
|
7299
|
+
|
|
7300
|
+
/**
|
|
7301
|
+
* 结束时间
|
|
7302
|
+
*/
|
|
7303
|
+
EndTime: string
|
|
7304
|
+
|
|
7305
|
+
/**
|
|
7306
|
+
* 每页条数
|
|
7307
|
+
*/
|
|
7308
|
+
PageSize: number
|
|
7309
|
+
|
|
7310
|
+
/**
|
|
7311
|
+
* 当前页
|
|
7312
|
+
*/
|
|
7313
|
+
PageNo: number
|
|
7314
|
+
|
|
7315
|
+
/**
|
|
7316
|
+
* 站点集合
|
|
7317
|
+
*/
|
|
7318
|
+
ZoneIds?: Array<string>
|
|
7319
|
+
|
|
7320
|
+
/**
|
|
7321
|
+
* 域名集合
|
|
7322
|
+
*/
|
|
7323
|
+
Domains?: Array<string>
|
|
7324
|
+
|
|
7325
|
+
/**
|
|
7326
|
+
* 查询条件
|
|
7327
|
+
*/
|
|
7328
|
+
QueryCondition?: Array<QueryCondition>
|
|
7329
|
+
}
|
|
7330
|
+
|
|
5452
7331
|
/**
|
|
5453
7332
|
* DownloadL7Logs返回参数结构体
|
|
5454
7333
|
*/
|
|
@@ -5460,118 +7339,334 @@ export interface DownloadL7LogsResponse {
|
|
|
5460
7339
|
Data: Array<L7OfflineLog>
|
|
5461
7340
|
|
|
5462
7341
|
/**
|
|
5463
|
-
* 页面大小
|
|
5464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5465
|
-
*/
|
|
7342
|
+
* 页面大小
|
|
7343
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7344
|
+
*/
|
|
7345
|
+
PageSize: number
|
|
7346
|
+
|
|
7347
|
+
/**
|
|
7348
|
+
* 页号
|
|
7349
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7350
|
+
*/
|
|
7351
|
+
PageNo: number
|
|
7352
|
+
|
|
7353
|
+
/**
|
|
7354
|
+
* 总页数
|
|
7355
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7356
|
+
*/
|
|
7357
|
+
Pages: number
|
|
7358
|
+
|
|
7359
|
+
/**
|
|
7360
|
+
* 总条数
|
|
7361
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7362
|
+
*/
|
|
7363
|
+
TotalSize: number
|
|
7364
|
+
|
|
7365
|
+
/**
|
|
7366
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7367
|
+
*/
|
|
7368
|
+
RequestId?: string
|
|
7369
|
+
}
|
|
7370
|
+
|
|
7371
|
+
/**
|
|
7372
|
+
* ddos 攻击事件的详情
|
|
7373
|
+
*/
|
|
7374
|
+
export interface DDosAttackEventDetailData {
|
|
7375
|
+
/**
|
|
7376
|
+
* 攻击状态
|
|
7377
|
+
*/
|
|
7378
|
+
AttackStatus: number
|
|
7379
|
+
|
|
7380
|
+
/**
|
|
7381
|
+
* 攻击类型
|
|
7382
|
+
*/
|
|
7383
|
+
AttackType: string
|
|
7384
|
+
|
|
7385
|
+
/**
|
|
7386
|
+
* 结束时间
|
|
7387
|
+
*/
|
|
7388
|
+
EndTime: number
|
|
7389
|
+
|
|
7390
|
+
/**
|
|
7391
|
+
* 开始时间
|
|
7392
|
+
*/
|
|
7393
|
+
StartTime: number
|
|
7394
|
+
|
|
7395
|
+
/**
|
|
7396
|
+
* 最大带宽
|
|
7397
|
+
*/
|
|
7398
|
+
MaxBandWidth: number
|
|
7399
|
+
|
|
7400
|
+
/**
|
|
7401
|
+
* 最大包速率
|
|
7402
|
+
*/
|
|
7403
|
+
PacketMaxRate: number
|
|
7404
|
+
|
|
7405
|
+
/**
|
|
7406
|
+
* 事件Id
|
|
7407
|
+
*/
|
|
7408
|
+
EventId: string
|
|
7409
|
+
|
|
7410
|
+
/**
|
|
7411
|
+
* ddos 策略组id
|
|
7412
|
+
*/
|
|
7413
|
+
PolicyId: number
|
|
7414
|
+
}
|
|
7415
|
+
|
|
7416
|
+
/**
|
|
7417
|
+
* CreateOriginGroup请求参数结构体
|
|
7418
|
+
*/
|
|
7419
|
+
export interface CreateOriginGroupRequest {
|
|
7420
|
+
/**
|
|
7421
|
+
* 源站组名称
|
|
7422
|
+
*/
|
|
7423
|
+
OriginName: string
|
|
7424
|
+
|
|
7425
|
+
/**
|
|
7426
|
+
* 配置类型,当OriginType=self 时,需要填写:
|
|
7427
|
+
area: 按区域配置
|
|
7428
|
+
weight: 按权重配置
|
|
7429
|
+
当OriginType=third_party 时,不需要填写
|
|
7430
|
+
*/
|
|
7431
|
+
Type: string
|
|
7432
|
+
|
|
7433
|
+
/**
|
|
7434
|
+
* 源站记录
|
|
7435
|
+
*/
|
|
7436
|
+
Record: Array<OriginRecord>
|
|
7437
|
+
|
|
7438
|
+
/**
|
|
7439
|
+
* 站点ID
|
|
7440
|
+
*/
|
|
7441
|
+
ZoneId: string
|
|
7442
|
+
|
|
7443
|
+
/**
|
|
7444
|
+
* 源站类型
|
|
7445
|
+
self:自有源站
|
|
7446
|
+
third_party:第三方源站
|
|
7447
|
+
*/
|
|
7448
|
+
OriginType?: string
|
|
7449
|
+
}
|
|
7450
|
+
|
|
7451
|
+
/**
|
|
7452
|
+
* DescribeTimingL4Data请求参数结构体
|
|
7453
|
+
*/
|
|
7454
|
+
export interface DescribeTimingL4DataRequest {
|
|
7455
|
+
/**
|
|
7456
|
+
* RFC3339格式,客户端时间
|
|
7457
|
+
*/
|
|
7458
|
+
StartTime: string
|
|
7459
|
+
|
|
7460
|
+
/**
|
|
7461
|
+
* RFC3339格式,客户端时间
|
|
7462
|
+
*/
|
|
7463
|
+
EndTime: string
|
|
7464
|
+
|
|
7465
|
+
/**
|
|
7466
|
+
* 指标列表
|
|
7467
|
+
*/
|
|
7468
|
+
MetricNames: Array<string>
|
|
7469
|
+
|
|
7470
|
+
/**
|
|
7471
|
+
* ZoneId列表,仅在zone/instance维度下查询时该参数有效
|
|
7472
|
+
*/
|
|
7473
|
+
ZoneIds?: Array<string>
|
|
7474
|
+
|
|
7475
|
+
/**
|
|
7476
|
+
* InstanceId列表,仅在Instance维度下查询时该参数有效
|
|
7477
|
+
*/
|
|
7478
|
+
InstanceIds?: Array<string>
|
|
7479
|
+
|
|
7480
|
+
/**
|
|
7481
|
+
* 协议类型, 该字段当前无效
|
|
7482
|
+
*/
|
|
7483
|
+
Protocol?: string
|
|
7484
|
+
|
|
7485
|
+
/**
|
|
7486
|
+
* 时间间隔,选填{min, 5min, hour, day}
|
|
7487
|
+
*/
|
|
7488
|
+
Interval?: string
|
|
7489
|
+
|
|
7490
|
+
/**
|
|
7491
|
+
* 规则ID,仅在instance维度有效
|
|
7492
|
+
*/
|
|
7493
|
+
RuleId?: string
|
|
7494
|
+
}
|
|
7495
|
+
|
|
7496
|
+
/**
|
|
7497
|
+
* DescribeHostsSetting请求参数结构体
|
|
7498
|
+
*/
|
|
7499
|
+
export interface DescribeHostsSettingRequest {
|
|
7500
|
+
/**
|
|
7501
|
+
* 站点ID
|
|
7502
|
+
*/
|
|
7503
|
+
ZoneId: string
|
|
7504
|
+
|
|
7505
|
+
/**
|
|
7506
|
+
* 分页查询偏移量,默认为 0
|
|
7507
|
+
*/
|
|
7508
|
+
Offset?: number
|
|
7509
|
+
|
|
7510
|
+
/**
|
|
7511
|
+
* 分页查询限制数目,默认为 100,最大可设置为 1000
|
|
7512
|
+
*/
|
|
7513
|
+
Limit?: number
|
|
7514
|
+
|
|
7515
|
+
/**
|
|
7516
|
+
* 指定域名查询
|
|
7517
|
+
*/
|
|
7518
|
+
Hosts?: Array<string>
|
|
7519
|
+
}
|
|
7520
|
+
|
|
7521
|
+
/**
|
|
7522
|
+
* DescribeZoneDDoSPolicy请求参数结构体
|
|
7523
|
+
*/
|
|
7524
|
+
export interface DescribeZoneDDoSPolicyRequest {
|
|
7525
|
+
/**
|
|
7526
|
+
* 一级域名id
|
|
7527
|
+
*/
|
|
7528
|
+
ZoneId?: string
|
|
7529
|
+
}
|
|
7530
|
+
|
|
7531
|
+
/**
|
|
7532
|
+
* DescribeDDosAttackData返回参数结构体
|
|
7533
|
+
*/
|
|
7534
|
+
export interface DescribeDDosAttackDataResponse {
|
|
7535
|
+
/**
|
|
7536
|
+
* DDos攻击数据
|
|
7537
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7538
|
+
*/
|
|
7539
|
+
Data: Array<SecEntry>
|
|
7540
|
+
|
|
7541
|
+
/**
|
|
7542
|
+
* 状态,1:失败,0:成功
|
|
7543
|
+
*/
|
|
7544
|
+
Status: number
|
|
7545
|
+
|
|
7546
|
+
/**
|
|
7547
|
+
* 返回数据
|
|
7548
|
+
*/
|
|
7549
|
+
Msg: string
|
|
7550
|
+
|
|
7551
|
+
/**
|
|
7552
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
7553
|
+
*/
|
|
7554
|
+
Interval: string
|
|
7555
|
+
|
|
7556
|
+
/**
|
|
7557
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7558
|
+
*/
|
|
7559
|
+
RequestId?: string
|
|
7560
|
+
}
|
|
7561
|
+
|
|
7562
|
+
/**
|
|
7563
|
+
* DescribeWebManagedRulesLog请求参数结构体
|
|
7564
|
+
*/
|
|
7565
|
+
export interface DescribeWebManagedRulesLogRequest {
|
|
7566
|
+
/**
|
|
7567
|
+
* 起始时间
|
|
7568
|
+
*/
|
|
7569
|
+
StartTime: string
|
|
7570
|
+
|
|
7571
|
+
/**
|
|
7572
|
+
* 结束时间
|
|
7573
|
+
*/
|
|
7574
|
+
EndTime: string
|
|
7575
|
+
|
|
7576
|
+
/**
|
|
7577
|
+
* 每页条数
|
|
7578
|
+
*/
|
|
5466
7579
|
PageSize: number
|
|
5467
7580
|
|
|
5468
7581
|
/**
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
*/
|
|
7582
|
+
* 当前页
|
|
7583
|
+
*/
|
|
5472
7584
|
PageNo: number
|
|
5473
7585
|
|
|
5474
7586
|
/**
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
Pages: number
|
|
7587
|
+
* 站点集合
|
|
7588
|
+
*/
|
|
7589
|
+
ZoneIds?: Array<string>
|
|
5479
7590
|
|
|
5480
7591
|
/**
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
TotalSize: number
|
|
7592
|
+
* 域名集合
|
|
7593
|
+
*/
|
|
7594
|
+
Domains?: Array<string>
|
|
5485
7595
|
|
|
5486
7596
|
/**
|
|
5487
|
-
*
|
|
7597
|
+
* 查询条件
|
|
5488
7598
|
*/
|
|
5489
|
-
|
|
7599
|
+
QueryCondition?: Array<QueryCondition>
|
|
5490
7600
|
}
|
|
5491
7601
|
|
|
5492
7602
|
/**
|
|
5493
|
-
*
|
|
7603
|
+
* CreateApplicationProxyRules返回参数结构体
|
|
5494
7604
|
*/
|
|
5495
|
-
export interface
|
|
7605
|
+
export interface CreateApplicationProxyRulesResponse {
|
|
5496
7606
|
/**
|
|
5497
|
-
*
|
|
7607
|
+
* 新增的规则ID数组
|
|
5498
7608
|
*/
|
|
5499
|
-
|
|
7609
|
+
RuleId: Array<string>
|
|
5500
7610
|
|
|
5501
7611
|
/**
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
*/
|
|
5507
|
-
Type: string
|
|
7612
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7613
|
+
*/
|
|
7614
|
+
RequestId?: string
|
|
7615
|
+
}
|
|
5508
7616
|
|
|
7617
|
+
/**
|
|
7618
|
+
* DescribeWebManagedRulesTopData请求参数结构体
|
|
7619
|
+
*/
|
|
7620
|
+
export interface DescribeWebManagedRulesTopDataRequest {
|
|
5509
7621
|
/**
|
|
5510
|
-
*
|
|
7622
|
+
* 开始时间
|
|
5511
7623
|
*/
|
|
5512
|
-
|
|
7624
|
+
StartTime: string
|
|
5513
7625
|
|
|
5514
7626
|
/**
|
|
5515
|
-
*
|
|
7627
|
+
* 结束时间
|
|
5516
7628
|
*/
|
|
5517
|
-
|
|
7629
|
+
EndTime: string
|
|
5518
7630
|
|
|
5519
7631
|
/**
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
*/
|
|
5524
|
-
OriginType?: string
|
|
5525
|
-
}
|
|
7632
|
+
* 过滤指标
|
|
7633
|
+
*/
|
|
7634
|
+
MetricName: string
|
|
5526
7635
|
|
|
5527
|
-
/**
|
|
5528
|
-
* DescribeHostsSetting请求参数结构体
|
|
5529
|
-
*/
|
|
5530
|
-
export interface DescribeHostsSettingRequest {
|
|
5531
7636
|
/**
|
|
5532
|
-
*
|
|
7637
|
+
* 查询前多少名,传值为0 全量
|
|
5533
7638
|
*/
|
|
5534
|
-
|
|
7639
|
+
Limit: number
|
|
5535
7640
|
|
|
5536
7641
|
/**
|
|
5537
|
-
*
|
|
7642
|
+
* 站点集合
|
|
5538
7643
|
*/
|
|
5539
|
-
|
|
7644
|
+
ZoneIds?: Array<string>
|
|
5540
7645
|
|
|
5541
7646
|
/**
|
|
5542
|
-
*
|
|
7647
|
+
* ddos策略组id 集合
|
|
5543
7648
|
*/
|
|
5544
|
-
|
|
7649
|
+
PolicyIds?: Array<number>
|
|
5545
7650
|
|
|
5546
7651
|
/**
|
|
5547
|
-
*
|
|
7652
|
+
* 端口号
|
|
5548
7653
|
*/
|
|
5549
|
-
|
|
5550
|
-
}
|
|
7654
|
+
Port?: number
|
|
5551
7655
|
|
|
5552
|
-
/**
|
|
5553
|
-
* DescribeZoneDDoSPolicy请求参数结构体
|
|
5554
|
-
*/
|
|
5555
|
-
export interface DescribeZoneDDoSPolicyRequest {
|
|
5556
7656
|
/**
|
|
5557
|
-
*
|
|
7657
|
+
* 协议类型,tcp,udp,all
|
|
5558
7658
|
*/
|
|
5559
|
-
|
|
5560
|
-
}
|
|
7659
|
+
ProtocolType?: string
|
|
5561
7660
|
|
|
5562
|
-
/**
|
|
5563
|
-
* CreateApplicationProxyRules返回参数结构体
|
|
5564
|
-
*/
|
|
5565
|
-
export interface CreateApplicationProxyRulesResponse {
|
|
5566
7661
|
/**
|
|
5567
|
-
*
|
|
7662
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
5568
7663
|
*/
|
|
5569
|
-
|
|
7664
|
+
AttackType?: string
|
|
5570
7665
|
|
|
5571
7666
|
/**
|
|
5572
|
-
*
|
|
7667
|
+
* 域名集合
|
|
5573
7668
|
*/
|
|
5574
|
-
|
|
7669
|
+
Domains?: Array<string>
|
|
5575
7670
|
}
|
|
5576
7671
|
|
|
5577
7672
|
/**
|
|
@@ -5618,61 +7713,55 @@ export interface DescribeIdentificationResponse {
|
|
|
5618
7713
|
}
|
|
5619
7714
|
|
|
5620
7715
|
/**
|
|
5621
|
-
*
|
|
7716
|
+
* DDos主攻击事件
|
|
5622
7717
|
*/
|
|
5623
|
-
export interface
|
|
7718
|
+
export interface DDosMajorAttackEvent {
|
|
5624
7719
|
/**
|
|
5625
|
-
*
|
|
7720
|
+
* ddos 策略组id
|
|
5626
7721
|
*/
|
|
5627
|
-
|
|
7722
|
+
PolicyId: number
|
|
5628
7723
|
|
|
5629
7724
|
/**
|
|
5630
|
-
*
|
|
7725
|
+
* 攻击最大带宽
|
|
5631
7726
|
*/
|
|
5632
|
-
|
|
7727
|
+
AttackMaxBandWidth: number
|
|
5633
7728
|
|
|
5634
7729
|
/**
|
|
5635
|
-
*
|
|
7730
|
+
* 攻击时间 单位为s
|
|
5636
7731
|
*/
|
|
5637
|
-
|
|
7732
|
+
AttackTime: number
|
|
7733
|
+
}
|
|
5638
7734
|
|
|
7735
|
+
/**
|
|
7736
|
+
* ModifyZoneCnameSpeedUp请求参数结构体
|
|
7737
|
+
*/
|
|
7738
|
+
export interface ModifyZoneCnameSpeedUpRequest {
|
|
5639
7739
|
/**
|
|
5640
|
-
*
|
|
7740
|
+
* 站点 ID
|
|
5641
7741
|
*/
|
|
5642
|
-
|
|
7742
|
+
Id: string
|
|
5643
7743
|
|
|
5644
7744
|
/**
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
7745
|
+
* CNAME 加速状态
|
|
7746
|
+
- enabled 开启
|
|
7747
|
+
- disabled 关闭
|
|
7748
|
+
*/
|
|
7749
|
+
Status: string
|
|
7750
|
+
}
|
|
5648
7751
|
|
|
7752
|
+
/**
|
|
7753
|
+
* ModifyLoadBalancing返回参数结构体
|
|
7754
|
+
*/
|
|
7755
|
+
export interface ModifyLoadBalancingResponse {
|
|
5649
7756
|
/**
|
|
5650
|
-
*
|
|
7757
|
+
* 负载均衡ID
|
|
5651
7758
|
*/
|
|
5652
|
-
|
|
7759
|
+
LoadBalancingId: string
|
|
5653
7760
|
|
|
5654
7761
|
/**
|
|
5655
|
-
*
|
|
7762
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5656
7763
|
*/
|
|
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
|
|
7764
|
+
RequestId?: string
|
|
5676
7765
|
}
|
|
5677
7766
|
|
|
5678
7767
|
/**
|
|
@@ -5716,6 +7805,31 @@ export interface DDoSUserAllowBlockIP {
|
|
|
5716
7805
|
Mask2?: number
|
|
5717
7806
|
}
|
|
5718
7807
|
|
|
7808
|
+
/**
|
|
7809
|
+
* DescribeBotLog返回参数结构体
|
|
7810
|
+
*/
|
|
7811
|
+
export interface DescribeBotLogResponse {
|
|
7812
|
+
/**
|
|
7813
|
+
* Bot攻击Data
|
|
7814
|
+
*/
|
|
7815
|
+
Data: BotLogData
|
|
7816
|
+
|
|
7817
|
+
/**
|
|
7818
|
+
* 状态,1:失败,0:成功
|
|
7819
|
+
*/
|
|
7820
|
+
Status: number
|
|
7821
|
+
|
|
7822
|
+
/**
|
|
7823
|
+
* 返回信息
|
|
7824
|
+
*/
|
|
7825
|
+
Msg: string
|
|
7826
|
+
|
|
7827
|
+
/**
|
|
7828
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7829
|
+
*/
|
|
7830
|
+
RequestId?: string
|
|
7831
|
+
}
|
|
7832
|
+
|
|
5719
7833
|
/**
|
|
5720
7834
|
* DescribeLoadBalancing返回参数结构体
|
|
5721
7835
|
*/
|
|
@@ -5736,6 +7850,37 @@ export interface DescribeLoadBalancingResponse {
|
|
|
5736
7850
|
RequestId?: string
|
|
5737
7851
|
}
|
|
5738
7852
|
|
|
7853
|
+
/**
|
|
7854
|
+
* DescribeWebProtectionData返回参数结构体
|
|
7855
|
+
*/
|
|
7856
|
+
export interface DescribeWebProtectionDataResponse {
|
|
7857
|
+
/**
|
|
7858
|
+
* 数据详情
|
|
7859
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7860
|
+
*/
|
|
7861
|
+
Data: Array<SecEntry>
|
|
7862
|
+
|
|
7863
|
+
/**
|
|
7864
|
+
* 状态,1:失败,0:成功
|
|
7865
|
+
*/
|
|
7866
|
+
Status: number
|
|
7867
|
+
|
|
7868
|
+
/**
|
|
7869
|
+
* 消息
|
|
7870
|
+
*/
|
|
7871
|
+
Msg: string
|
|
7872
|
+
|
|
7873
|
+
/**
|
|
7874
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
7875
|
+
*/
|
|
7876
|
+
Interval: string
|
|
7877
|
+
|
|
7878
|
+
/**
|
|
7879
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7880
|
+
*/
|
|
7881
|
+
RequestId?: string
|
|
7882
|
+
}
|
|
7883
|
+
|
|
5739
7884
|
/**
|
|
5740
7885
|
* ModifyDnssec返回参数结构体
|
|
5741
7886
|
*/
|
|
@@ -6060,6 +8205,57 @@ export interface OfflineCache {
|
|
|
6060
8205
|
Switch: string
|
|
6061
8206
|
}
|
|
6062
8207
|
|
|
8208
|
+
/**
|
|
8209
|
+
* DescribeOriginGroupDetail请求参数结构体
|
|
8210
|
+
*/
|
|
8211
|
+
export interface DescribeOriginGroupDetailRequest {
|
|
8212
|
+
/**
|
|
8213
|
+
* 源站组ID
|
|
8214
|
+
*/
|
|
8215
|
+
OriginId: string
|
|
8216
|
+
|
|
8217
|
+
/**
|
|
8218
|
+
* 站点ID
|
|
8219
|
+
*/
|
|
8220
|
+
ZoneId: string
|
|
8221
|
+
}
|
|
8222
|
+
|
|
8223
|
+
/**
|
|
8224
|
+
* DescribeDDosAttackEventDetail请求参数结构体
|
|
8225
|
+
*/
|
|
8226
|
+
export interface DescribeDDosAttackEventDetailRequest {
|
|
8227
|
+
/**
|
|
8228
|
+
* 时间id
|
|
8229
|
+
*/
|
|
8230
|
+
EventId: string
|
|
8231
|
+
}
|
|
8232
|
+
|
|
8233
|
+
/**
|
|
8234
|
+
* DescribeTimingL4Data返回参数结构体
|
|
8235
|
+
*/
|
|
8236
|
+
export interface DescribeTimingL4DataResponse {
|
|
8237
|
+
/**
|
|
8238
|
+
* 查询维度
|
|
8239
|
+
*/
|
|
8240
|
+
Type: string
|
|
8241
|
+
|
|
8242
|
+
/**
|
|
8243
|
+
* 时间间隔
|
|
8244
|
+
*/
|
|
8245
|
+
Interval: string
|
|
8246
|
+
|
|
8247
|
+
/**
|
|
8248
|
+
* 详细数据
|
|
8249
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8250
|
+
*/
|
|
8251
|
+
Data: Array<TimingDataRecord>
|
|
8252
|
+
|
|
8253
|
+
/**
|
|
8254
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8255
|
+
*/
|
|
8256
|
+
RequestId?: string
|
|
8257
|
+
}
|
|
8258
|
+
|
|
6063
8259
|
/**
|
|
6064
8260
|
* 安全Bot配置
|
|
6065
8261
|
*/
|
|
@@ -6091,18 +8287,43 @@ export interface BotConfig {
|
|
|
6091
8287
|
}
|
|
6092
8288
|
|
|
6093
8289
|
/**
|
|
6094
|
-
*
|
|
8290
|
+
* 时序类型详细数据
|
|
6095
8291
|
*/
|
|
6096
|
-
export interface
|
|
8292
|
+
export interface TimingTypeValue {
|
|
6097
8293
|
/**
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
8294
|
+
* 数据和
|
|
8295
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8296
|
+
*/
|
|
8297
|
+
Sum: number
|
|
6101
8298
|
|
|
6102
8299
|
/**
|
|
6103
|
-
|
|
8300
|
+
* 最大
|
|
8301
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8302
|
+
*/
|
|
8303
|
+
Max: number
|
|
8304
|
+
|
|
8305
|
+
/**
|
|
8306
|
+
* 平均
|
|
8307
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8308
|
+
*/
|
|
8309
|
+
Avg: number
|
|
8310
|
+
|
|
8311
|
+
/**
|
|
8312
|
+
* 指标名
|
|
6104
8313
|
*/
|
|
6105
|
-
|
|
8314
|
+
MetricName: string
|
|
8315
|
+
|
|
8316
|
+
/**
|
|
8317
|
+
* 废弃字段,即将下线,请使用Detail字段
|
|
8318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8319
|
+
*/
|
|
8320
|
+
DetailData: Array<number>
|
|
8321
|
+
|
|
8322
|
+
/**
|
|
8323
|
+
* 详细数据
|
|
8324
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8325
|
+
*/
|
|
8326
|
+
Detail: Array<TimingDataItem>
|
|
6106
8327
|
}
|
|
6107
8328
|
|
|
6108
8329
|
/**
|