tencentcloud-sdk-nodejs-teo 4.0.360 → 4.0.363
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +663 -0
- package/SERVICE_CHANGELOG.md +685 -39
- package/package.json +1 -1
- package/products.md +29 -27
- package/src/services/teo/v20220106/teo_client.ts +680 -412
- package/src/services/teo/v20220106/teo_models.ts +2927 -579
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +205 -125
- package/tencentcloud/services/teo/v20220106/teo_client.js +306 -186
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +2554 -577
|
@@ -9,6 +9,36 @@ export interface Compression {
|
|
|
9
9
|
*/
|
|
10
10
|
Switch: string;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* web攻击日志Data
|
|
14
|
+
*/
|
|
15
|
+
export interface WebLogData {
|
|
16
|
+
/**
|
|
17
|
+
* 数据
|
|
18
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19
|
+
*/
|
|
20
|
+
List: Array<WebLogs>;
|
|
21
|
+
/**
|
|
22
|
+
* 当前页
|
|
23
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24
|
+
*/
|
|
25
|
+
PageNo: number;
|
|
26
|
+
/**
|
|
27
|
+
* 每页展示条数
|
|
28
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29
|
+
*/
|
|
30
|
+
PageSize: number;
|
|
31
|
+
/**
|
|
32
|
+
* 总页数
|
|
33
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
34
|
+
*/
|
|
35
|
+
Pages: number;
|
|
36
|
+
/**
|
|
37
|
+
* 总条数
|
|
38
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
39
|
+
*/
|
|
40
|
+
TotalSize: number;
|
|
41
|
+
}
|
|
12
42
|
/**
|
|
13
43
|
* 域名证书配置
|
|
14
44
|
*/
|
|
@@ -110,97 +140,96 @@ export interface ModifyDefaultCertificateRequest {
|
|
|
110
140
|
Status?: string;
|
|
111
141
|
}
|
|
112
142
|
/**
|
|
113
|
-
*
|
|
143
|
+
* DescribeWebManagedRulesTopData返回参数结构体
|
|
114
144
|
*/
|
|
115
|
-
export interface
|
|
145
|
+
export interface DescribeWebManagedRulesTopDataResponse {
|
|
116
146
|
/**
|
|
117
|
-
*
|
|
147
|
+
* topn数据
|
|
118
148
|
*/
|
|
119
|
-
|
|
149
|
+
Data: Array<TopNEntry>;
|
|
120
150
|
/**
|
|
121
|
-
*
|
|
151
|
+
* 状态,1:失败,0:成功
|
|
122
152
|
*/
|
|
123
|
-
|
|
124
|
-
/**
|
|
125
|
-
* 用户当前使用的 NS 列表
|
|
126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
127
|
-
*/
|
|
128
|
-
OriginalNameServers: Array<string>;
|
|
129
|
-
/**
|
|
130
|
-
* 腾讯云分配给用户的 NS 列表
|
|
131
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
132
|
-
*/
|
|
133
|
-
NameServers: Array<string>;
|
|
134
|
-
/**
|
|
135
|
-
* 站点状态
|
|
136
|
-
- active:NS 已切换
|
|
137
|
-
- pending:NS 未切换
|
|
138
|
-
- moved:NS 已切走
|
|
139
|
-
- deactivated:被封禁
|
|
140
|
-
*/
|
|
141
|
-
Status: string;
|
|
153
|
+
Status: number;
|
|
142
154
|
/**
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
*/
|
|
147
|
-
Type: string;
|
|
155
|
+
* 返回消息
|
|
156
|
+
*/
|
|
157
|
+
Msg: string;
|
|
148
158
|
/**
|
|
149
|
-
*
|
|
159
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
150
160
|
*/
|
|
151
|
-
|
|
161
|
+
RequestId?: string;
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* DescribeOriginGroup返回参数结构体
|
|
165
|
+
*/
|
|
166
|
+
export interface DescribeOriginGroupResponse {
|
|
152
167
|
/**
|
|
153
|
-
*
|
|
168
|
+
* 源站组信息
|
|
154
169
|
*/
|
|
155
|
-
|
|
170
|
+
Data: Array<OriginGroup>;
|
|
156
171
|
/**
|
|
157
|
-
*
|
|
172
|
+
* 记录总数
|
|
158
173
|
*/
|
|
159
|
-
|
|
174
|
+
TotalCount: number;
|
|
160
175
|
/**
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
176
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
177
|
+
*/
|
|
178
|
+
RequestId?: string;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* DescribeWebManagedRulesAttackEvents返回参数结构体
|
|
182
|
+
*/
|
|
183
|
+
export interface DescribeWebManagedRulesAttackEventsResponse {
|
|
165
184
|
/**
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
VanityNameServersIps: Array<VanityNameServersIps>;
|
|
185
|
+
* Web攻击事件数据
|
|
186
|
+
*/
|
|
187
|
+
Data: WebEventData;
|
|
170
188
|
/**
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
*/
|
|
175
|
-
CnameSpeedUp: string;
|
|
189
|
+
* 状态,1:失败,0:成功
|
|
190
|
+
*/
|
|
191
|
+
Status: number;
|
|
176
192
|
/**
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
181
|
-
*/
|
|
182
|
-
CnameStatus: string;
|
|
193
|
+
* 返回数据
|
|
194
|
+
*/
|
|
195
|
+
Msg: string;
|
|
183
196
|
/**
|
|
184
197
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
185
198
|
*/
|
|
186
199
|
RequestId?: string;
|
|
187
200
|
}
|
|
188
201
|
/**
|
|
189
|
-
*
|
|
202
|
+
* DescribeTopL7CacheData请求参数结构体
|
|
190
203
|
*/
|
|
191
|
-
export interface
|
|
204
|
+
export interface DescribeTopL7CacheDataRequest {
|
|
192
205
|
/**
|
|
193
|
-
*
|
|
206
|
+
* RFC3339标准,客户端时间
|
|
194
207
|
*/
|
|
195
|
-
|
|
208
|
+
StartTime: string;
|
|
196
209
|
/**
|
|
197
|
-
*
|
|
210
|
+
* RFC3339标准,客户端时间
|
|
198
211
|
*/
|
|
199
|
-
|
|
212
|
+
EndTime: string;
|
|
200
213
|
/**
|
|
201
|
-
*
|
|
214
|
+
* 时序类访问流量指标
|
|
202
215
|
*/
|
|
203
|
-
|
|
216
|
+
MetricName: string;
|
|
217
|
+
/**
|
|
218
|
+
* topN,填0时返回全量数据
|
|
219
|
+
*/
|
|
220
|
+
Limit: number;
|
|
221
|
+
/**
|
|
222
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
223
|
+
*/
|
|
224
|
+
Interval: string;
|
|
225
|
+
/**
|
|
226
|
+
* ZoneId数组
|
|
227
|
+
*/
|
|
228
|
+
ZoneIds?: Array<string>;
|
|
229
|
+
/**
|
|
230
|
+
* 筛选条件
|
|
231
|
+
*/
|
|
232
|
+
Filters?: Array<Filter>;
|
|
204
233
|
}
|
|
205
234
|
/**
|
|
206
235
|
* DeleteApplicationProxy返回参数结构体
|
|
@@ -245,6 +274,27 @@ export interface Https {
|
|
|
245
274
|
*/
|
|
246
275
|
Hsts?: Hsts;
|
|
247
276
|
}
|
|
277
|
+
/**
|
|
278
|
+
* 安全防护实例
|
|
279
|
+
*/
|
|
280
|
+
export interface SecurityEntity {
|
|
281
|
+
/**
|
|
282
|
+
* 用户appid
|
|
283
|
+
*/
|
|
284
|
+
AppId: number;
|
|
285
|
+
/**
|
|
286
|
+
* 一级域名
|
|
287
|
+
*/
|
|
288
|
+
ZoneId: string;
|
|
289
|
+
/**
|
|
290
|
+
* 二级域名
|
|
291
|
+
*/
|
|
292
|
+
Entity: string;
|
|
293
|
+
/**
|
|
294
|
+
* 类型 domain/application
|
|
295
|
+
*/
|
|
296
|
+
EntityType: string;
|
|
297
|
+
}
|
|
248
298
|
/**
|
|
249
299
|
* 源站组查询过滤参数
|
|
250
300
|
*/
|
|
@@ -259,17 +309,66 @@ export interface OriginFilter {
|
|
|
259
309
|
Value: string;
|
|
260
310
|
}
|
|
261
311
|
/**
|
|
262
|
-
*
|
|
312
|
+
* 限速拦截日志
|
|
263
313
|
*/
|
|
264
|
-
export interface
|
|
314
|
+
export interface BotLogData {
|
|
265
315
|
/**
|
|
266
|
-
|
|
316
|
+
* Bot攻击日志数据集合
|
|
317
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
318
|
+
*/
|
|
319
|
+
List: Array<BotLog>;
|
|
320
|
+
/**
|
|
321
|
+
* 当前页
|
|
322
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
323
|
+
*/
|
|
324
|
+
PageNo: number;
|
|
325
|
+
/**
|
|
326
|
+
* 每页展示条数
|
|
327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
328
|
+
*/
|
|
329
|
+
PageSize: number;
|
|
330
|
+
/**
|
|
331
|
+
* 总页数
|
|
332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
333
|
+
*/
|
|
334
|
+
Pages: number;
|
|
335
|
+
/**
|
|
336
|
+
* 总条数
|
|
337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
338
|
+
*/
|
|
339
|
+
TotalSize: number;
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* DescribeZones请求参数结构体
|
|
343
|
+
*/
|
|
344
|
+
export interface DescribeZonesRequest {
|
|
345
|
+
/**
|
|
346
|
+
* 分页参数,页偏移
|
|
267
347
|
*/
|
|
268
|
-
|
|
348
|
+
Offset?: number;
|
|
269
349
|
/**
|
|
270
|
-
*
|
|
350
|
+
* 分页参数,每页返回的站点个数
|
|
271
351
|
*/
|
|
272
|
-
|
|
352
|
+
Limit?: number;
|
|
353
|
+
/**
|
|
354
|
+
* 查询条件过滤器,复杂类型
|
|
355
|
+
*/
|
|
356
|
+
Filters?: Array<ZoneFilter>;
|
|
357
|
+
}
|
|
358
|
+
/**
|
|
359
|
+
* 速率限制模板
|
|
360
|
+
*/
|
|
361
|
+
export interface RateLimitTemplate {
|
|
362
|
+
/**
|
|
363
|
+
* 模板名称
|
|
364
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
365
|
+
*/
|
|
366
|
+
Mode?: string;
|
|
367
|
+
/**
|
|
368
|
+
* 模板值详情
|
|
369
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
370
|
+
*/
|
|
371
|
+
Detail?: RateLimitTemplateDetail;
|
|
273
372
|
}
|
|
274
373
|
/**
|
|
275
374
|
* DDoS防护分区
|
|
@@ -388,6 +487,27 @@ export interface DescribePrefetchTasksResponse {
|
|
|
388
487
|
*/
|
|
389
488
|
RequestId?: string;
|
|
390
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* DescribeDDosAttackEvent返回参数结构体
|
|
492
|
+
*/
|
|
493
|
+
export interface DescribeDDosAttackEventResponse {
|
|
494
|
+
/**
|
|
495
|
+
* DDos攻击事件数据
|
|
496
|
+
*/
|
|
497
|
+
Data: DDosAttackEventData;
|
|
498
|
+
/**
|
|
499
|
+
* 状态,1:失败,0:成功
|
|
500
|
+
*/
|
|
501
|
+
Status: number;
|
|
502
|
+
/**
|
|
503
|
+
* 返回信息
|
|
504
|
+
*/
|
|
505
|
+
Msg: string;
|
|
506
|
+
/**
|
|
507
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
508
|
+
*/
|
|
509
|
+
RequestId?: string;
|
|
510
|
+
}
|
|
391
511
|
/**
|
|
392
512
|
* DeleteApplicationProxy请求参数结构体
|
|
393
513
|
*/
|
|
@@ -748,34 +868,171 @@ export interface ModifyOriginGroupResponse {
|
|
|
748
868
|
RequestId?: string;
|
|
749
869
|
}
|
|
750
870
|
/**
|
|
751
|
-
*
|
|
871
|
+
* DescribeZoneDetails返回参数结构体
|
|
752
872
|
*/
|
|
753
|
-
export interface
|
|
873
|
+
export interface DescribeZoneDetailsResponse {
|
|
754
874
|
/**
|
|
755
|
-
*
|
|
875
|
+
* 站点 ID
|
|
756
876
|
*/
|
|
757
|
-
|
|
877
|
+
Id: string;
|
|
758
878
|
/**
|
|
759
|
-
*
|
|
879
|
+
* 站点名称
|
|
760
880
|
*/
|
|
881
|
+
Name: string;
|
|
882
|
+
/**
|
|
883
|
+
* 用户当前使用的 NS 列表
|
|
884
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
885
|
+
*/
|
|
886
|
+
OriginalNameServers: Array<string>;
|
|
887
|
+
/**
|
|
888
|
+
* 腾讯云分配给用户的 NS 列表
|
|
889
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
890
|
+
*/
|
|
891
|
+
NameServers: Array<string>;
|
|
892
|
+
/**
|
|
893
|
+
* 站点状态
|
|
894
|
+
- active:NS 已切换
|
|
895
|
+
- pending:NS 未切换
|
|
896
|
+
- moved:NS 已切走
|
|
897
|
+
- deactivated:被封禁
|
|
898
|
+
*/
|
|
761
899
|
Status: string;
|
|
762
900
|
/**
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
901
|
+
* 站点接入方式
|
|
902
|
+
- full:NS 接入
|
|
903
|
+
- partial:CNAME 接入
|
|
904
|
+
*/
|
|
905
|
+
Type: string;
|
|
766
906
|
/**
|
|
767
|
-
*
|
|
907
|
+
* 站点是否关闭
|
|
768
908
|
*/
|
|
769
|
-
|
|
909
|
+
Paused: boolean;
|
|
770
910
|
/**
|
|
771
|
-
*
|
|
911
|
+
* 站点创建时间
|
|
772
912
|
*/
|
|
773
|
-
|
|
913
|
+
CreatedOn: string;
|
|
774
914
|
/**
|
|
775
|
-
*
|
|
915
|
+
* 站点修改时间
|
|
776
916
|
*/
|
|
777
|
-
|
|
778
|
-
|
|
917
|
+
ModifiedOn: string;
|
|
918
|
+
/**
|
|
919
|
+
* 用户自定义 NS 信息
|
|
920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
921
|
+
*/
|
|
922
|
+
VanityNameServers: VanityNameServers;
|
|
923
|
+
/**
|
|
924
|
+
* 用户自定义 NS IP 信息
|
|
925
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
926
|
+
*/
|
|
927
|
+
VanityNameServersIps: Array<VanityNameServersIps>;
|
|
928
|
+
/**
|
|
929
|
+
* 是否开启 CNAME 加速
|
|
930
|
+
- enabled:开启
|
|
931
|
+
- disabled:关闭
|
|
932
|
+
*/
|
|
933
|
+
CnameSpeedUp: string;
|
|
934
|
+
/**
|
|
935
|
+
* cname切换验证状态
|
|
936
|
+
- finished 切换完成
|
|
937
|
+
- pending 切换验证中
|
|
938
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
939
|
+
*/
|
|
940
|
+
CnameStatus: string;
|
|
941
|
+
/**
|
|
942
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
943
|
+
*/
|
|
944
|
+
RequestId?: string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* Bot攻击日志
|
|
948
|
+
*/
|
|
949
|
+
export interface BotLog {
|
|
950
|
+
/**
|
|
951
|
+
* 攻击时间
|
|
952
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
953
|
+
*/
|
|
954
|
+
AttackTime: number;
|
|
955
|
+
/**
|
|
956
|
+
* 攻击ip
|
|
957
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
958
|
+
*/
|
|
959
|
+
AttackIp: string;
|
|
960
|
+
/**
|
|
961
|
+
* 域名
|
|
962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
963
|
+
*/
|
|
964
|
+
Domain: string;
|
|
965
|
+
/**
|
|
966
|
+
* 请求uri
|
|
967
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
968
|
+
*/
|
|
969
|
+
RequestUri: string;
|
|
970
|
+
/**
|
|
971
|
+
* 攻击类型
|
|
972
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
973
|
+
*/
|
|
974
|
+
AttackType: string;
|
|
975
|
+
/**
|
|
976
|
+
* 请求方法
|
|
977
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
978
|
+
*/
|
|
979
|
+
RequestMethod: string;
|
|
980
|
+
/**
|
|
981
|
+
* 攻击内容
|
|
982
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
983
|
+
*/
|
|
984
|
+
AttackContent: string;
|
|
985
|
+
/**
|
|
986
|
+
* 风险等级
|
|
987
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
988
|
+
*/
|
|
989
|
+
RiskLevel: string;
|
|
990
|
+
/**
|
|
991
|
+
* 规则编号
|
|
992
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
993
|
+
*/
|
|
994
|
+
RuleId: number;
|
|
995
|
+
/**
|
|
996
|
+
* IP所在国家
|
|
997
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
998
|
+
*/
|
|
999
|
+
SipCountryCode: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* 事件id
|
|
1002
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1003
|
+
*/
|
|
1004
|
+
EventId: string;
|
|
1005
|
+
/**
|
|
1006
|
+
* 处置方式
|
|
1007
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1008
|
+
*/
|
|
1009
|
+
DisposalMethod: string;
|
|
1010
|
+
/**
|
|
1011
|
+
* http_log
|
|
1012
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1013
|
+
*/
|
|
1014
|
+
HttpLog: string;
|
|
1015
|
+
/**
|
|
1016
|
+
* user agent
|
|
1017
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1018
|
+
*/
|
|
1019
|
+
Ua: string;
|
|
1020
|
+
/**
|
|
1021
|
+
* 检出方法
|
|
1022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1023
|
+
*/
|
|
1024
|
+
DetectionMethod: string;
|
|
1025
|
+
/**
|
|
1026
|
+
* 置信度
|
|
1027
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1028
|
+
*/
|
|
1029
|
+
Confidence: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* 恶意度
|
|
1032
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1033
|
+
*/
|
|
1034
|
+
Maliciousness: string;
|
|
1035
|
+
}
|
|
779
1036
|
/**
|
|
780
1037
|
* 源站配置。
|
|
781
1038
|
*/
|
|
@@ -987,6 +1244,39 @@ export interface ModifyZoneResponse {
|
|
|
987
1244
|
*/
|
|
988
1245
|
RequestId?: string;
|
|
989
1246
|
}
|
|
1247
|
+
/**
|
|
1248
|
+
* DescribeDDosAttackSourceEvent请求参数结构体
|
|
1249
|
+
*/
|
|
1250
|
+
export interface DescribeDDosAttackSourceEventRequest {
|
|
1251
|
+
/**
|
|
1252
|
+
* 开始时间
|
|
1253
|
+
*/
|
|
1254
|
+
StartTime: string;
|
|
1255
|
+
/**
|
|
1256
|
+
* 结束时间
|
|
1257
|
+
*/
|
|
1258
|
+
EndTime: string;
|
|
1259
|
+
/**
|
|
1260
|
+
* 条数
|
|
1261
|
+
*/
|
|
1262
|
+
PageSize: number;
|
|
1263
|
+
/**
|
|
1264
|
+
* 当前页
|
|
1265
|
+
*/
|
|
1266
|
+
PageNo: number;
|
|
1267
|
+
/**
|
|
1268
|
+
* ddos策略组id 集合
|
|
1269
|
+
*/
|
|
1270
|
+
PolicyIds?: Array<number>;
|
|
1271
|
+
/**
|
|
1272
|
+
* 站点集合
|
|
1273
|
+
*/
|
|
1274
|
+
ZoneIds?: Array<string>;
|
|
1275
|
+
/**
|
|
1276
|
+
* 协议类型,{tcp,udp,all}
|
|
1277
|
+
*/
|
|
1278
|
+
ProtocolType?: string;
|
|
1279
|
+
}
|
|
990
1280
|
/**
|
|
991
1281
|
* ModifyZone请求参数结构体
|
|
992
1282
|
*/
|
|
@@ -1020,21 +1310,34 @@ export interface DeleteZoneResponse {
|
|
|
1020
1310
|
RequestId?: string;
|
|
1021
1311
|
}
|
|
1022
1312
|
/**
|
|
1023
|
-
*
|
|
1313
|
+
* DDos攻击事件数据
|
|
1024
1314
|
*/
|
|
1025
|
-
export interface
|
|
1315
|
+
export interface DDosAttackEventData {
|
|
1026
1316
|
/**
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1317
|
+
* 攻击事件数据集合
|
|
1318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1319
|
+
*/
|
|
1320
|
+
List: Array<DDosAttackEvent>;
|
|
1030
1321
|
/**
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1322
|
+
* 当前页
|
|
1323
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1324
|
+
*/
|
|
1325
|
+
PageNo: number;
|
|
1034
1326
|
/**
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1327
|
+
* 每页展示条数
|
|
1328
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1329
|
+
*/
|
|
1330
|
+
PageSize: number;
|
|
1331
|
+
/**
|
|
1332
|
+
* 总页数
|
|
1333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1334
|
+
*/
|
|
1335
|
+
Pages: number;
|
|
1336
|
+
/**
|
|
1337
|
+
* 总条数
|
|
1338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1339
|
+
*/
|
|
1340
|
+
TotalSize: number;
|
|
1038
1341
|
}
|
|
1039
1342
|
/**
|
|
1040
1343
|
* Hsts配置
|
|
@@ -1091,6 +1394,45 @@ export interface DeleteApplicationProxyRuleResponse {
|
|
|
1091
1394
|
*/
|
|
1092
1395
|
RequestId?: string;
|
|
1093
1396
|
}
|
|
1397
|
+
/**
|
|
1398
|
+
* DDos攻击事件对象
|
|
1399
|
+
*/
|
|
1400
|
+
export interface DDosAttackSourceEvent {
|
|
1401
|
+
/**
|
|
1402
|
+
* 攻击源ip
|
|
1403
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1404
|
+
*/
|
|
1405
|
+
AttackSourceIp: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* 地区(国家)
|
|
1408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1409
|
+
*/
|
|
1410
|
+
AttackRegion: string;
|
|
1411
|
+
/**
|
|
1412
|
+
* 累计攻击流量
|
|
1413
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1414
|
+
*/
|
|
1415
|
+
AttackFlow: number;
|
|
1416
|
+
/**
|
|
1417
|
+
* 累计攻击包量
|
|
1418
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1419
|
+
*/
|
|
1420
|
+
AttackPacketNum: number;
|
|
1421
|
+
}
|
|
1422
|
+
/**
|
|
1423
|
+
* L7数据分析时序数据
|
|
1424
|
+
*/
|
|
1425
|
+
export interface TimingDataRecord {
|
|
1426
|
+
/**
|
|
1427
|
+
* 查询维度值
|
|
1428
|
+
*/
|
|
1429
|
+
TypeKey: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* 详细时序数据
|
|
1432
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1433
|
+
*/
|
|
1434
|
+
TypeValue: Array<TimingTypeValue>;
|
|
1435
|
+
}
|
|
1094
1436
|
/**
|
|
1095
1437
|
* ddos端口过滤
|
|
1096
1438
|
*/
|
|
@@ -1117,6 +1459,19 @@ export interface DeleteOriginGroupRequest {
|
|
|
1117
1459
|
*/
|
|
1118
1460
|
ZoneId: string;
|
|
1119
1461
|
}
|
|
1462
|
+
/**
|
|
1463
|
+
* 用于对top数据排序的结构体
|
|
1464
|
+
*/
|
|
1465
|
+
export interface TopDetailData {
|
|
1466
|
+
/**
|
|
1467
|
+
* 字段名
|
|
1468
|
+
*/
|
|
1469
|
+
Key: string;
|
|
1470
|
+
/**
|
|
1471
|
+
* 字段值
|
|
1472
|
+
*/
|
|
1473
|
+
Value: number;
|
|
1474
|
+
}
|
|
1120
1475
|
/**
|
|
1121
1476
|
* ModifyHostsCertificate返回参数结构体
|
|
1122
1477
|
*/
|
|
@@ -1220,22 +1575,21 @@ export interface L7OfflineLog {
|
|
|
1220
1575
|
LogPacketName: string;
|
|
1221
1576
|
}
|
|
1222
1577
|
/**
|
|
1223
|
-
*
|
|
1578
|
+
* ModifyHostsCertificate请求参数结构体
|
|
1224
1579
|
*/
|
|
1225
|
-
export interface
|
|
1580
|
+
export interface ModifyHostsCertificateRequest {
|
|
1226
1581
|
/**
|
|
1227
|
-
*
|
|
1582
|
+
* Zone ID
|
|
1228
1583
|
*/
|
|
1229
|
-
|
|
1584
|
+
ZoneId: string;
|
|
1230
1585
|
/**
|
|
1231
|
-
*
|
|
1586
|
+
* 本次变更的域名
|
|
1232
1587
|
*/
|
|
1233
|
-
|
|
1588
|
+
Hosts: Array<string>;
|
|
1234
1589
|
/**
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
ObserveRuleIDs?: Array<number>;
|
|
1590
|
+
* 证书信息, 只需要传入 CertId 即可, 如果为空, 则使用默认证书
|
|
1591
|
+
*/
|
|
1592
|
+
CertInfo?: Array<ServerCertInfo>;
|
|
1239
1593
|
}
|
|
1240
1594
|
/**
|
|
1241
1595
|
* 应用代理规则
|
|
@@ -1381,6 +1735,25 @@ export interface Zone {
|
|
|
1381
1735
|
*/
|
|
1382
1736
|
CnameStatus: string;
|
|
1383
1737
|
}
|
|
1738
|
+
/**
|
|
1739
|
+
* 站点查询过滤条件
|
|
1740
|
+
*/
|
|
1741
|
+
export interface ZoneFilter {
|
|
1742
|
+
/**
|
|
1743
|
+
* 过滤字段名,支持的列表如下:
|
|
1744
|
+
- name: 站点名。
|
|
1745
|
+
- status: 站点状态
|
|
1746
|
+
*/
|
|
1747
|
+
Name: string;
|
|
1748
|
+
/**
|
|
1749
|
+
* 过滤字段值
|
|
1750
|
+
*/
|
|
1751
|
+
Values: Array<string>;
|
|
1752
|
+
/**
|
|
1753
|
+
* 是否启用模糊查询,仅支持过滤字段名为name。模糊查询时,Values长度最大为1
|
|
1754
|
+
*/
|
|
1755
|
+
Fuzzy?: boolean;
|
|
1756
|
+
}
|
|
1384
1757
|
/**
|
|
1385
1758
|
* DescribeSecurityPolicyManagedRulesId请求参数结构体
|
|
1386
1759
|
*/
|
|
@@ -1485,13 +1858,25 @@ export interface ModifyLoadBalancingStatusRequest {
|
|
|
1485
1858
|
Status: string;
|
|
1486
1859
|
}
|
|
1487
1860
|
/**
|
|
1488
|
-
*
|
|
1861
|
+
* DescribeDDosAttackTopData返回参数结构体
|
|
1489
1862
|
*/
|
|
1490
|
-
export interface
|
|
1863
|
+
export interface DescribeDDosAttackTopDataResponse {
|
|
1491
1864
|
/**
|
|
1492
|
-
*
|
|
1865
|
+
* topn数据
|
|
1493
1866
|
*/
|
|
1494
|
-
|
|
1867
|
+
Data: Array<TopNEntry>;
|
|
1868
|
+
/**
|
|
1869
|
+
* 状态,1:失败,0:成功
|
|
1870
|
+
*/
|
|
1871
|
+
Status: number;
|
|
1872
|
+
/**
|
|
1873
|
+
* 返回消息
|
|
1874
|
+
*/
|
|
1875
|
+
Msg: string;
|
|
1876
|
+
/**
|
|
1877
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1878
|
+
*/
|
|
1879
|
+
RequestId?: string;
|
|
1495
1880
|
}
|
|
1496
1881
|
/**
|
|
1497
1882
|
* DescribeCnameStatus返回参数结构体
|
|
@@ -1545,100 +1930,53 @@ export interface DescribeLoadBalancingRequest {
|
|
|
1545
1930
|
Fuzzy?: boolean;
|
|
1546
1931
|
}
|
|
1547
1932
|
/**
|
|
1548
|
-
*
|
|
1933
|
+
* CC拦截事件
|
|
1549
1934
|
*/
|
|
1550
|
-
export interface
|
|
1935
|
+
export interface CCInterceptEvent {
|
|
1551
1936
|
/**
|
|
1552
|
-
|
|
1937
|
+
* 客户端ip
|
|
1938
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1939
|
+
*/
|
|
1940
|
+
ClientIp: string;
|
|
1941
|
+
/**
|
|
1942
|
+
* 拦截次数/min
|
|
1943
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1944
|
+
*/
|
|
1945
|
+
InterceptNum: number;
|
|
1946
|
+
/**
|
|
1947
|
+
* 速拦截时间,分钟时间/min,单位为s
|
|
1553
1948
|
*/
|
|
1554
|
-
|
|
1949
|
+
InterceptTime: number;
|
|
1950
|
+
}
|
|
1951
|
+
/**
|
|
1952
|
+
* DDoS封禁等级
|
|
1953
|
+
*/
|
|
1954
|
+
export interface DDoSStatusInfo {
|
|
1555
1955
|
/**
|
|
1556
|
-
*
|
|
1956
|
+
* 不支持,填off
|
|
1557
1957
|
*/
|
|
1558
|
-
|
|
1958
|
+
AiStatus: string;
|
|
1559
1959
|
/**
|
|
1560
|
-
*
|
|
1960
|
+
* 用户appid
|
|
1561
1961
|
*/
|
|
1562
|
-
|
|
1962
|
+
Appid: string;
|
|
1563
1963
|
/**
|
|
1564
|
-
*
|
|
1964
|
+
* 策略等级 low, middle, high
|
|
1565
1965
|
*/
|
|
1566
|
-
|
|
1966
|
+
PlyLevel: string;
|
|
1967
|
+
}
|
|
1968
|
+
/**
|
|
1969
|
+
* ACL配置
|
|
1970
|
+
*/
|
|
1971
|
+
export interface AclConfig {
|
|
1567
1972
|
/**
|
|
1568
|
-
|
|
1569
|
-
80:80端口
|
|
1570
|
-
81-90:81至90端口
|
|
1571
|
-
*/
|
|
1572
|
-
Port: Array<string>;
|
|
1573
|
-
/**
|
|
1574
|
-
* 源站类型,取值:
|
|
1575
|
-
custom:手动添加
|
|
1576
|
-
origins:源站组
|
|
1577
|
-
load_balancing:负载均衡
|
|
1578
|
-
*/
|
|
1579
|
-
OriginType: string;
|
|
1580
|
-
/**
|
|
1581
|
-
* 源站信息:
|
|
1582
|
-
当OriginType=custom时,表示多个:
|
|
1583
|
-
IP:端口
|
|
1584
|
-
域名:端口
|
|
1585
|
-
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
1586
|
-
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
1587
|
-
*/
|
|
1588
|
-
OriginValue: Array<string>;
|
|
1589
|
-
/**
|
|
1590
|
-
* 传递客户端IP,当Proto=TCP时,取值:
|
|
1591
|
-
TOA:TOA
|
|
1592
|
-
PPV1: Proxy Protocol传递,协议版本V1
|
|
1593
|
-
PPV2: Proxy Protocol传递,协议版本V2
|
|
1594
|
-
OFF:不传递
|
|
1595
|
-
当Proto=UDP时,取值:
|
|
1596
|
-
PPV2: Proxy Protocol传递,协议版本V2
|
|
1597
|
-
OFF:不传递
|
|
1598
|
-
*/
|
|
1599
|
-
ForwardClientIp?: string;
|
|
1600
|
-
/**
|
|
1601
|
-
* 是否开启会话保持
|
|
1602
|
-
*/
|
|
1603
|
-
SessionPersist?: boolean;
|
|
1604
|
-
}
|
|
1605
|
-
/**
|
|
1606
|
-
* DDoS封禁等级
|
|
1607
|
-
*/
|
|
1608
|
-
export interface DDoSStatusInfo {
|
|
1609
|
-
/**
|
|
1610
|
-
* 不支持,填off
|
|
1611
|
-
*/
|
|
1612
|
-
AiStatus: string;
|
|
1613
|
-
/**
|
|
1614
|
-
* 用户appid
|
|
1615
|
-
*/
|
|
1616
|
-
Appid: string;
|
|
1617
|
-
/**
|
|
1618
|
-
* 策略等级 low, middle, high
|
|
1973
|
+
* 开关
|
|
1619
1974
|
*/
|
|
1620
|
-
|
|
1621
|
-
}
|
|
1622
|
-
/**
|
|
1623
|
-
* CNAME 状态
|
|
1624
|
-
*/
|
|
1625
|
-
export interface CnameStatus {
|
|
1975
|
+
Switch: string;
|
|
1626
1976
|
/**
|
|
1627
|
-
*
|
|
1977
|
+
* ACL用户规则
|
|
1628
1978
|
*/
|
|
1629
|
-
|
|
1630
|
-
/**
|
|
1631
|
-
* CNAME 地址
|
|
1632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1633
|
-
*/
|
|
1634
|
-
Cname: string;
|
|
1635
|
-
/**
|
|
1636
|
-
* 状态
|
|
1637
|
-
生效:active
|
|
1638
|
-
不生效:moved
|
|
1639
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1640
|
-
*/
|
|
1641
|
-
Status: string;
|
|
1979
|
+
UserRules: Array<ACLUserRule>;
|
|
1642
1980
|
}
|
|
1643
1981
|
/**
|
|
1644
1982
|
* ModifyZoneSetting返回参数结构体
|
|
@@ -1784,6 +2122,66 @@ export interface CreateDnsRecordResponse {
|
|
|
1784
2122
|
*/
|
|
1785
2123
|
RequestId?: string;
|
|
1786
2124
|
}
|
|
2125
|
+
/**
|
|
2126
|
+
* 限速拦截日志
|
|
2127
|
+
*/
|
|
2128
|
+
export interface CCLog {
|
|
2129
|
+
/**
|
|
2130
|
+
* 攻击时间
|
|
2131
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2132
|
+
*/
|
|
2133
|
+
AttackTime: number;
|
|
2134
|
+
/**
|
|
2135
|
+
* 攻击源ip
|
|
2136
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2137
|
+
*/
|
|
2138
|
+
AttackSip: string;
|
|
2139
|
+
/**
|
|
2140
|
+
* 攻击域名
|
|
2141
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2142
|
+
*/
|
|
2143
|
+
AttackDomain: string;
|
|
2144
|
+
/**
|
|
2145
|
+
* 请求uri
|
|
2146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2147
|
+
*/
|
|
2148
|
+
RequestUri: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* 命中次数
|
|
2151
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2152
|
+
*/
|
|
2153
|
+
HitCount: number;
|
|
2154
|
+
/**
|
|
2155
|
+
* IP所在国家
|
|
2156
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2157
|
+
*/
|
|
2158
|
+
SipCountryCode: string;
|
|
2159
|
+
/**
|
|
2160
|
+
* 事件id
|
|
2161
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2162
|
+
*/
|
|
2163
|
+
EventId: string;
|
|
2164
|
+
/**
|
|
2165
|
+
* 处置方式
|
|
2166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2167
|
+
*/
|
|
2168
|
+
DisposalMethod: string;
|
|
2169
|
+
/**
|
|
2170
|
+
* http_log
|
|
2171
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2172
|
+
*/
|
|
2173
|
+
HttpLog: string;
|
|
2174
|
+
/**
|
|
2175
|
+
* 规则编号
|
|
2176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2177
|
+
*/
|
|
2178
|
+
RuleId: number;
|
|
2179
|
+
/**
|
|
2180
|
+
* 风险等级
|
|
2181
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2182
|
+
*/
|
|
2183
|
+
RiskLevel: string;
|
|
2184
|
+
}
|
|
1787
2185
|
/**
|
|
1788
2186
|
* https 服务端证书配置
|
|
1789
2187
|
*/
|
|
@@ -1834,21 +2232,51 @@ export interface DDoSConfig {
|
|
|
1834
2232
|
Switch: string;
|
|
1835
2233
|
}
|
|
1836
2234
|
/**
|
|
1837
|
-
*
|
|
2235
|
+
* DescribeWebManagedRulesData返回参数结构体
|
|
1838
2236
|
*/
|
|
1839
|
-
export interface
|
|
2237
|
+
export interface DescribeWebManagedRulesDataResponse {
|
|
1840
2238
|
/**
|
|
1841
|
-
|
|
2239
|
+
* Web攻击日志实体
|
|
2240
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2241
|
+
*/
|
|
2242
|
+
Data: Array<SecEntry>;
|
|
2243
|
+
/**
|
|
2244
|
+
* 状态,1:失败,0:成功
|
|
1842
2245
|
*/
|
|
1843
|
-
|
|
2246
|
+
Status: number;
|
|
1844
2247
|
/**
|
|
1845
|
-
*
|
|
2248
|
+
* 返回消息
|
|
1846
2249
|
*/
|
|
1847
|
-
|
|
2250
|
+
Msg: string;
|
|
1848
2251
|
/**
|
|
1849
|
-
*
|
|
2252
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
1850
2253
|
*/
|
|
1851
|
-
|
|
2254
|
+
Interval: string;
|
|
2255
|
+
/**
|
|
2256
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2257
|
+
*/
|
|
2258
|
+
RequestId?: string;
|
|
2259
|
+
}
|
|
2260
|
+
/**
|
|
2261
|
+
* DescribeWebManagedRulesLog返回参数结构体
|
|
2262
|
+
*/
|
|
2263
|
+
export interface DescribeWebManagedRulesLogResponse {
|
|
2264
|
+
/**
|
|
2265
|
+
* web攻击日志data
|
|
2266
|
+
*/
|
|
2267
|
+
Data: WebLogData;
|
|
2268
|
+
/**
|
|
2269
|
+
* 状态,1:失败,0:失败
|
|
2270
|
+
*/
|
|
2271
|
+
Status: number;
|
|
2272
|
+
/**
|
|
2273
|
+
* 返回信息
|
|
2274
|
+
*/
|
|
2275
|
+
Msg: string;
|
|
2276
|
+
/**
|
|
2277
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2278
|
+
*/
|
|
2279
|
+
RequestId?: string;
|
|
1852
2280
|
}
|
|
1853
2281
|
/**
|
|
1854
2282
|
* 源站组记录
|
|
@@ -1961,6 +2389,52 @@ export interface ACLCondition {
|
|
|
1961
2389
|
*/
|
|
1962
2390
|
MatchContent: string;
|
|
1963
2391
|
}
|
|
2392
|
+
/**
|
|
2393
|
+
* DescribeTopL7AnalysisData请求参数结构体
|
|
2394
|
+
*/
|
|
2395
|
+
export interface DescribeTopL7AnalysisDataRequest {
|
|
2396
|
+
/**
|
|
2397
|
+
* RFC3339标准,客户端时间
|
|
2398
|
+
*/
|
|
2399
|
+
StartTime: string;
|
|
2400
|
+
/**
|
|
2401
|
+
* RFC3339标准,客户端时间
|
|
2402
|
+
*/
|
|
2403
|
+
EndTime: string;
|
|
2404
|
+
/**
|
|
2405
|
+
* 时序类访问流量指标
|
|
2406
|
+
*/
|
|
2407
|
+
MetricName: string;
|
|
2408
|
+
/**
|
|
2409
|
+
* topN,填0时返回全量数据
|
|
2410
|
+
*/
|
|
2411
|
+
Limit: number;
|
|
2412
|
+
/**
|
|
2413
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
2414
|
+
*/
|
|
2415
|
+
Interval: string;
|
|
2416
|
+
/**
|
|
2417
|
+
* ZoneId数组
|
|
2418
|
+
*/
|
|
2419
|
+
ZoneIds?: Array<string>;
|
|
2420
|
+
/**
|
|
2421
|
+
* 筛选条件
|
|
2422
|
+
*/
|
|
2423
|
+
Filters?: Array<Filter>;
|
|
2424
|
+
}
|
|
2425
|
+
/**
|
|
2426
|
+
* TopN entry
|
|
2427
|
+
*/
|
|
2428
|
+
export interface TopNEntry {
|
|
2429
|
+
/**
|
|
2430
|
+
* Entry key
|
|
2431
|
+
*/
|
|
2432
|
+
Key: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* TopN数据
|
|
2435
|
+
*/
|
|
2436
|
+
Value: Array<TopNEntryValue>;
|
|
2437
|
+
}
|
|
1964
2438
|
/**
|
|
1965
2439
|
* DescribeApplicationProxy返回参数结构体
|
|
1966
2440
|
*/
|
|
@@ -1998,6 +2472,61 @@ export interface CreateLoadBalancingResponse {
|
|
|
1998
2472
|
*/
|
|
1999
2473
|
RequestId?: string;
|
|
2000
2474
|
}
|
|
2475
|
+
/**
|
|
2476
|
+
* DescribeTopL7CacheData返回参数结构体
|
|
2477
|
+
*/
|
|
2478
|
+
export interface DescribeTopL7CacheDataResponse {
|
|
2479
|
+
/**
|
|
2480
|
+
* top详细数据
|
|
2481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2482
|
+
*/
|
|
2483
|
+
Data: Array<TopDataRecord>;
|
|
2484
|
+
/**
|
|
2485
|
+
* 查询维度
|
|
2486
|
+
*/
|
|
2487
|
+
Type: string;
|
|
2488
|
+
/**
|
|
2489
|
+
* 查询指标
|
|
2490
|
+
*/
|
|
2491
|
+
MetricName: string;
|
|
2492
|
+
/**
|
|
2493
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2494
|
+
*/
|
|
2495
|
+
RequestId?: string;
|
|
2496
|
+
}
|
|
2497
|
+
/**
|
|
2498
|
+
* DescribeOverviewL7Data请求参数结构体
|
|
2499
|
+
*/
|
|
2500
|
+
export interface DescribeOverviewL7DataRequest {
|
|
2501
|
+
/**
|
|
2502
|
+
* RFC3339格式,客户端时间
|
|
2503
|
+
*/
|
|
2504
|
+
StartTime: string;
|
|
2505
|
+
/**
|
|
2506
|
+
* RFC3339格式,客户端时间
|
|
2507
|
+
*/
|
|
2508
|
+
EndTime: string;
|
|
2509
|
+
/**
|
|
2510
|
+
* 指标列表
|
|
2511
|
+
*/
|
|
2512
|
+
MetricNames: Array<string>;
|
|
2513
|
+
/**
|
|
2514
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
2515
|
+
*/
|
|
2516
|
+
Interval: string;
|
|
2517
|
+
/**
|
|
2518
|
+
* ZoneId列表,仅在zone/domain维度下查询时该参数有效
|
|
2519
|
+
*/
|
|
2520
|
+
ZoneIds?: Array<string>;
|
|
2521
|
+
/**
|
|
2522
|
+
* Domain列表,仅在domain维度下查询时该参数有效
|
|
2523
|
+
*/
|
|
2524
|
+
Domains?: Array<string>;
|
|
2525
|
+
/**
|
|
2526
|
+
* 协议类型, 选填{http,http2,https,all}
|
|
2527
|
+
*/
|
|
2528
|
+
Protocol?: string;
|
|
2529
|
+
}
|
|
2001
2530
|
/**
|
|
2002
2531
|
* 功能总开关
|
|
2003
2532
|
*/
|
|
@@ -2122,6 +2651,57 @@ export interface DescribeDnssecRequest {
|
|
|
2122
2651
|
*/
|
|
2123
2652
|
Id: string;
|
|
2124
2653
|
}
|
|
2654
|
+
/**
|
|
2655
|
+
* DescribeWebProtectionLog返回参数结构体
|
|
2656
|
+
*/
|
|
2657
|
+
export interface DescribeWebProtectionLogResponse {
|
|
2658
|
+
/**
|
|
2659
|
+
* 限速拦截Data
|
|
2660
|
+
*/
|
|
2661
|
+
Data: CCLogData;
|
|
2662
|
+
/**
|
|
2663
|
+
* 状态,1:失败,0:成功
|
|
2664
|
+
*/
|
|
2665
|
+
Status: number;
|
|
2666
|
+
/**
|
|
2667
|
+
* 返回信息
|
|
2668
|
+
*/
|
|
2669
|
+
Msg: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2672
|
+
*/
|
|
2673
|
+
RequestId?: string;
|
|
2674
|
+
}
|
|
2675
|
+
/**
|
|
2676
|
+
* CC拦截事件数据
|
|
2677
|
+
*/
|
|
2678
|
+
export interface CCInterceptEventData {
|
|
2679
|
+
/**
|
|
2680
|
+
* 攻击事件数据集合
|
|
2681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2682
|
+
*/
|
|
2683
|
+
List: Array<CCInterceptEvent>;
|
|
2684
|
+
/**
|
|
2685
|
+
* 当前页
|
|
2686
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2687
|
+
*/
|
|
2688
|
+
PageNo: number;
|
|
2689
|
+
/**
|
|
2690
|
+
* 每页展示条数
|
|
2691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2692
|
+
*/
|
|
2693
|
+
PageSize: number;
|
|
2694
|
+
/**
|
|
2695
|
+
* 总页数
|
|
2696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2697
|
+
*/
|
|
2698
|
+
Pages: number;
|
|
2699
|
+
/**
|
|
2700
|
+
* 总条数
|
|
2701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2702
|
+
*/
|
|
2703
|
+
TotalSize: number;
|
|
2704
|
+
}
|
|
2125
2705
|
/**
|
|
2126
2706
|
* DescribeLoadBalancingDetail返回参数结构体
|
|
2127
2707
|
*/
|
|
@@ -2210,25 +2790,34 @@ export interface SecurityConfig {
|
|
|
2210
2790
|
SwitchConfig?: SwitchConfig;
|
|
2211
2791
|
}
|
|
2212
2792
|
/**
|
|
2213
|
-
*
|
|
2793
|
+
* 主攻击对象Data
|
|
2214
2794
|
*/
|
|
2215
|
-
export interface
|
|
2795
|
+
export interface DDosMajorAttackEventData {
|
|
2216
2796
|
/**
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2797
|
+
* DDosMajorAttackEvent ddos 攻击事件
|
|
2798
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2799
|
+
*/
|
|
2800
|
+
List: Array<DDosMajorAttackEvent>;
|
|
2220
2801
|
/**
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2802
|
+
* 当前页
|
|
2803
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2804
|
+
*/
|
|
2805
|
+
PageNo: number;
|
|
2224
2806
|
/**
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2807
|
+
* 每页展示条数
|
|
2808
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2809
|
+
*/
|
|
2810
|
+
PageSize: number;
|
|
2228
2811
|
/**
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2812
|
+
* 总页数
|
|
2813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2814
|
+
*/
|
|
2815
|
+
Pages: number;
|
|
2816
|
+
/**
|
|
2817
|
+
* 总条数
|
|
2818
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2819
|
+
*/
|
|
2820
|
+
TotalSize: number;
|
|
2232
2821
|
}
|
|
2233
2822
|
/**
|
|
2234
2823
|
* DescribeBotManagedRules返回参数结构体
|
|
@@ -2324,6 +2913,20 @@ export interface DnsRecord {
|
|
|
2324
2913
|
*/
|
|
2325
2914
|
DomainStatus: Array<string>;
|
|
2326
2915
|
}
|
|
2916
|
+
/**
|
|
2917
|
+
* 七层数据分析类top数据
|
|
2918
|
+
*/
|
|
2919
|
+
export interface TopDataRecord {
|
|
2920
|
+
/**
|
|
2921
|
+
* 查询维度值
|
|
2922
|
+
*/
|
|
2923
|
+
TypeKey: string;
|
|
2924
|
+
/**
|
|
2925
|
+
* top数据排行
|
|
2926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2927
|
+
*/
|
|
2928
|
+
DetailData: Array<TopDetailData>;
|
|
2929
|
+
}
|
|
2327
2930
|
/**
|
|
2328
2931
|
* DDoS协议防护+连接防护
|
|
2329
2932
|
*/
|
|
@@ -2381,6 +2984,87 @@ export interface DDoSAntiPly {
|
|
|
2381
2984
|
*/
|
|
2382
2985
|
EmptyConnectProtect: string;
|
|
2383
2986
|
}
|
|
2987
|
+
/**
|
|
2988
|
+
* DescribeWebManagedRulesData请求参数结构体
|
|
2989
|
+
*/
|
|
2990
|
+
export interface DescribeWebManagedRulesDataRequest {
|
|
2991
|
+
/**
|
|
2992
|
+
* 开始时间
|
|
2993
|
+
*/
|
|
2994
|
+
StartTime: string;
|
|
2995
|
+
/**
|
|
2996
|
+
* 结束时间
|
|
2997
|
+
*/
|
|
2998
|
+
EndTime: string;
|
|
2999
|
+
/**
|
|
3000
|
+
* 统计指标列表
|
|
3001
|
+
*/
|
|
3002
|
+
MetricNames: Array<string>;
|
|
3003
|
+
/**
|
|
3004
|
+
* 站点id列表
|
|
3005
|
+
*/
|
|
3006
|
+
ZoneIds?: Array<string>;
|
|
3007
|
+
/**
|
|
3008
|
+
* 子域名列表
|
|
3009
|
+
*/
|
|
3010
|
+
Domains?: Array<string>;
|
|
3011
|
+
/**
|
|
3012
|
+
* 协议类型
|
|
3013
|
+
*/
|
|
3014
|
+
ProtocolType?: string;
|
|
3015
|
+
/**
|
|
3016
|
+
* "webshell" : Webshell检测防护
|
|
3017
|
+
"oa" : 常见OA漏洞防护
|
|
3018
|
+
"xss" : XSS跨站脚本攻击防护
|
|
3019
|
+
"xxe" : XXE攻击防护
|
|
3020
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
3021
|
+
"cms" : 常见CMS漏洞防护
|
|
3022
|
+
"upload" : 恶意文件上传攻击防护
|
|
3023
|
+
"sql" : SQL注入攻击防护
|
|
3024
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
3025
|
+
"osc" : 开源组件漏洞防护
|
|
3026
|
+
"file_read" : 任意文件读取
|
|
3027
|
+
"ldap" : LDAP注入攻击防护
|
|
3028
|
+
"other" : 其它漏洞防护
|
|
3029
|
+
|
|
3030
|
+
"all":"所有"
|
|
3031
|
+
*/
|
|
3032
|
+
AttackType?: string;
|
|
3033
|
+
/**
|
|
3034
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3035
|
+
*/
|
|
3036
|
+
Interval?: string;
|
|
3037
|
+
}
|
|
3038
|
+
/**
|
|
3039
|
+
* DDos攻击源数据
|
|
3040
|
+
*/
|
|
3041
|
+
export interface DDosAttackSourceEventData {
|
|
3042
|
+
/**
|
|
3043
|
+
* DDos攻击源数据集合
|
|
3044
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3045
|
+
*/
|
|
3046
|
+
List: Array<DDosAttackSourceEvent>;
|
|
3047
|
+
/**
|
|
3048
|
+
* 当前页
|
|
3049
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3050
|
+
*/
|
|
3051
|
+
PageNo: number;
|
|
3052
|
+
/**
|
|
3053
|
+
* 每页展示条数
|
|
3054
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3055
|
+
*/
|
|
3056
|
+
PageSize: number;
|
|
3057
|
+
/**
|
|
3058
|
+
* 总页数
|
|
3059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3060
|
+
*/
|
|
3061
|
+
Pages: number;
|
|
3062
|
+
/**
|
|
3063
|
+
* 总条数
|
|
3064
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3065
|
+
*/
|
|
3066
|
+
TotalSize: number;
|
|
3067
|
+
}
|
|
2384
3068
|
/**
|
|
2385
3069
|
* ModifyDDoSPolicy返回参数结构体
|
|
2386
3070
|
*/
|
|
@@ -2445,6 +3129,24 @@ export interface CreatePrefetchTaskResponse {
|
|
|
2445
3129
|
*/
|
|
2446
3130
|
RequestId?: string;
|
|
2447
3131
|
}
|
|
3132
|
+
/**
|
|
3133
|
+
* Waf规则
|
|
3134
|
+
*/
|
|
3135
|
+
export interface WafRule {
|
|
3136
|
+
/**
|
|
3137
|
+
* 黑名单
|
|
3138
|
+
*/
|
|
3139
|
+
BlockRuleIDs: Array<number>;
|
|
3140
|
+
/**
|
|
3141
|
+
* id的开关
|
|
3142
|
+
*/
|
|
3143
|
+
Switch: string;
|
|
3144
|
+
/**
|
|
3145
|
+
* 观察模式
|
|
3146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3147
|
+
*/
|
|
3148
|
+
ObserveRuleIDs?: Array<number>;
|
|
3149
|
+
}
|
|
2448
3150
|
/**
|
|
2449
3151
|
* DescribeDefaultCertificates请求参数结构体
|
|
2450
3152
|
*/
|
|
@@ -2506,21 +3208,54 @@ export interface ModifyApplicationProxyRuleResponse {
|
|
|
2506
3208
|
RequestId?: string;
|
|
2507
3209
|
}
|
|
2508
3210
|
/**
|
|
2509
|
-
*
|
|
3211
|
+
* DDos攻击事件对象
|
|
2510
3212
|
*/
|
|
2511
|
-
export interface
|
|
3213
|
+
export interface DDosAttackEvent {
|
|
2512
3214
|
/**
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
3215
|
+
* ddos 策略组id
|
|
3216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3217
|
+
*/
|
|
3218
|
+
PolicyId: number;
|
|
2516
3219
|
/**
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
3220
|
+
* 攻击类型(对应交互事件名称)
|
|
3221
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3222
|
+
*/
|
|
3223
|
+
AttackType: string;
|
|
2520
3224
|
/**
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
3225
|
+
* 攻击状态
|
|
3226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3227
|
+
*/
|
|
3228
|
+
AttackStatus: number;
|
|
3229
|
+
/**
|
|
3230
|
+
* 攻击最大带宽
|
|
3231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3232
|
+
*/
|
|
3233
|
+
AttackMaxBandWidth: number;
|
|
3234
|
+
/**
|
|
3235
|
+
* 攻击包速率峰值
|
|
3236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3237
|
+
*/
|
|
3238
|
+
AttackPacketMaxRate: number;
|
|
3239
|
+
/**
|
|
3240
|
+
* 攻击开始时间 单位为s
|
|
3241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3242
|
+
*/
|
|
3243
|
+
AttackStartTime: number;
|
|
3244
|
+
/**
|
|
3245
|
+
* 攻击结束时间 单位为s
|
|
3246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3247
|
+
*/
|
|
3248
|
+
AttackEndTime: number;
|
|
3249
|
+
/**
|
|
3250
|
+
* 事件ID
|
|
3251
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3252
|
+
*/
|
|
3253
|
+
EventId: string;
|
|
3254
|
+
/**
|
|
3255
|
+
* 站点id
|
|
3256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3257
|
+
*/
|
|
3258
|
+
ZoneId: string;
|
|
2524
3259
|
}
|
|
2525
3260
|
/**
|
|
2526
3261
|
* 失败原因
|
|
@@ -2573,6 +3308,35 @@ export interface RateLimitConfig {
|
|
|
2573
3308
|
*/
|
|
2574
3309
|
Template?: RateLimitTemplate;
|
|
2575
3310
|
}
|
|
3311
|
+
/**
|
|
3312
|
+
* DescribeTimingL7CacheData请求参数结构体
|
|
3313
|
+
*/
|
|
3314
|
+
export interface DescribeTimingL7CacheDataRequest {
|
|
3315
|
+
/**
|
|
3316
|
+
* RFC3339标准,客户端时间
|
|
3317
|
+
*/
|
|
3318
|
+
StartTime: string;
|
|
3319
|
+
/**
|
|
3320
|
+
* RFC3339标准,客户端时间
|
|
3321
|
+
*/
|
|
3322
|
+
EndTime: string;
|
|
3323
|
+
/**
|
|
3324
|
+
* 时序类访问流量指标列表
|
|
3325
|
+
*/
|
|
3326
|
+
MetricNames: Array<string>;
|
|
3327
|
+
/**
|
|
3328
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
3329
|
+
*/
|
|
3330
|
+
Interval: string;
|
|
3331
|
+
/**
|
|
3332
|
+
* 站点id列表
|
|
3333
|
+
*/
|
|
3334
|
+
ZoneIds?: Array<string>;
|
|
3335
|
+
/**
|
|
3336
|
+
* 筛选条件
|
|
3337
|
+
*/
|
|
3338
|
+
Filters?: Array<Filter>;
|
|
3339
|
+
}
|
|
2576
3340
|
/**
|
|
2577
3341
|
* DescribeSecurityPolicyList返回参数结构体
|
|
2578
3342
|
*/
|
|
@@ -2698,6 +3462,57 @@ export interface DeleteLoadBalancingResponse {
|
|
|
2698
3462
|
*/
|
|
2699
3463
|
RequestId?: string;
|
|
2700
3464
|
}
|
|
3465
|
+
/**
|
|
3466
|
+
* DescribeWebProtectionData请求参数结构体
|
|
3467
|
+
*/
|
|
3468
|
+
export interface DescribeWebProtectionDataRequest {
|
|
3469
|
+
/**
|
|
3470
|
+
* 开始时间
|
|
3471
|
+
*/
|
|
3472
|
+
StartTime: string;
|
|
3473
|
+
/**
|
|
3474
|
+
* 结束时间
|
|
3475
|
+
*/
|
|
3476
|
+
EndTime: string;
|
|
3477
|
+
/**
|
|
3478
|
+
* 统计指标列表
|
|
3479
|
+
*/
|
|
3480
|
+
MetricNames: Array<string>;
|
|
3481
|
+
/**
|
|
3482
|
+
* 站点id列表
|
|
3483
|
+
*/
|
|
3484
|
+
ZoneIds?: Array<string>;
|
|
3485
|
+
/**
|
|
3486
|
+
* 子域名列表
|
|
3487
|
+
*/
|
|
3488
|
+
Domains?: Array<string>;
|
|
3489
|
+
/**
|
|
3490
|
+
* 协议类型
|
|
3491
|
+
*/
|
|
3492
|
+
ProtocolType?: string;
|
|
3493
|
+
/**
|
|
3494
|
+
* "webshell" : Webshell检测防护
|
|
3495
|
+
"oa" : 常见OA漏洞防护
|
|
3496
|
+
"xss" : XSS跨站脚本攻击防护
|
|
3497
|
+
"xxe" : XXE攻击防护
|
|
3498
|
+
"webscan" : 扫描器攻击漏洞防护
|
|
3499
|
+
"cms" : 常见CMS漏洞防护
|
|
3500
|
+
"upload" : 恶意文件上传攻击防护
|
|
3501
|
+
"sql" : SQL注入攻击防护
|
|
3502
|
+
"cmd_inject": 命令/代码注入攻击防护
|
|
3503
|
+
"osc" : 开源组件漏洞防护
|
|
3504
|
+
"file_read" : 任意文件读取
|
|
3505
|
+
"ldap" : LDAP注入攻击防护
|
|
3506
|
+
"other" : 其它漏洞防护
|
|
3507
|
+
|
|
3508
|
+
"all":"所有"
|
|
3509
|
+
*/
|
|
3510
|
+
AttackType?: string;
|
|
3511
|
+
/**
|
|
3512
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3513
|
+
*/
|
|
3514
|
+
Interval?: string;
|
|
3515
|
+
}
|
|
2701
3516
|
/**
|
|
2702
3517
|
* CheckCertificate请求参数结构体
|
|
2703
3518
|
*/
|
|
@@ -2787,46 +3602,25 @@ export interface CreateApplicationProxyRuleRequest {
|
|
|
2787
3602
|
SessionPersist?: boolean;
|
|
2788
3603
|
}
|
|
2789
3604
|
/**
|
|
2790
|
-
*
|
|
3605
|
+
* bot托管规则详情
|
|
2791
3606
|
*/
|
|
2792
|
-
export interface
|
|
2793
|
-
/**
|
|
2794
|
-
* 任务ID
|
|
2795
|
-
*/
|
|
2796
|
-
JobId?: string;
|
|
2797
|
-
/**
|
|
2798
|
-
* 查询起始时间
|
|
2799
|
-
*/
|
|
2800
|
-
StartTime?: string;
|
|
2801
|
-
/**
|
|
2802
|
-
* 查询结束时间
|
|
2803
|
-
*/
|
|
2804
|
-
EndTime?: string;
|
|
2805
|
-
/**
|
|
2806
|
-
* 查询起始偏移量
|
|
2807
|
-
*/
|
|
2808
|
-
Offset?: number;
|
|
3607
|
+
export interface BotManagedRuleDetail {
|
|
2809
3608
|
/**
|
|
2810
|
-
*
|
|
3609
|
+
* 规则ID
|
|
2811
3610
|
*/
|
|
2812
|
-
|
|
2813
|
-
/**
|
|
2814
|
-
* 查询的状态
|
|
2815
|
-
允许的值为:processing、success、failed、timeout、invalid
|
|
2816
|
-
*/
|
|
2817
|
-
Statuses?: Array<string>;
|
|
3611
|
+
RuleId: number;
|
|
2818
3612
|
/**
|
|
2819
|
-
*
|
|
3613
|
+
* 规则描述
|
|
2820
3614
|
*/
|
|
2821
|
-
|
|
3615
|
+
Description: string;
|
|
2822
3616
|
/**
|
|
2823
|
-
*
|
|
3617
|
+
* 规则分类
|
|
2824
3618
|
*/
|
|
2825
|
-
|
|
3619
|
+
RuleTypeName: string;
|
|
2826
3620
|
/**
|
|
2827
|
-
*
|
|
3621
|
+
* 该规则开启/关闭
|
|
2828
3622
|
*/
|
|
2829
|
-
|
|
3623
|
+
Status: string;
|
|
2830
3624
|
}
|
|
2831
3625
|
/**
|
|
2832
3626
|
* 访问协议强制https跳转配置
|
|
@@ -2894,6 +3688,15 @@ export interface ModifyApplicationProxyStatusResponse {
|
|
|
2894
3688
|
*/
|
|
2895
3689
|
RequestId?: string;
|
|
2896
3690
|
}
|
|
3691
|
+
/**
|
|
3692
|
+
* IdentifyZone请求参数结构体
|
|
3693
|
+
*/
|
|
3694
|
+
export interface IdentifyZoneRequest {
|
|
3695
|
+
/**
|
|
3696
|
+
* 站点名称
|
|
3697
|
+
*/
|
|
3698
|
+
Name: string;
|
|
3699
|
+
}
|
|
2897
3700
|
/**
|
|
2898
3701
|
* 域名配置信息
|
|
2899
3702
|
*/
|
|
@@ -2935,6 +3738,46 @@ export interface DescribeDnsRecordsResponse {
|
|
|
2935
3738
|
*/
|
|
2936
3739
|
RequestId?: string;
|
|
2937
3740
|
}
|
|
3741
|
+
/**
|
|
3742
|
+
* DescribeDefaultCertificates返回参数结构体
|
|
3743
|
+
*/
|
|
3744
|
+
export interface DescribeDefaultCertificatesResponse {
|
|
3745
|
+
/**
|
|
3746
|
+
* 证书总数
|
|
3747
|
+
*/
|
|
3748
|
+
TotalCount: number;
|
|
3749
|
+
/**
|
|
3750
|
+
* 默认证书列表
|
|
3751
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3752
|
+
*/
|
|
3753
|
+
CertInfo: Array<DefaultServerCertInfo>;
|
|
3754
|
+
/**
|
|
3755
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3756
|
+
*/
|
|
3757
|
+
RequestId?: string;
|
|
3758
|
+
}
|
|
3759
|
+
/**
|
|
3760
|
+
* DescribeTimingL7AnalysisData返回参数结构体
|
|
3761
|
+
*/
|
|
3762
|
+
export interface DescribeTimingL7AnalysisDataResponse {
|
|
3763
|
+
/**
|
|
3764
|
+
* 详细数据
|
|
3765
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3766
|
+
*/
|
|
3767
|
+
Data: Array<TimingDataRecord>;
|
|
3768
|
+
/**
|
|
3769
|
+
* 查询维度
|
|
3770
|
+
*/
|
|
3771
|
+
Type: string;
|
|
3772
|
+
/**
|
|
3773
|
+
* 时间间隔
|
|
3774
|
+
*/
|
|
3775
|
+
Interval: string;
|
|
3776
|
+
/**
|
|
3777
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3778
|
+
*/
|
|
3779
|
+
RequestId?: string;
|
|
3780
|
+
}
|
|
2938
3781
|
/**
|
|
2939
3782
|
* bot 用户画像规则
|
|
2940
3783
|
*/
|
|
@@ -2971,19 +3814,54 @@ export interface BotPortraitRule {
|
|
|
2971
3814
|
Switch?: string;
|
|
2972
3815
|
}
|
|
2973
3816
|
/**
|
|
2974
|
-
*
|
|
3817
|
+
* DescribeWebProtectionAttackEvents请求参数结构体
|
|
2975
3818
|
*/
|
|
2976
|
-
export interface
|
|
3819
|
+
export interface DescribeWebProtectionAttackEventsRequest {
|
|
2977
3820
|
/**
|
|
2978
|
-
*
|
|
3821
|
+
* 开始时间
|
|
2979
3822
|
*/
|
|
2980
|
-
|
|
3823
|
+
StartTime: string;
|
|
2981
3824
|
/**
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
3825
|
+
* 结束时间
|
|
3826
|
+
*/
|
|
3827
|
+
EndTime: string;
|
|
3828
|
+
/**
|
|
3829
|
+
* 条数
|
|
3830
|
+
*/
|
|
3831
|
+
PageSize: number;
|
|
3832
|
+
/**
|
|
3833
|
+
* 当前页
|
|
3834
|
+
*/
|
|
3835
|
+
PageNo: number;
|
|
3836
|
+
/**
|
|
3837
|
+
* 域名
|
|
3838
|
+
*/
|
|
3839
|
+
Domains?: Array<string>;
|
|
3840
|
+
/**
|
|
3841
|
+
* 站点集合
|
|
3842
|
+
*/
|
|
3843
|
+
ZoneIds?: Array<string>;
|
|
3844
|
+
}
|
|
3845
|
+
/**
|
|
3846
|
+
* DescribeOverviewL7Data返回参数结构体
|
|
3847
|
+
*/
|
|
3848
|
+
export interface DescribeOverviewL7DataResponse {
|
|
3849
|
+
/**
|
|
3850
|
+
* 查询维度
|
|
3851
|
+
*/
|
|
3852
|
+
Type: string;
|
|
3853
|
+
/**
|
|
3854
|
+
* 时间间隔
|
|
3855
|
+
*/
|
|
3856
|
+
Interval: string;
|
|
3857
|
+
/**
|
|
3858
|
+
* 详细数据
|
|
3859
|
+
*/
|
|
3860
|
+
Data: Array<TimingDataRecord>;
|
|
3861
|
+
/**
|
|
3862
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3863
|
+
*/
|
|
3864
|
+
RequestId?: string;
|
|
2987
3865
|
}
|
|
2988
3866
|
/**
|
|
2989
3867
|
* DescribeHostsCertificate请求参数结构体
|
|
@@ -3032,19 +3910,52 @@ export interface DescribeSecurityPolicyManagedRulesResponse {
|
|
|
3032
3910
|
RequestId?: string;
|
|
3033
3911
|
}
|
|
3034
3912
|
/**
|
|
3035
|
-
*
|
|
3913
|
+
* 源站组信息
|
|
3036
3914
|
*/
|
|
3037
|
-
export interface
|
|
3915
|
+
export interface OriginGroup {
|
|
3038
3916
|
/**
|
|
3039
|
-
|
|
3917
|
+
* 源站组ID
|
|
3918
|
+
*/
|
|
3919
|
+
OriginId: string;
|
|
3920
|
+
/**
|
|
3921
|
+
* 源站组名称
|
|
3922
|
+
*/
|
|
3923
|
+
OriginName: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* 配置类型
|
|
3926
|
+
*/
|
|
3927
|
+
Type: string;
|
|
3928
|
+
/**
|
|
3929
|
+
* 记录
|
|
3930
|
+
*/
|
|
3931
|
+
Record: Array<OriginRecord>;
|
|
3932
|
+
/**
|
|
3933
|
+
* 更新时间
|
|
3934
|
+
*/
|
|
3935
|
+
UpdateTime: string;
|
|
3936
|
+
/**
|
|
3937
|
+
* 站点ID
|
|
3938
|
+
*/
|
|
3939
|
+
ZoneId: string;
|
|
3940
|
+
/**
|
|
3941
|
+
* 站点名称
|
|
3942
|
+
*/
|
|
3943
|
+
ZoneName: string;
|
|
3944
|
+
/**
|
|
3945
|
+
* 源站类型
|
|
3040
3946
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3041
3947
|
*/
|
|
3042
|
-
|
|
3948
|
+
OriginType: string;
|
|
3043
3949
|
/**
|
|
3044
|
-
*
|
|
3950
|
+
* 是否为四层代理使用
|
|
3045
3951
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3046
3952
|
*/
|
|
3047
|
-
|
|
3953
|
+
ApplicationProxyUsed: boolean;
|
|
3954
|
+
/**
|
|
3955
|
+
* 是否为负载均衡使用
|
|
3956
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3957
|
+
*/
|
|
3958
|
+
LoadBalancingUsed: boolean;
|
|
3048
3959
|
}
|
|
3049
3960
|
/**
|
|
3050
3961
|
* DescribeApplicationProxy请求参数结构体
|
|
@@ -3063,6 +3974,19 @@ export interface DescribeApplicationProxyRequest {
|
|
|
3063
3974
|
*/
|
|
3064
3975
|
Limit?: number;
|
|
3065
3976
|
}
|
|
3977
|
+
/**
|
|
3978
|
+
* TopN数据Entry
|
|
3979
|
+
*/
|
|
3980
|
+
export interface TopNEntryValue {
|
|
3981
|
+
/**
|
|
3982
|
+
* Entry的name
|
|
3983
|
+
*/
|
|
3984
|
+
Name: string;
|
|
3985
|
+
/**
|
|
3986
|
+
* 数量
|
|
3987
|
+
*/
|
|
3988
|
+
Count: number;
|
|
3989
|
+
}
|
|
3066
3990
|
/**
|
|
3067
3991
|
* ModifyDDoSPolicyHost返回参数结构体
|
|
3068
3992
|
*/
|
|
@@ -3100,39 +4024,65 @@ export interface ModifyApplicationProxyRuleStatusRequest {
|
|
|
3100
4024
|
Status: string;
|
|
3101
4025
|
}
|
|
3102
4026
|
/**
|
|
3103
|
-
*
|
|
4027
|
+
* Web拦截事件
|
|
3104
4028
|
*/
|
|
3105
|
-
export interface
|
|
4029
|
+
export interface WebAttackEvent {
|
|
3106
4030
|
/**
|
|
3107
|
-
*
|
|
4031
|
+
* 客户端ip
|
|
3108
4032
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3109
4033
|
*/
|
|
3110
|
-
|
|
4034
|
+
ClientIp: string;
|
|
3111
4035
|
/**
|
|
3112
|
-
*
|
|
4036
|
+
* 攻击URL
|
|
3113
4037
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3114
4038
|
*/
|
|
3115
|
-
|
|
4039
|
+
AttackUrl: string;
|
|
3116
4040
|
/**
|
|
3117
|
-
*
|
|
4041
|
+
* 攻击时间 单位为s
|
|
3118
4042
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3119
4043
|
*/
|
|
3120
|
-
|
|
4044
|
+
AttackTime: number;
|
|
4045
|
+
}
|
|
4046
|
+
/**
|
|
4047
|
+
* DescribeDDosAttackTopData请求参数结构体
|
|
4048
|
+
*/
|
|
4049
|
+
export interface DescribeDDosAttackTopDataRequest {
|
|
3121
4050
|
/**
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
PunishTime?: number;
|
|
4051
|
+
* 开始时间
|
|
4052
|
+
*/
|
|
4053
|
+
StartTime: string;
|
|
3126
4054
|
/**
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
Threshold?: number;
|
|
4055
|
+
* 结束时间
|
|
4056
|
+
*/
|
|
4057
|
+
EndTime: string;
|
|
3131
4058
|
/**
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
4059
|
+
* 过滤指标
|
|
4060
|
+
*/
|
|
4061
|
+
MetricName: string;
|
|
4062
|
+
/**
|
|
4063
|
+
* 查询前多少名,传值为0 全量
|
|
4064
|
+
*/
|
|
4065
|
+
Limit: number;
|
|
4066
|
+
/**
|
|
4067
|
+
* 站点集合
|
|
4068
|
+
*/
|
|
4069
|
+
ZoneIds?: Array<string>;
|
|
4070
|
+
/**
|
|
4071
|
+
* ddos策略组id 集合
|
|
4072
|
+
*/
|
|
4073
|
+
PolicyIds?: Array<number>;
|
|
4074
|
+
/**
|
|
4075
|
+
* 端口号
|
|
4076
|
+
*/
|
|
4077
|
+
Port?: number;
|
|
4078
|
+
/**
|
|
4079
|
+
* 协议类型,tcp,udp,all
|
|
4080
|
+
*/
|
|
4081
|
+
ProtocolType?: string;
|
|
4082
|
+
/**
|
|
4083
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
4084
|
+
*/
|
|
4085
|
+
AttackType?: string;
|
|
3136
4086
|
}
|
|
3137
4087
|
/**
|
|
3138
4088
|
* CreateApplicationProxyRule返回参数结构体
|
|
@@ -3148,60 +4098,45 @@ export interface CreateApplicationProxyRuleResponse {
|
|
|
3148
4098
|
RequestId?: string;
|
|
3149
4099
|
}
|
|
3150
4100
|
/**
|
|
3151
|
-
*
|
|
4101
|
+
* DescribeDDosAttackData请求参数结构体
|
|
3152
4102
|
*/
|
|
3153
|
-
export interface
|
|
4103
|
+
export interface DescribeDDosAttackDataRequest {
|
|
3154
4104
|
/**
|
|
3155
|
-
*
|
|
4105
|
+
* 开始时间
|
|
3156
4106
|
*/
|
|
3157
|
-
|
|
4107
|
+
StartTime: string;
|
|
3158
4108
|
/**
|
|
3159
|
-
*
|
|
4109
|
+
* 结束时间
|
|
3160
4110
|
*/
|
|
3161
|
-
|
|
4111
|
+
EndTime: string;
|
|
3162
4112
|
/**
|
|
3163
|
-
*
|
|
4113
|
+
* 统计指标列表
|
|
3164
4114
|
*/
|
|
3165
|
-
|
|
4115
|
+
MetricNames: Array<string>;
|
|
3166
4116
|
/**
|
|
3167
|
-
*
|
|
4117
|
+
* 站点id列表
|
|
3168
4118
|
*/
|
|
3169
|
-
|
|
4119
|
+
ZoneIds?: Array<string>;
|
|
3170
4120
|
/**
|
|
3171
|
-
*
|
|
4121
|
+
* ddos策略组id列表
|
|
3172
4122
|
*/
|
|
3173
|
-
|
|
4123
|
+
PolicyIds?: Array<number>;
|
|
3174
4124
|
/**
|
|
3175
|
-
*
|
|
4125
|
+
* 端口号
|
|
3176
4126
|
*/
|
|
3177
|
-
|
|
4127
|
+
Port?: number;
|
|
3178
4128
|
/**
|
|
3179
|
-
*
|
|
4129
|
+
* 协议类型,tcp,udp,all
|
|
3180
4130
|
*/
|
|
3181
|
-
|
|
4131
|
+
ProtocolType?: string;
|
|
3182
4132
|
/**
|
|
3183
|
-
*
|
|
4133
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
3184
4134
|
*/
|
|
3185
|
-
|
|
4135
|
+
AttackType?: string;
|
|
3186
4136
|
/**
|
|
3187
|
-
*
|
|
4137
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
3188
4138
|
*/
|
|
3189
|
-
|
|
3190
|
-
/**
|
|
3191
|
-
* 规则id
|
|
3192
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3193
|
-
*/
|
|
3194
|
-
RuleID?: number;
|
|
3195
|
-
/**
|
|
3196
|
-
* 过滤词
|
|
3197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3198
|
-
*/
|
|
3199
|
-
FreqFields?: Array<string>;
|
|
3200
|
-
/**
|
|
3201
|
-
* 更新时间
|
|
3202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3203
|
-
*/
|
|
3204
|
-
UpdateTime?: string;
|
|
4139
|
+
Interval?: string;
|
|
3205
4140
|
}
|
|
3206
4141
|
/**
|
|
3207
4142
|
* ModifyDnsRecord返回参数结构体
|
|
@@ -3269,6 +4204,56 @@ export interface ModifyDnsRecordResponse {
|
|
|
3269
4204
|
*/
|
|
3270
4205
|
RequestId?: string;
|
|
3271
4206
|
}
|
|
4207
|
+
/**
|
|
4208
|
+
* 模板当前详细配置
|
|
4209
|
+
*/
|
|
4210
|
+
export interface RateLimitTemplateDetail {
|
|
4211
|
+
/**
|
|
4212
|
+
* 模板名称
|
|
4213
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4214
|
+
*/
|
|
4215
|
+
Mode?: string;
|
|
4216
|
+
/**
|
|
4217
|
+
* 唯一id
|
|
4218
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4219
|
+
*/
|
|
4220
|
+
ID?: number;
|
|
4221
|
+
/**
|
|
4222
|
+
* 处置动作
|
|
4223
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4224
|
+
*/
|
|
4225
|
+
Action?: string;
|
|
4226
|
+
/**
|
|
4227
|
+
* 惩罚时间,秒
|
|
4228
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4229
|
+
*/
|
|
4230
|
+
PunishTime?: number;
|
|
4231
|
+
/**
|
|
4232
|
+
* 阈值
|
|
4233
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4234
|
+
*/
|
|
4235
|
+
Threshold?: number;
|
|
4236
|
+
/**
|
|
4237
|
+
* 统计周期
|
|
4238
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4239
|
+
*/
|
|
4240
|
+
Period?: number;
|
|
4241
|
+
}
|
|
4242
|
+
/**
|
|
4243
|
+
* 统计曲线数据项
|
|
4244
|
+
*/
|
|
4245
|
+
export interface TimingDataItem {
|
|
4246
|
+
/**
|
|
4247
|
+
* 秒级时间戳
|
|
4248
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4249
|
+
*/
|
|
4250
|
+
Timestamp: number;
|
|
4251
|
+
/**
|
|
4252
|
+
* 数值
|
|
4253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4254
|
+
*/
|
|
4255
|
+
Value: number;
|
|
4256
|
+
}
|
|
3272
4257
|
/**
|
|
3273
4258
|
* CreateApplicationProxy请求参数结构体
|
|
3274
4259
|
*/
|
|
@@ -3323,45 +4308,203 @@ export interface CreateApplicationProxyRequest {
|
|
|
3323
4308
|
ProxyType?: string;
|
|
3324
4309
|
}
|
|
3325
4310
|
/**
|
|
3326
|
-
*
|
|
4311
|
+
* DescribeTopL7AnalysisData返回参数结构体
|
|
3327
4312
|
*/
|
|
3328
|
-
export interface
|
|
3329
|
-
/**
|
|
3330
|
-
* 是调整POST请求限制,平台默认为32MB。
|
|
3331
|
-
关闭:off,
|
|
3332
|
-
开启:on。
|
|
3333
|
-
*/
|
|
3334
|
-
Switch: string;
|
|
4313
|
+
export interface DescribeTopL7AnalysisDataResponse {
|
|
3335
4314
|
/**
|
|
3336
|
-
*
|
|
4315
|
+
* top详细数据
|
|
3337
4316
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3338
4317
|
*/
|
|
3339
|
-
|
|
3340
|
-
}
|
|
3341
|
-
/**
|
|
3342
|
-
* 门神规则
|
|
3343
|
-
*/
|
|
3344
|
-
export interface ManagedRule {
|
|
3345
|
-
/**
|
|
3346
|
-
* 规则id
|
|
3347
|
-
*/
|
|
3348
|
-
RuleId: number;
|
|
4318
|
+
Data: Array<TopDataRecord>;
|
|
3349
4319
|
/**
|
|
3350
|
-
*
|
|
4320
|
+
* 查询维度
|
|
3351
4321
|
*/
|
|
3352
|
-
|
|
4322
|
+
Type: string;
|
|
3353
4323
|
/**
|
|
3354
|
-
*
|
|
4324
|
+
* 查询指标
|
|
3355
4325
|
*/
|
|
3356
|
-
|
|
4326
|
+
MetricName: string;
|
|
3357
4327
|
/**
|
|
3358
|
-
*
|
|
4328
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3359
4329
|
*/
|
|
3360
|
-
|
|
4330
|
+
RequestId?: string;
|
|
4331
|
+
}
|
|
4332
|
+
/**
|
|
4333
|
+
* web攻击日志
|
|
4334
|
+
*/
|
|
4335
|
+
export interface WebLogs {
|
|
3361
4336
|
/**
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
4337
|
+
* 攻击内容
|
|
4338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4339
|
+
*/
|
|
4340
|
+
AttackContent: string;
|
|
4341
|
+
/**
|
|
4342
|
+
* 攻击IP
|
|
4343
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4344
|
+
*/
|
|
4345
|
+
AttackIp: string;
|
|
4346
|
+
/**
|
|
4347
|
+
* 攻击类型
|
|
4348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4349
|
+
*/
|
|
4350
|
+
AttackType: string;
|
|
4351
|
+
/**
|
|
4352
|
+
* 域名
|
|
4353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4354
|
+
*/
|
|
4355
|
+
Domain: string;
|
|
4356
|
+
/**
|
|
4357
|
+
* uuid
|
|
4358
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4359
|
+
*/
|
|
4360
|
+
Msuuid: string;
|
|
4361
|
+
/**
|
|
4362
|
+
* 请求方法
|
|
4363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4364
|
+
*/
|
|
4365
|
+
RequestMethod: string;
|
|
4366
|
+
/**
|
|
4367
|
+
* 请求URI
|
|
4368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4369
|
+
*/
|
|
4370
|
+
RequestUri: string;
|
|
4371
|
+
/**
|
|
4372
|
+
* 风险等级
|
|
4373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4374
|
+
*/
|
|
4375
|
+
RiskLevel: string;
|
|
4376
|
+
/**
|
|
4377
|
+
* 规则ID
|
|
4378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4379
|
+
*/
|
|
4380
|
+
RuleId: number;
|
|
4381
|
+
/**
|
|
4382
|
+
* IP所在国家
|
|
4383
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4384
|
+
*/
|
|
4385
|
+
SipCountryCode: string;
|
|
4386
|
+
/**
|
|
4387
|
+
* 事件id
|
|
4388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4389
|
+
*/
|
|
4390
|
+
EventId: string;
|
|
4391
|
+
/**
|
|
4392
|
+
* 处置方式
|
|
4393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4394
|
+
*/
|
|
4395
|
+
DisposalMethod: string;
|
|
4396
|
+
/**
|
|
4397
|
+
* http_log
|
|
4398
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4399
|
+
*/
|
|
4400
|
+
HttpLog: string;
|
|
4401
|
+
/**
|
|
4402
|
+
* user agent
|
|
4403
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4404
|
+
*/
|
|
4405
|
+
Ua: string;
|
|
4406
|
+
/**
|
|
4407
|
+
* 攻击时间,为保持统一,原参数time更名为AttackTime
|
|
4408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4409
|
+
*/
|
|
4410
|
+
AttackTime: number;
|
|
4411
|
+
}
|
|
4412
|
+
/**
|
|
4413
|
+
* POST请求上传文件流式传输最大限制
|
|
4414
|
+
*/
|
|
4415
|
+
export interface PostMaxSize {
|
|
4416
|
+
/**
|
|
4417
|
+
* 是调整POST请求限制,平台默认为32MB。
|
|
4418
|
+
关闭:off,
|
|
4419
|
+
开启:on。
|
|
4420
|
+
*/
|
|
4421
|
+
Switch: string;
|
|
4422
|
+
/**
|
|
4423
|
+
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
4424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4425
|
+
*/
|
|
4426
|
+
MaxSize?: number;
|
|
4427
|
+
}
|
|
4428
|
+
/**
|
|
4429
|
+
* RateLimit规则
|
|
4430
|
+
*/
|
|
4431
|
+
export interface RateLimitUserRule {
|
|
4432
|
+
/**
|
|
4433
|
+
* RateLimit统计阈值
|
|
4434
|
+
*/
|
|
4435
|
+
Threshold: number;
|
|
4436
|
+
/**
|
|
4437
|
+
* RateLimit统计时间
|
|
4438
|
+
*/
|
|
4439
|
+
Period: number;
|
|
4440
|
+
/**
|
|
4441
|
+
* 规则名
|
|
4442
|
+
*/
|
|
4443
|
+
RuleName: string;
|
|
4444
|
+
/**
|
|
4445
|
+
* 动作:monitor(观察), drop(拦截)
|
|
4446
|
+
*/
|
|
4447
|
+
Action: string;
|
|
4448
|
+
/**
|
|
4449
|
+
* 惩罚时长
|
|
4450
|
+
*/
|
|
4451
|
+
PunishTime: number;
|
|
4452
|
+
/**
|
|
4453
|
+
* 处罚时长单位,second
|
|
4454
|
+
*/
|
|
4455
|
+
PunishTimeUnit: string;
|
|
4456
|
+
/**
|
|
4457
|
+
* 规则状态
|
|
4458
|
+
*/
|
|
4459
|
+
RuleStatus: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* 规则
|
|
4462
|
+
*/
|
|
4463
|
+
Conditions: Array<ACLCondition>;
|
|
4464
|
+
/**
|
|
4465
|
+
* 规则权重
|
|
4466
|
+
*/
|
|
4467
|
+
RulePriority: number;
|
|
4468
|
+
/**
|
|
4469
|
+
* 规则id
|
|
4470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4471
|
+
*/
|
|
4472
|
+
RuleID?: number;
|
|
4473
|
+
/**
|
|
4474
|
+
* 过滤词
|
|
4475
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4476
|
+
*/
|
|
4477
|
+
FreqFields?: Array<string>;
|
|
4478
|
+
/**
|
|
4479
|
+
* 更新时间
|
|
4480
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4481
|
+
*/
|
|
4482
|
+
UpdateTime?: string;
|
|
4483
|
+
}
|
|
4484
|
+
/**
|
|
4485
|
+
* 门神规则
|
|
4486
|
+
*/
|
|
4487
|
+
export interface ManagedRule {
|
|
4488
|
+
/**
|
|
4489
|
+
* 规则id
|
|
4490
|
+
*/
|
|
4491
|
+
RuleId: number;
|
|
4492
|
+
/**
|
|
4493
|
+
* 规则描述
|
|
4494
|
+
*/
|
|
4495
|
+
Description: string;
|
|
4496
|
+
/**
|
|
4497
|
+
* 规则类型名
|
|
4498
|
+
*/
|
|
4499
|
+
RuleTypeName: string;
|
|
4500
|
+
/**
|
|
4501
|
+
* 策略规则防护等级
|
|
4502
|
+
*/
|
|
4503
|
+
RuleLevelDesc: string;
|
|
4504
|
+
/**
|
|
4505
|
+
* 更新时间
|
|
4506
|
+
*/
|
|
4507
|
+
UpdateTime: string;
|
|
3365
4508
|
/**
|
|
3366
4509
|
* 规则当前状态 block, allow
|
|
3367
4510
|
*/
|
|
@@ -3383,17 +4526,58 @@ export interface ManagedRule {
|
|
|
3383
4526
|
RuleTypeId?: number;
|
|
3384
4527
|
}
|
|
3385
4528
|
/**
|
|
3386
|
-
*
|
|
4529
|
+
* 过滤条件
|
|
3387
4530
|
*/
|
|
3388
|
-
export interface
|
|
4531
|
+
export interface Filter {
|
|
3389
4532
|
/**
|
|
3390
|
-
*
|
|
4533
|
+
* 筛选维度
|
|
3391
4534
|
*/
|
|
3392
|
-
|
|
4535
|
+
Key: string;
|
|
3393
4536
|
/**
|
|
3394
|
-
*
|
|
4537
|
+
* 操作符
|
|
3395
4538
|
*/
|
|
3396
|
-
|
|
4539
|
+
Operator: string;
|
|
4540
|
+
/**
|
|
4541
|
+
* 筛选维度值
|
|
4542
|
+
*/
|
|
4543
|
+
Value: Array<string>;
|
|
4544
|
+
}
|
|
4545
|
+
/**
|
|
4546
|
+
* DescribeWebManagedRulesAttackEvents请求参数结构体
|
|
4547
|
+
*/
|
|
4548
|
+
export interface DescribeWebManagedRulesAttackEventsRequest {
|
|
4549
|
+
/**
|
|
4550
|
+
* 开始时间
|
|
4551
|
+
*/
|
|
4552
|
+
StartTime: string;
|
|
4553
|
+
/**
|
|
4554
|
+
* 结束时间
|
|
4555
|
+
*/
|
|
4556
|
+
EndTime: string;
|
|
4557
|
+
/**
|
|
4558
|
+
* 条数
|
|
4559
|
+
*/
|
|
4560
|
+
PageSize: number;
|
|
4561
|
+
/**
|
|
4562
|
+
* 当前页
|
|
4563
|
+
*/
|
|
4564
|
+
PageNo: number;
|
|
4565
|
+
/**
|
|
4566
|
+
* ddos策略组id列表
|
|
4567
|
+
*/
|
|
4568
|
+
PolicyIds?: Array<number>;
|
|
4569
|
+
/**
|
|
4570
|
+
* 站点集合
|
|
4571
|
+
*/
|
|
4572
|
+
ZoneIds?: Array<string>;
|
|
4573
|
+
/**
|
|
4574
|
+
* 子域名列表
|
|
4575
|
+
*/
|
|
4576
|
+
Domains?: Array<string>;
|
|
4577
|
+
/**
|
|
4578
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
4579
|
+
*/
|
|
4580
|
+
IsShowDetail?: string;
|
|
3397
4581
|
}
|
|
3398
4582
|
/**
|
|
3399
4583
|
* DescribeCnameStatus请求参数结构体
|
|
@@ -3565,25 +4749,84 @@ export interface DeleteLoadBalancingRequest {
|
|
|
3565
4749
|
LoadBalancingId: string;
|
|
3566
4750
|
}
|
|
3567
4751
|
/**
|
|
3568
|
-
*
|
|
4752
|
+
* DescribeTimingL7AnalysisData请求参数结构体
|
|
3569
4753
|
*/
|
|
3570
|
-
export interface
|
|
4754
|
+
export interface DescribeTimingL7AnalysisDataRequest {
|
|
3571
4755
|
/**
|
|
3572
|
-
*
|
|
4756
|
+
* RFC3339标准,客户端时间
|
|
3573
4757
|
*/
|
|
3574
|
-
|
|
4758
|
+
StartTime: string;
|
|
3575
4759
|
/**
|
|
3576
|
-
*
|
|
4760
|
+
* RFC3339标准,客户端时间
|
|
3577
4761
|
*/
|
|
3578
|
-
|
|
4762
|
+
EndTime: string;
|
|
3579
4763
|
/**
|
|
3580
|
-
*
|
|
4764
|
+
* 时序类访问流量指标
|
|
3581
4765
|
*/
|
|
3582
|
-
|
|
4766
|
+
MetricNames: Array<string>;
|
|
3583
4767
|
/**
|
|
3584
|
-
*
|
|
4768
|
+
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
3585
4769
|
*/
|
|
3586
|
-
|
|
4770
|
+
Interval: string;
|
|
4771
|
+
/**
|
|
4772
|
+
* ZoneId数组
|
|
4773
|
+
*/
|
|
4774
|
+
ZoneIds?: Array<string>;
|
|
4775
|
+
/**
|
|
4776
|
+
* 筛选条件
|
|
4777
|
+
*/
|
|
4778
|
+
Filters?: Array<Filter>;
|
|
4779
|
+
}
|
|
4780
|
+
/**
|
|
4781
|
+
* DescribeSecurityPolicyManagedRulesId返回参数结构体
|
|
4782
|
+
*/
|
|
4783
|
+
export interface DescribeSecurityPolicyManagedRulesIdResponse {
|
|
4784
|
+
/**
|
|
4785
|
+
* 返回总数
|
|
4786
|
+
*/
|
|
4787
|
+
Total: number;
|
|
4788
|
+
/**
|
|
4789
|
+
* 门神规则
|
|
4790
|
+
*/
|
|
4791
|
+
Rules: Array<ManagedRule>;
|
|
4792
|
+
/**
|
|
4793
|
+
* 返回总数
|
|
4794
|
+
*/
|
|
4795
|
+
Count: number;
|
|
4796
|
+
/**
|
|
4797
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4798
|
+
*/
|
|
4799
|
+
RequestId?: string;
|
|
4800
|
+
}
|
|
4801
|
+
/**
|
|
4802
|
+
* web事件数据
|
|
4803
|
+
*/
|
|
4804
|
+
export interface WebEventData {
|
|
4805
|
+
/**
|
|
4806
|
+
* 攻击事件数据集合
|
|
4807
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4808
|
+
*/
|
|
4809
|
+
List: Array<WebAttackEvent>;
|
|
4810
|
+
/**
|
|
4811
|
+
* 当前页
|
|
4812
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4813
|
+
*/
|
|
4814
|
+
PageNo: number;
|
|
4815
|
+
/**
|
|
4816
|
+
* 每页展示条数
|
|
4817
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4818
|
+
*/
|
|
4819
|
+
PageSize: number;
|
|
4820
|
+
/**
|
|
4821
|
+
* 总页数
|
|
4822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4823
|
+
*/
|
|
4824
|
+
Pages: number;
|
|
4825
|
+
/**
|
|
4826
|
+
* 总条数
|
|
4827
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4828
|
+
*/
|
|
4829
|
+
TotalSize: number;
|
|
3587
4830
|
}
|
|
3588
4831
|
/**
|
|
3589
4832
|
* 应用代理实例
|
|
@@ -3773,21 +5016,43 @@ export interface DescribeSecurityPolicyListRequest {
|
|
|
3773
5016
|
ZoneId: string;
|
|
3774
5017
|
}
|
|
3775
5018
|
/**
|
|
3776
|
-
*
|
|
5019
|
+
* DescribeTimingL7CacheData返回参数结构体
|
|
3777
5020
|
*/
|
|
3778
|
-
export interface
|
|
5021
|
+
export interface DescribeTimingL7CacheDataResponse {
|
|
3779
5022
|
/**
|
|
3780
|
-
|
|
5023
|
+
* 详细数据
|
|
5024
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5025
|
+
*/
|
|
5026
|
+
Data: Array<TimingDataRecord>;
|
|
5027
|
+
/**
|
|
5028
|
+
* 查询维度
|
|
3781
5029
|
*/
|
|
3782
|
-
|
|
5030
|
+
Type: string;
|
|
3783
5031
|
/**
|
|
3784
|
-
*
|
|
5032
|
+
* 时间间隔
|
|
3785
5033
|
*/
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
5034
|
+
Interval: string;
|
|
5035
|
+
/**
|
|
5036
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5037
|
+
*/
|
|
5038
|
+
RequestId?: string;
|
|
5039
|
+
}
|
|
5040
|
+
/**
|
|
5041
|
+
* DescribeApplicationProxyDetail请求参数结构体
|
|
5042
|
+
*/
|
|
5043
|
+
export interface DescribeApplicationProxyDetailRequest {
|
|
5044
|
+
/**
|
|
5045
|
+
* 站点ID
|
|
5046
|
+
*/
|
|
5047
|
+
ZoneId: string;
|
|
5048
|
+
/**
|
|
5049
|
+
* 实例ID
|
|
5050
|
+
*/
|
|
5051
|
+
ProxyId: string;
|
|
5052
|
+
}
|
|
5053
|
+
/**
|
|
5054
|
+
* DeleteOriginGroup返回参数结构体
|
|
5055
|
+
*/
|
|
3791
5056
|
export interface DeleteOriginGroupResponse {
|
|
3792
5057
|
/**
|
|
3793
5058
|
* 源站组ID
|
|
@@ -3811,6 +5076,40 @@ export interface Header {
|
|
|
3811
5076
|
*/
|
|
3812
5077
|
Value: string;
|
|
3813
5078
|
}
|
|
5079
|
+
/**
|
|
5080
|
+
* 自定义名字服务器 IP 信息
|
|
5081
|
+
*/
|
|
5082
|
+
export interface VanityNameServersIps {
|
|
5083
|
+
/**
|
|
5084
|
+
* 自定义名字服务器名称
|
|
5085
|
+
*/
|
|
5086
|
+
Name: string;
|
|
5087
|
+
/**
|
|
5088
|
+
* 自定义名字服务器 IPv4 地址
|
|
5089
|
+
*/
|
|
5090
|
+
IPv4: string;
|
|
5091
|
+
}
|
|
5092
|
+
/**
|
|
5093
|
+
* DescribeDDosAttackSourceEvent返回参数结构体
|
|
5094
|
+
*/
|
|
5095
|
+
export interface DescribeDDosAttackSourceEventResponse {
|
|
5096
|
+
/**
|
|
5097
|
+
* DDos攻击源数据
|
|
5098
|
+
*/
|
|
5099
|
+
Data: DDosAttackSourceEventData;
|
|
5100
|
+
/**
|
|
5101
|
+
* 状态,1:失败,0:成功
|
|
5102
|
+
*/
|
|
5103
|
+
Status: number;
|
|
5104
|
+
/**
|
|
5105
|
+
* 返回信息
|
|
5106
|
+
*/
|
|
5107
|
+
Msg: string;
|
|
5108
|
+
/**
|
|
5109
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5110
|
+
*/
|
|
5111
|
+
RequestId?: string;
|
|
5112
|
+
}
|
|
3814
5113
|
/**
|
|
3815
5114
|
* DescribeZoneDetails请求参数结构体
|
|
3816
5115
|
*/
|
|
@@ -3834,22 +5133,61 @@ export interface DescribeDDoSPolicyRequest {
|
|
|
3834
5133
|
ZoneId: string;
|
|
3835
5134
|
}
|
|
3836
5135
|
/**
|
|
3837
|
-
*
|
|
5136
|
+
* 安全数据Entry返回值
|
|
3838
5137
|
*/
|
|
3839
|
-
export interface
|
|
5138
|
+
export interface SecEntry {
|
|
3840
5139
|
/**
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
5140
|
+
* Entry的Key
|
|
5141
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5142
|
+
*/
|
|
5143
|
+
Key: string;
|
|
3844
5144
|
/**
|
|
3845
|
-
*
|
|
5145
|
+
* Entry的Value
|
|
3846
5146
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3847
5147
|
*/
|
|
3848
|
-
|
|
5148
|
+
Value: Array<SecEntryValue>;
|
|
5149
|
+
}
|
|
5150
|
+
/**
|
|
5151
|
+
* DescribeDDosMajorAttackEvent请求参数结构体
|
|
5152
|
+
*/
|
|
5153
|
+
export interface DescribeDDosMajorAttackEventRequest {
|
|
3849
5154
|
/**
|
|
3850
|
-
*
|
|
5155
|
+
* 开始时间
|
|
3851
5156
|
*/
|
|
3852
|
-
|
|
5157
|
+
StartTime: string;
|
|
5158
|
+
/**
|
|
5159
|
+
* 结束时间
|
|
5160
|
+
*/
|
|
5161
|
+
EndTime: string;
|
|
5162
|
+
/**
|
|
5163
|
+
* 条数
|
|
5164
|
+
*/
|
|
5165
|
+
PageSize: number;
|
|
5166
|
+
/**
|
|
5167
|
+
* 当前页
|
|
5168
|
+
*/
|
|
5169
|
+
PageNo: number;
|
|
5170
|
+
/**
|
|
5171
|
+
* ddos 策略组id集合
|
|
5172
|
+
*/
|
|
5173
|
+
PolicyIds?: Array<number>;
|
|
5174
|
+
/**
|
|
5175
|
+
* 协议类型,{tcp,udp,all}
|
|
5176
|
+
*/
|
|
5177
|
+
ProtocolType?: string;
|
|
5178
|
+
/**
|
|
5179
|
+
* 站点集合
|
|
5180
|
+
*/
|
|
5181
|
+
ZoneIds?: Array<string>;
|
|
5182
|
+
}
|
|
5183
|
+
/**
|
|
5184
|
+
* Quic配置项
|
|
5185
|
+
*/
|
|
5186
|
+
export interface Quic {
|
|
5187
|
+
/**
|
|
5188
|
+
* 是否启动Quic配置
|
|
5189
|
+
*/
|
|
5190
|
+
Switch: string;
|
|
3853
5191
|
}
|
|
3854
5192
|
/**
|
|
3855
5193
|
* CreateOriginGroup返回参数结构体
|
|
@@ -3915,6 +5253,36 @@ export interface QueryString {
|
|
|
3915
5253
|
* DescribeSecurityPolicyRegions请求参数结构体
|
|
3916
5254
|
*/
|
|
3917
5255
|
export declare type DescribeSecurityPolicyRegionsRequest = null;
|
|
5256
|
+
/**
|
|
5257
|
+
* 安全数据Entry对应的值
|
|
5258
|
+
*/
|
|
5259
|
+
export interface SecEntryValue {
|
|
5260
|
+
/**
|
|
5261
|
+
* 指标名称
|
|
5262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5263
|
+
*/
|
|
5264
|
+
Metric: string;
|
|
5265
|
+
/**
|
|
5266
|
+
* 指标数据明细
|
|
5267
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5268
|
+
*/
|
|
5269
|
+
Detail: Array<TimingDataItem>;
|
|
5270
|
+
/**
|
|
5271
|
+
* 最大值
|
|
5272
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5273
|
+
*/
|
|
5274
|
+
Max: number;
|
|
5275
|
+
/**
|
|
5276
|
+
* 平均值
|
|
5277
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5278
|
+
*/
|
|
5279
|
+
Avg: number;
|
|
5280
|
+
/**
|
|
5281
|
+
* 数据总和
|
|
5282
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5283
|
+
*/
|
|
5284
|
+
Sum: number;
|
|
5285
|
+
}
|
|
3918
5286
|
/**
|
|
3919
5287
|
* ReclaimZone请求参数结构体
|
|
3920
5288
|
*/
|
|
@@ -4015,6 +5383,43 @@ export interface ModifyDefaultCertificateResponse {
|
|
|
4015
5383
|
*/
|
|
4016
5384
|
RequestId?: string;
|
|
4017
5385
|
}
|
|
5386
|
+
/**
|
|
5387
|
+
* DescribeDDosAttackEvent请求参数结构体
|
|
5388
|
+
*/
|
|
5389
|
+
export interface DescribeDDosAttackEventRequest {
|
|
5390
|
+
/**
|
|
5391
|
+
* 开始时间
|
|
5392
|
+
*/
|
|
5393
|
+
StartTime: string;
|
|
5394
|
+
/**
|
|
5395
|
+
* 结束时间
|
|
5396
|
+
*/
|
|
5397
|
+
EndTime: string;
|
|
5398
|
+
/**
|
|
5399
|
+
* 条数
|
|
5400
|
+
*/
|
|
5401
|
+
PageSize: number;
|
|
5402
|
+
/**
|
|
5403
|
+
* 当前页
|
|
5404
|
+
*/
|
|
5405
|
+
PageNo: number;
|
|
5406
|
+
/**
|
|
5407
|
+
* ddos策略组id 集合
|
|
5408
|
+
*/
|
|
5409
|
+
PolicyIds?: Array<number>;
|
|
5410
|
+
/**
|
|
5411
|
+
* 站点集合
|
|
5412
|
+
*/
|
|
5413
|
+
ZoneIds?: Array<string>;
|
|
5414
|
+
/**
|
|
5415
|
+
* 协议类型,{tcp,udp,all}
|
|
5416
|
+
*/
|
|
5417
|
+
ProtocolType?: string;
|
|
5418
|
+
/**
|
|
5419
|
+
* 选填{Y、N},默认为Y;Y:展示,N:不展示
|
|
5420
|
+
*/
|
|
5421
|
+
IsShowDetail?: string;
|
|
5422
|
+
}
|
|
4018
5423
|
/**
|
|
4019
5424
|
* 客户端IP头部
|
|
4020
5425
|
*/
|
|
@@ -4138,45 +5543,352 @@ export interface DescribeZoneSettingResponse {
|
|
|
4138
5543
|
/**
|
|
4139
5544
|
* 站点域名
|
|
4140
5545
|
*/
|
|
4141
|
-
Zone: string;
|
|
5546
|
+
Zone: string;
|
|
5547
|
+
/**
|
|
5548
|
+
* WebSocket配置
|
|
5549
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5550
|
+
*/
|
|
5551
|
+
WebSocket: WebSocket;
|
|
5552
|
+
/**
|
|
5553
|
+
* 客户端IP回源请求头配置
|
|
5554
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5555
|
+
*/
|
|
5556
|
+
ClientIpHeader: ClientIp;
|
|
5557
|
+
/**
|
|
5558
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5559
|
+
*/
|
|
5560
|
+
RequestId?: string;
|
|
5561
|
+
}
|
|
5562
|
+
/**
|
|
5563
|
+
* AI规则引擎防护
|
|
5564
|
+
*/
|
|
5565
|
+
export interface AiRule {
|
|
5566
|
+
/**
|
|
5567
|
+
* smart_status_close-关闭;smart_status_open-拦截处置;
|
|
5568
|
+
smart_status_observe-观察处置
|
|
5569
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5570
|
+
*/
|
|
5571
|
+
Mode?: string;
|
|
5572
|
+
}
|
|
5573
|
+
/**
|
|
5574
|
+
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
5575
|
+
*/
|
|
5576
|
+
export interface MaxAge {
|
|
5577
|
+
/**
|
|
5578
|
+
* MaxAge 时间设置,单位秒,最大365天
|
|
5579
|
+
注意:时间为0,即不缓存。
|
|
5580
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5581
|
+
*/
|
|
5582
|
+
MaxAgeTime?: number;
|
|
5583
|
+
/**
|
|
5584
|
+
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
5585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5586
|
+
*/
|
|
5587
|
+
FollowOrigin?: string;
|
|
5588
|
+
}
|
|
5589
|
+
/**
|
|
5590
|
+
* DescribePurgeTasks请求参数结构体
|
|
5591
|
+
*/
|
|
5592
|
+
export interface DescribePurgeTasksRequest {
|
|
5593
|
+
/**
|
|
5594
|
+
* 任务ID
|
|
5595
|
+
*/
|
|
5596
|
+
JobId?: string;
|
|
5597
|
+
/**
|
|
5598
|
+
* 类型
|
|
5599
|
+
*/
|
|
5600
|
+
Type?: string;
|
|
5601
|
+
/**
|
|
5602
|
+
* 查询起始时间
|
|
5603
|
+
*/
|
|
5604
|
+
StartTime?: string;
|
|
5605
|
+
/**
|
|
5606
|
+
* 查询结束时间
|
|
5607
|
+
*/
|
|
5608
|
+
EndTime?: string;
|
|
5609
|
+
/**
|
|
5610
|
+
* 查询起始偏移量
|
|
5611
|
+
*/
|
|
5612
|
+
Offset?: number;
|
|
5613
|
+
/**
|
|
5614
|
+
* 查询最大返回的结果条数
|
|
5615
|
+
*/
|
|
5616
|
+
Limit?: number;
|
|
5617
|
+
/**
|
|
5618
|
+
* 查询的状态
|
|
5619
|
+
允许的值为:processing、success、failed、timeout、invalid
|
|
5620
|
+
*/
|
|
5621
|
+
Statuses?: Array<string>;
|
|
5622
|
+
/**
|
|
5623
|
+
* zone id
|
|
5624
|
+
*/
|
|
5625
|
+
ZoneId?: string;
|
|
5626
|
+
/**
|
|
5627
|
+
* 查询的域名列表
|
|
5628
|
+
*/
|
|
5629
|
+
Domains?: Array<string>;
|
|
5630
|
+
/**
|
|
5631
|
+
* 查询内容
|
|
5632
|
+
*/
|
|
5633
|
+
Target?: string;
|
|
5634
|
+
}
|
|
5635
|
+
/**
|
|
5636
|
+
* 查询条件
|
|
5637
|
+
*/
|
|
5638
|
+
export interface QueryCondition {
|
|
5639
|
+
/**
|
|
5640
|
+
* 维度
|
|
5641
|
+
*/
|
|
5642
|
+
Key: string;
|
|
5643
|
+
/**
|
|
5644
|
+
* 操作符
|
|
5645
|
+
*/
|
|
5646
|
+
Operator: string;
|
|
5647
|
+
/**
|
|
5648
|
+
* 维度值
|
|
5649
|
+
*/
|
|
5650
|
+
Value: Array<string>;
|
|
5651
|
+
}
|
|
5652
|
+
/**
|
|
5653
|
+
* DescribeDnsData请求参数结构体
|
|
5654
|
+
*/
|
|
5655
|
+
export interface DescribeDnsDataRequest {
|
|
5656
|
+
/**
|
|
5657
|
+
* 起始时间
|
|
5658
|
+
*/
|
|
5659
|
+
StartTime: string;
|
|
5660
|
+
/**
|
|
5661
|
+
* 结束时间
|
|
5662
|
+
*/
|
|
5663
|
+
EndTime: string;
|
|
5664
|
+
/**
|
|
5665
|
+
* 过滤参数
|
|
5666
|
+
*/
|
|
5667
|
+
Filters?: Array<DnsDataFilter>;
|
|
5668
|
+
/**
|
|
5669
|
+
* 时间粒度,默认为1分钟粒度,服务端根据时间范围自适应。
|
|
5670
|
+
支持指定以下几种粒度:
|
|
5671
|
+
min:1分钟粒度
|
|
5672
|
+
5min:5分钟粒度
|
|
5673
|
+
hour:1小时粒度
|
|
5674
|
+
day:天粒度
|
|
5675
|
+
*/
|
|
5676
|
+
Interval?: string;
|
|
5677
|
+
}
|
|
5678
|
+
/**
|
|
5679
|
+
* 缓存规则配置。
|
|
5680
|
+
*/
|
|
5681
|
+
export interface CacheConfig {
|
|
5682
|
+
/**
|
|
5683
|
+
* 缓存配置
|
|
5684
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5685
|
+
*/
|
|
5686
|
+
Cache?: CacheConfigCache;
|
|
5687
|
+
/**
|
|
5688
|
+
* 不缓存配置
|
|
5689
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5690
|
+
*/
|
|
5691
|
+
NoCache?: CacheConfigNoCache;
|
|
5692
|
+
/**
|
|
5693
|
+
* 遵循源站配置
|
|
5694
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5695
|
+
*/
|
|
5696
|
+
FollowOrigin?: CacheConfigFollowOrigin;
|
|
5697
|
+
}
|
|
5698
|
+
/**
|
|
5699
|
+
* DescribeDDosAttackEventDetail返回参数结构体
|
|
5700
|
+
*/
|
|
5701
|
+
export interface DescribeDDosAttackEventDetailResponse {
|
|
5702
|
+
/**
|
|
5703
|
+
* DDos攻击事件详情
|
|
5704
|
+
*/
|
|
5705
|
+
Data: DDosAttackEventDetailData;
|
|
5706
|
+
/**
|
|
5707
|
+
* 状态,1:失败,0:成功
|
|
5708
|
+
*/
|
|
5709
|
+
Status: number;
|
|
5710
|
+
/**
|
|
5711
|
+
* 返回信息
|
|
5712
|
+
*/
|
|
5713
|
+
Msg: string;
|
|
5714
|
+
/**
|
|
5715
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5716
|
+
*/
|
|
5717
|
+
RequestId?: string;
|
|
5718
|
+
}
|
|
5719
|
+
/**
|
|
5720
|
+
* ModifyApplicationProxyRule请求参数结构体
|
|
5721
|
+
*/
|
|
5722
|
+
export interface ModifyApplicationProxyRuleRequest {
|
|
5723
|
+
/**
|
|
5724
|
+
* 站点ID
|
|
5725
|
+
*/
|
|
5726
|
+
ZoneId: string;
|
|
5727
|
+
/**
|
|
5728
|
+
* 代理ID
|
|
5729
|
+
*/
|
|
5730
|
+
ProxyId: string;
|
|
5731
|
+
/**
|
|
5732
|
+
* 规则ID
|
|
5733
|
+
*/
|
|
5734
|
+
RuleId: string;
|
|
5735
|
+
/**
|
|
5736
|
+
* 协议,取值为TCP或者UDP
|
|
5737
|
+
*/
|
|
5738
|
+
Proto: string;
|
|
5739
|
+
/**
|
|
5740
|
+
* 端口,支持格式:
|
|
5741
|
+
80:80端口
|
|
5742
|
+
81-90:81至90端口
|
|
5743
|
+
*/
|
|
5744
|
+
Port: Array<string>;
|
|
5745
|
+
/**
|
|
5746
|
+
* 源站类型,取值:
|
|
5747
|
+
custom:手动添加
|
|
5748
|
+
origins:源站组
|
|
5749
|
+
load_balancing:负载均衡
|
|
5750
|
+
*/
|
|
5751
|
+
OriginType: string;
|
|
5752
|
+
/**
|
|
5753
|
+
* 源站信息:
|
|
5754
|
+
当OriginType=custom时,表示多个:
|
|
5755
|
+
IP:端口
|
|
5756
|
+
域名:端口
|
|
5757
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
5758
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
5759
|
+
*/
|
|
5760
|
+
OriginValue: Array<string>;
|
|
5761
|
+
/**
|
|
5762
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
5763
|
+
TOA:TOA
|
|
5764
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
5765
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
5766
|
+
OFF:不传递
|
|
5767
|
+
当Proto=UDP时,取值:
|
|
5768
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
5769
|
+
OFF:不传递
|
|
5770
|
+
*/
|
|
5771
|
+
ForwardClientIp?: string;
|
|
5772
|
+
/**
|
|
5773
|
+
* 是否开启会话保持
|
|
5774
|
+
*/
|
|
5775
|
+
SessionPersist?: boolean;
|
|
5776
|
+
}
|
|
5777
|
+
/**
|
|
5778
|
+
* ModifyDDoSPolicy请求参数结构体
|
|
5779
|
+
*/
|
|
5780
|
+
export interface ModifyDDoSPolicyRequest {
|
|
5781
|
+
/**
|
|
5782
|
+
* 策略组ID
|
|
5783
|
+
*/
|
|
5784
|
+
PolicyId: number;
|
|
5785
|
+
/**
|
|
5786
|
+
* 一级域名
|
|
5787
|
+
*/
|
|
5788
|
+
ZoneId: string;
|
|
5789
|
+
/**
|
|
5790
|
+
* DDoS具体防护配置
|
|
5791
|
+
*/
|
|
5792
|
+
DdosRule?: DdosRule;
|
|
5793
|
+
}
|
|
5794
|
+
/**
|
|
5795
|
+
* ModifyZoneCnameSpeedUp返回参数结构体
|
|
5796
|
+
*/
|
|
5797
|
+
export interface ModifyZoneCnameSpeedUpResponse {
|
|
5798
|
+
/**
|
|
5799
|
+
* 站点 ID
|
|
5800
|
+
*/
|
|
5801
|
+
Id: string;
|
|
5802
|
+
/**
|
|
5803
|
+
* 站点名称
|
|
5804
|
+
*/
|
|
5805
|
+
Name: string;
|
|
5806
|
+
/**
|
|
5807
|
+
* CNAME 加速状态
|
|
5808
|
+
- enabled 开启
|
|
5809
|
+
- disabled 关闭
|
|
5810
|
+
*/
|
|
5811
|
+
Status: string;
|
|
5812
|
+
/**
|
|
5813
|
+
* 更新时间
|
|
5814
|
+
*/
|
|
5815
|
+
ModifiedOn: string;
|
|
5816
|
+
/**
|
|
5817
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5818
|
+
*/
|
|
5819
|
+
RequestId?: string;
|
|
5820
|
+
}
|
|
5821
|
+
/**
|
|
5822
|
+
* DescribeWebProtectionLog请求参数结构体
|
|
5823
|
+
*/
|
|
5824
|
+
export interface DescribeWebProtectionLogRequest {
|
|
5825
|
+
/**
|
|
5826
|
+
* 起始时间
|
|
5827
|
+
*/
|
|
5828
|
+
StartTime: string;
|
|
5829
|
+
/**
|
|
5830
|
+
* 结束时间
|
|
5831
|
+
*/
|
|
5832
|
+
EndTime: string;
|
|
5833
|
+
/**
|
|
5834
|
+
* 每页条数
|
|
5835
|
+
*/
|
|
5836
|
+
PageSize: number;
|
|
5837
|
+
/**
|
|
5838
|
+
* 当前页
|
|
5839
|
+
*/
|
|
5840
|
+
PageNo: number;
|
|
5841
|
+
/**
|
|
5842
|
+
* 站点集合
|
|
5843
|
+
*/
|
|
5844
|
+
ZoneIds?: Array<string>;
|
|
5845
|
+
/**
|
|
5846
|
+
* 域名集合
|
|
5847
|
+
*/
|
|
5848
|
+
Domains?: Array<string>;
|
|
5849
|
+
/**
|
|
5850
|
+
* 查询条件
|
|
5851
|
+
*/
|
|
5852
|
+
QueryCondition?: Array<QueryCondition>;
|
|
5853
|
+
}
|
|
5854
|
+
/**
|
|
5855
|
+
* 限速拦截日志
|
|
5856
|
+
*/
|
|
5857
|
+
export interface CCLogData {
|
|
4142
5858
|
/**
|
|
4143
|
-
*
|
|
5859
|
+
* CC拦截日志数据集合
|
|
4144
5860
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4145
5861
|
*/
|
|
4146
|
-
|
|
5862
|
+
List: Array<CCLog>;
|
|
4147
5863
|
/**
|
|
4148
|
-
*
|
|
5864
|
+
* 当前页
|
|
4149
5865
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4150
5866
|
*/
|
|
4151
|
-
|
|
5867
|
+
PageNo: number;
|
|
4152
5868
|
/**
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
/**
|
|
4158
|
-
* AI规则引擎防护
|
|
4159
|
-
*/
|
|
4160
|
-
export interface AiRule {
|
|
5869
|
+
* 每页展示条数
|
|
5870
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5871
|
+
*/
|
|
5872
|
+
PageSize: number;
|
|
4161
5873
|
/**
|
|
4162
|
-
*
|
|
4163
|
-
smart_status_observe-观察处置
|
|
5874
|
+
* 总页数
|
|
4164
5875
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4165
5876
|
*/
|
|
4166
|
-
|
|
5877
|
+
Pages: number;
|
|
5878
|
+
/**
|
|
5879
|
+
* 总条数
|
|
5880
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5881
|
+
*/
|
|
5882
|
+
TotalSize: number;
|
|
4167
5883
|
}
|
|
4168
5884
|
/**
|
|
4169
|
-
*
|
|
5885
|
+
* DescribePrefetchTasks请求参数结构体
|
|
4170
5886
|
*/
|
|
4171
|
-
export interface
|
|
5887
|
+
export interface DescribePrefetchTasksRequest {
|
|
4172
5888
|
/**
|
|
4173
5889
|
* 任务ID
|
|
4174
5890
|
*/
|
|
4175
5891
|
JobId?: string;
|
|
4176
|
-
/**
|
|
4177
|
-
* 类型
|
|
4178
|
-
*/
|
|
4179
|
-
Type?: string;
|
|
4180
5892
|
/**
|
|
4181
5893
|
* 查询起始时间
|
|
4182
5894
|
*/
|
|
@@ -4207,117 +5919,38 @@ export interface DescribePurgeTasksRequest {
|
|
|
4207
5919
|
*/
|
|
4208
5920
|
Domains?: Array<string>;
|
|
4209
5921
|
/**
|
|
4210
|
-
*
|
|
5922
|
+
* 查询的资源
|
|
4211
5923
|
*/
|
|
4212
5924
|
Target?: string;
|
|
4213
5925
|
}
|
|
4214
5926
|
/**
|
|
4215
|
-
*
|
|
4216
|
-
*/
|
|
4217
|
-
export interface IdentifyZoneRequest {
|
|
4218
|
-
/**
|
|
4219
|
-
* 站点名称
|
|
4220
|
-
*/
|
|
4221
|
-
Name: string;
|
|
4222
|
-
}
|
|
4223
|
-
/**
|
|
4224
|
-
* 缓存规则配置。
|
|
4225
|
-
*/
|
|
4226
|
-
export interface CacheConfig {
|
|
4227
|
-
/**
|
|
4228
|
-
* 缓存配置
|
|
4229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4230
|
-
*/
|
|
4231
|
-
Cache?: CacheConfigCache;
|
|
4232
|
-
/**
|
|
4233
|
-
* 不缓存配置
|
|
4234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4235
|
-
*/
|
|
4236
|
-
NoCache?: CacheConfigNoCache;
|
|
4237
|
-
/**
|
|
4238
|
-
* 遵循源站配置
|
|
4239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4240
|
-
*/
|
|
4241
|
-
FollowOrigin?: CacheConfigFollowOrigin;
|
|
4242
|
-
}
|
|
4243
|
-
/**
|
|
4244
|
-
* ModifyDDoSPolicy请求参数结构体
|
|
4245
|
-
*/
|
|
4246
|
-
export interface ModifyDDoSPolicyRequest {
|
|
4247
|
-
/**
|
|
4248
|
-
* 策略组ID
|
|
4249
|
-
*/
|
|
4250
|
-
PolicyId: number;
|
|
4251
|
-
/**
|
|
4252
|
-
* 一级域名
|
|
4253
|
-
*/
|
|
4254
|
-
ZoneId: string;
|
|
4255
|
-
/**
|
|
4256
|
-
* DDoS具体防护配置
|
|
4257
|
-
*/
|
|
4258
|
-
DdosRule?: DdosRule;
|
|
4259
|
-
}
|
|
4260
|
-
/**
|
|
4261
|
-
* ModifyZoneCnameSpeedUp返回参数结构体
|
|
5927
|
+
* 内容管理任务结果
|
|
4262
5928
|
*/
|
|
4263
|
-
export interface
|
|
5929
|
+
export interface Task {
|
|
4264
5930
|
/**
|
|
4265
|
-
*
|
|
5931
|
+
* 任务ID
|
|
4266
5932
|
*/
|
|
4267
|
-
|
|
5933
|
+
JobId: string;
|
|
4268
5934
|
/**
|
|
4269
|
-
*
|
|
5935
|
+
* 状态
|
|
4270
5936
|
*/
|
|
4271
|
-
Name: string;
|
|
4272
|
-
/**
|
|
4273
|
-
* CNAME 加速状态
|
|
4274
|
-
- enabled 开启
|
|
4275
|
-
- disabled 关闭
|
|
4276
|
-
*/
|
|
4277
5937
|
Status: string;
|
|
4278
5938
|
/**
|
|
4279
|
-
*
|
|
5939
|
+
* 资源
|
|
4280
5940
|
*/
|
|
4281
|
-
|
|
5941
|
+
Target: string;
|
|
4282
5942
|
/**
|
|
4283
|
-
*
|
|
5943
|
+
* 任务类型
|
|
4284
5944
|
*/
|
|
4285
|
-
|
|
4286
|
-
}
|
|
4287
|
-
/**
|
|
4288
|
-
* 站点查询过滤条件
|
|
4289
|
-
*/
|
|
4290
|
-
export interface ZoneFilter {
|
|
4291
|
-
/**
|
|
4292
|
-
* 过滤字段名,支持的列表如下:
|
|
4293
|
-
- name: 站点名。
|
|
4294
|
-
- status: 站点状态
|
|
4295
|
-
*/
|
|
4296
|
-
Name: string;
|
|
5945
|
+
Type: string;
|
|
4297
5946
|
/**
|
|
4298
|
-
*
|
|
5947
|
+
* 任务创建时间
|
|
4299
5948
|
*/
|
|
4300
|
-
|
|
5949
|
+
CreateTime: string;
|
|
4301
5950
|
/**
|
|
4302
|
-
*
|
|
5951
|
+
* 任务完成时间
|
|
4303
5952
|
*/
|
|
4304
|
-
|
|
4305
|
-
}
|
|
4306
|
-
/**
|
|
4307
|
-
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
4308
|
-
*/
|
|
4309
|
-
export interface MaxAge {
|
|
4310
|
-
/**
|
|
4311
|
-
* MaxAge 时间设置,单位秒,最大365天
|
|
4312
|
-
注意:时间为0,即不缓存。
|
|
4313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4314
|
-
*/
|
|
4315
|
-
MaxAgeTime?: number;
|
|
4316
|
-
/**
|
|
4317
|
-
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
4318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4319
|
-
*/
|
|
4320
|
-
FollowOrigin?: string;
|
|
5953
|
+
UpdateTime: string;
|
|
4321
5954
|
}
|
|
4322
5955
|
/**
|
|
4323
5956
|
* DeleteDnsRecords请求参数结构体
|
|
@@ -4383,43 +6016,46 @@ export interface DescribeZoneDDoSPolicyResponse {
|
|
|
4383
6016
|
RequestId?: string;
|
|
4384
6017
|
}
|
|
4385
6018
|
/**
|
|
4386
|
-
*
|
|
6019
|
+
* CNAME 状态
|
|
4387
6020
|
*/
|
|
4388
|
-
export interface
|
|
6021
|
+
export interface CnameStatus {
|
|
4389
6022
|
/**
|
|
4390
|
-
*
|
|
6023
|
+
* 记录名称
|
|
4391
6024
|
*/
|
|
4392
|
-
|
|
6025
|
+
Name: string;
|
|
4393
6026
|
/**
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
6027
|
+
* CNAME 地址
|
|
6028
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6029
|
+
*/
|
|
6030
|
+
Cname: string;
|
|
6031
|
+
/**
|
|
6032
|
+
* 状态
|
|
6033
|
+
生效:active
|
|
6034
|
+
不生效:moved
|
|
6035
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6036
|
+
*/
|
|
6037
|
+
Status: string;
|
|
4397
6038
|
}
|
|
4398
6039
|
/**
|
|
4399
|
-
*
|
|
6040
|
+
* DescribeDDosMajorAttackEvent返回参数结构体
|
|
4400
6041
|
*/
|
|
4401
|
-
export interface
|
|
6042
|
+
export interface DescribeDDosMajorAttackEventResponse {
|
|
4402
6043
|
/**
|
|
4403
|
-
*
|
|
6044
|
+
* DDos查询主攻击事件
|
|
4404
6045
|
*/
|
|
4405
|
-
|
|
6046
|
+
Data: DDosMajorAttackEventData;
|
|
4406
6047
|
/**
|
|
4407
|
-
*
|
|
6048
|
+
* 状态,1:失败,0:成功
|
|
4408
6049
|
*/
|
|
4409
|
-
|
|
6050
|
+
Status: number;
|
|
4410
6051
|
/**
|
|
4411
|
-
*
|
|
6052
|
+
* 返回消息
|
|
4412
6053
|
*/
|
|
4413
|
-
|
|
6054
|
+
Msg: string;
|
|
4414
6055
|
/**
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
5min:5分钟粒度
|
|
4419
|
-
hour:1小时粒度
|
|
4420
|
-
day:天粒度
|
|
4421
|
-
*/
|
|
4422
|
-
Interval?: string;
|
|
6056
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6057
|
+
*/
|
|
6058
|
+
RequestId?: string;
|
|
4423
6059
|
}
|
|
4424
6060
|
/**
|
|
4425
6061
|
* DDoS特征过滤
|
|
@@ -4510,6 +6146,27 @@ export interface DDoSFeaturesFilter {
|
|
|
4510
6146
|
*/
|
|
4511
6147
|
MatchBegin2?: string;
|
|
4512
6148
|
}
|
|
6149
|
+
/**
|
|
6150
|
+
* DescribeWebProtectionAttackEvents返回参数结构体
|
|
6151
|
+
*/
|
|
6152
|
+
export interface DescribeWebProtectionAttackEventsResponse {
|
|
6153
|
+
/**
|
|
6154
|
+
* DDos攻击事件数据
|
|
6155
|
+
*/
|
|
6156
|
+
Data: CCInterceptEventData;
|
|
6157
|
+
/**
|
|
6158
|
+
* 状态,1:失败,0:成功
|
|
6159
|
+
*/
|
|
6160
|
+
Status: number;
|
|
6161
|
+
/**
|
|
6162
|
+
* 返回消息
|
|
6163
|
+
*/
|
|
6164
|
+
Msg: string;
|
|
6165
|
+
/**
|
|
6166
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6167
|
+
*/
|
|
6168
|
+
RequestId?: string;
|
|
6169
|
+
}
|
|
4513
6170
|
/**
|
|
4514
6171
|
* CreatePurgeTask请求参数结构体
|
|
4515
6172
|
*/
|
|
@@ -4624,6 +6281,39 @@ export interface DescribeApplicationProxyDetailResponse {
|
|
|
4624
6281
|
*/
|
|
4625
6282
|
RequestId?: string;
|
|
4626
6283
|
}
|
|
6284
|
+
/**
|
|
6285
|
+
* DescribeBotLog请求参数结构体
|
|
6286
|
+
*/
|
|
6287
|
+
export interface DescribeBotLogRequest {
|
|
6288
|
+
/**
|
|
6289
|
+
* 起始时间
|
|
6290
|
+
*/
|
|
6291
|
+
StartTime: string;
|
|
6292
|
+
/**
|
|
6293
|
+
* 结束时间
|
|
6294
|
+
*/
|
|
6295
|
+
EndTime: string;
|
|
6296
|
+
/**
|
|
6297
|
+
* 每页条数
|
|
6298
|
+
*/
|
|
6299
|
+
PageSize: number;
|
|
6300
|
+
/**
|
|
6301
|
+
* 当前页
|
|
6302
|
+
*/
|
|
6303
|
+
PageNo: number;
|
|
6304
|
+
/**
|
|
6305
|
+
* 站点集合
|
|
6306
|
+
*/
|
|
6307
|
+
ZoneIds?: Array<string>;
|
|
6308
|
+
/**
|
|
6309
|
+
* 域名集合
|
|
6310
|
+
*/
|
|
6311
|
+
Domains?: Array<string>;
|
|
6312
|
+
/**
|
|
6313
|
+
* 查询条件
|
|
6314
|
+
*/
|
|
6315
|
+
QueryCondition?: Array<QueryCondition>;
|
|
6316
|
+
}
|
|
4627
6317
|
/**
|
|
4628
6318
|
* DownloadL7Logs返回参数结构体
|
|
4629
6319
|
*/
|
|
@@ -4639,24 +6329,61 @@ export interface DownloadL7LogsResponse {
|
|
|
4639
6329
|
*/
|
|
4640
6330
|
PageSize: number;
|
|
4641
6331
|
/**
|
|
4642
|
-
* 页号
|
|
4643
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4644
|
-
*/
|
|
4645
|
-
PageNo: number;
|
|
6332
|
+
* 页号
|
|
6333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6334
|
+
*/
|
|
6335
|
+
PageNo: number;
|
|
6336
|
+
/**
|
|
6337
|
+
* 总页数
|
|
6338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6339
|
+
*/
|
|
6340
|
+
Pages: number;
|
|
6341
|
+
/**
|
|
6342
|
+
* 总条数
|
|
6343
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6344
|
+
*/
|
|
6345
|
+
TotalSize: number;
|
|
6346
|
+
/**
|
|
6347
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6348
|
+
*/
|
|
6349
|
+
RequestId?: string;
|
|
6350
|
+
}
|
|
6351
|
+
/**
|
|
6352
|
+
* ddos 攻击事件的详情
|
|
6353
|
+
*/
|
|
6354
|
+
export interface DDosAttackEventDetailData {
|
|
6355
|
+
/**
|
|
6356
|
+
* 攻击状态
|
|
6357
|
+
*/
|
|
6358
|
+
AttackStatus: number;
|
|
6359
|
+
/**
|
|
6360
|
+
* 攻击类型
|
|
6361
|
+
*/
|
|
6362
|
+
AttackType: string;
|
|
6363
|
+
/**
|
|
6364
|
+
* 结束时间
|
|
6365
|
+
*/
|
|
6366
|
+
EndTime: number;
|
|
6367
|
+
/**
|
|
6368
|
+
* 开始时间
|
|
6369
|
+
*/
|
|
6370
|
+
StartTime: number;
|
|
6371
|
+
/**
|
|
6372
|
+
* 最大带宽
|
|
6373
|
+
*/
|
|
6374
|
+
MaxBandWidth: number;
|
|
4646
6375
|
/**
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
Pages: number;
|
|
6376
|
+
* 最大包速率
|
|
6377
|
+
*/
|
|
6378
|
+
PacketMaxRate: number;
|
|
4651
6379
|
/**
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
TotalSize: number;
|
|
6380
|
+
* 事件Id
|
|
6381
|
+
*/
|
|
6382
|
+
EventId: string;
|
|
4656
6383
|
/**
|
|
4657
|
-
*
|
|
6384
|
+
* ddos 策略组id
|
|
4658
6385
|
*/
|
|
4659
|
-
|
|
6386
|
+
PolicyId: number;
|
|
4660
6387
|
}
|
|
4661
6388
|
/**
|
|
4662
6389
|
* CreateOriginGroup请求参数结构体
|
|
@@ -4688,6 +6415,43 @@ export interface CreateOriginGroupRequest {
|
|
|
4688
6415
|
*/
|
|
4689
6416
|
OriginType?: string;
|
|
4690
6417
|
}
|
|
6418
|
+
/**
|
|
6419
|
+
* DescribeTimingL4Data请求参数结构体
|
|
6420
|
+
*/
|
|
6421
|
+
export interface DescribeTimingL4DataRequest {
|
|
6422
|
+
/**
|
|
6423
|
+
* RFC3339格式,客户端时间
|
|
6424
|
+
*/
|
|
6425
|
+
StartTime: string;
|
|
6426
|
+
/**
|
|
6427
|
+
* RFC3339格式,客户端时间
|
|
6428
|
+
*/
|
|
6429
|
+
EndTime: string;
|
|
6430
|
+
/**
|
|
6431
|
+
* 指标列表
|
|
6432
|
+
*/
|
|
6433
|
+
MetricNames: Array<string>;
|
|
6434
|
+
/**
|
|
6435
|
+
* ZoneId列表,仅在zone/instance维度下查询时该参数有效
|
|
6436
|
+
*/
|
|
6437
|
+
ZoneIds?: Array<string>;
|
|
6438
|
+
/**
|
|
6439
|
+
* InstanceId列表,仅在Instance维度下查询时该参数有效
|
|
6440
|
+
*/
|
|
6441
|
+
InstanceIds?: Array<string>;
|
|
6442
|
+
/**
|
|
6443
|
+
* 协议类型, 该字段当前无效
|
|
6444
|
+
*/
|
|
6445
|
+
Protocol?: string;
|
|
6446
|
+
/**
|
|
6447
|
+
* 时间间隔,选填{min, 5min, hour, day}
|
|
6448
|
+
*/
|
|
6449
|
+
Interval?: string;
|
|
6450
|
+
/**
|
|
6451
|
+
* 规则ID,仅在instance维度有效
|
|
6452
|
+
*/
|
|
6453
|
+
RuleId?: string;
|
|
6454
|
+
}
|
|
4691
6455
|
/**
|
|
4692
6456
|
* DescribeHostsSetting请求参数结构体
|
|
4693
6457
|
*/
|
|
@@ -4718,6 +6482,65 @@ export interface DescribeZoneDDoSPolicyRequest {
|
|
|
4718
6482
|
*/
|
|
4719
6483
|
ZoneId?: string;
|
|
4720
6484
|
}
|
|
6485
|
+
/**
|
|
6486
|
+
* DescribeDDosAttackData返回参数结构体
|
|
6487
|
+
*/
|
|
6488
|
+
export interface DescribeDDosAttackDataResponse {
|
|
6489
|
+
/**
|
|
6490
|
+
* DDos攻击数据
|
|
6491
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6492
|
+
*/
|
|
6493
|
+
Data: Array<SecEntry>;
|
|
6494
|
+
/**
|
|
6495
|
+
* 状态,1:失败,0:成功
|
|
6496
|
+
*/
|
|
6497
|
+
Status: number;
|
|
6498
|
+
/**
|
|
6499
|
+
* 返回数据
|
|
6500
|
+
*/
|
|
6501
|
+
Msg: string;
|
|
6502
|
+
/**
|
|
6503
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
6504
|
+
*/
|
|
6505
|
+
Interval: string;
|
|
6506
|
+
/**
|
|
6507
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6508
|
+
*/
|
|
6509
|
+
RequestId?: string;
|
|
6510
|
+
}
|
|
6511
|
+
/**
|
|
6512
|
+
* DescribeWebManagedRulesLog请求参数结构体
|
|
6513
|
+
*/
|
|
6514
|
+
export interface DescribeWebManagedRulesLogRequest {
|
|
6515
|
+
/**
|
|
6516
|
+
* 起始时间
|
|
6517
|
+
*/
|
|
6518
|
+
StartTime: string;
|
|
6519
|
+
/**
|
|
6520
|
+
* 结束时间
|
|
6521
|
+
*/
|
|
6522
|
+
EndTime: string;
|
|
6523
|
+
/**
|
|
6524
|
+
* 每页条数
|
|
6525
|
+
*/
|
|
6526
|
+
PageSize: number;
|
|
6527
|
+
/**
|
|
6528
|
+
* 当前页
|
|
6529
|
+
*/
|
|
6530
|
+
PageNo: number;
|
|
6531
|
+
/**
|
|
6532
|
+
* 站点集合
|
|
6533
|
+
*/
|
|
6534
|
+
ZoneIds?: Array<string>;
|
|
6535
|
+
/**
|
|
6536
|
+
* 域名集合
|
|
6537
|
+
*/
|
|
6538
|
+
Domains?: Array<string>;
|
|
6539
|
+
/**
|
|
6540
|
+
* 查询条件
|
|
6541
|
+
*/
|
|
6542
|
+
QueryCondition?: Array<QueryCondition>;
|
|
6543
|
+
}
|
|
4721
6544
|
/**
|
|
4722
6545
|
* CreateApplicationProxyRules返回参数结构体
|
|
4723
6546
|
*/
|
|
@@ -4731,6 +6554,51 @@ export interface CreateApplicationProxyRulesResponse {
|
|
|
4731
6554
|
*/
|
|
4732
6555
|
RequestId?: string;
|
|
4733
6556
|
}
|
|
6557
|
+
/**
|
|
6558
|
+
* DescribeWebManagedRulesTopData请求参数结构体
|
|
6559
|
+
*/
|
|
6560
|
+
export interface DescribeWebManagedRulesTopDataRequest {
|
|
6561
|
+
/**
|
|
6562
|
+
* 开始时间
|
|
6563
|
+
*/
|
|
6564
|
+
StartTime: string;
|
|
6565
|
+
/**
|
|
6566
|
+
* 结束时间
|
|
6567
|
+
*/
|
|
6568
|
+
EndTime: string;
|
|
6569
|
+
/**
|
|
6570
|
+
* 过滤指标
|
|
6571
|
+
*/
|
|
6572
|
+
MetricName: string;
|
|
6573
|
+
/**
|
|
6574
|
+
* 查询前多少名,传值为0 全量
|
|
6575
|
+
*/
|
|
6576
|
+
Limit: number;
|
|
6577
|
+
/**
|
|
6578
|
+
* 站点集合
|
|
6579
|
+
*/
|
|
6580
|
+
ZoneIds?: Array<string>;
|
|
6581
|
+
/**
|
|
6582
|
+
* ddos策略组id 集合
|
|
6583
|
+
*/
|
|
6584
|
+
PolicyIds?: Array<number>;
|
|
6585
|
+
/**
|
|
6586
|
+
* 端口号
|
|
6587
|
+
*/
|
|
6588
|
+
Port?: number;
|
|
6589
|
+
/**
|
|
6590
|
+
* 协议类型,tcp,udp,all
|
|
6591
|
+
*/
|
|
6592
|
+
ProtocolType?: string;
|
|
6593
|
+
/**
|
|
6594
|
+
* 攻击类型,flood,icmpFlood......,all
|
|
6595
|
+
*/
|
|
6596
|
+
AttackType?: string;
|
|
6597
|
+
/**
|
|
6598
|
+
* 域名集合
|
|
6599
|
+
*/
|
|
6600
|
+
Domains?: Array<string>;
|
|
6601
|
+
}
|
|
4734
6602
|
/**
|
|
4735
6603
|
* DescribeIdentification返回参数结构体
|
|
4736
6604
|
*/
|
|
@@ -4768,52 +6636,49 @@ export interface DescribeIdentificationResponse {
|
|
|
4768
6636
|
RequestId?: string;
|
|
4769
6637
|
}
|
|
4770
6638
|
/**
|
|
4771
|
-
*
|
|
6639
|
+
* DDos主攻击事件
|
|
4772
6640
|
*/
|
|
4773
|
-
export interface
|
|
6641
|
+
export interface DDosMajorAttackEvent {
|
|
4774
6642
|
/**
|
|
4775
|
-
*
|
|
6643
|
+
* ddos 策略组id
|
|
4776
6644
|
*/
|
|
4777
|
-
|
|
6645
|
+
PolicyId: number;
|
|
4778
6646
|
/**
|
|
4779
|
-
*
|
|
6647
|
+
* 攻击最大带宽
|
|
4780
6648
|
*/
|
|
4781
|
-
|
|
6649
|
+
AttackMaxBandWidth: number;
|
|
4782
6650
|
/**
|
|
4783
|
-
*
|
|
6651
|
+
* 攻击时间 单位为s
|
|
4784
6652
|
*/
|
|
4785
|
-
|
|
6653
|
+
AttackTime: number;
|
|
6654
|
+
}
|
|
6655
|
+
/**
|
|
6656
|
+
* ModifyZoneCnameSpeedUp请求参数结构体
|
|
6657
|
+
*/
|
|
6658
|
+
export interface ModifyZoneCnameSpeedUpRequest {
|
|
4786
6659
|
/**
|
|
4787
|
-
*
|
|
6660
|
+
* 站点 ID
|
|
4788
6661
|
*/
|
|
4789
|
-
|
|
6662
|
+
Id: string;
|
|
4790
6663
|
/**
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
6664
|
+
* CNAME 加速状态
|
|
6665
|
+
- enabled 开启
|
|
6666
|
+
- disabled 关闭
|
|
6667
|
+
*/
|
|
6668
|
+
Status: string;
|
|
6669
|
+
}
|
|
6670
|
+
/**
|
|
6671
|
+
* ModifyLoadBalancing返回参数结构体
|
|
6672
|
+
*/
|
|
6673
|
+
export interface ModifyLoadBalancingResponse {
|
|
4794
6674
|
/**
|
|
4795
|
-
*
|
|
6675
|
+
* 负载均衡ID
|
|
4796
6676
|
*/
|
|
4797
|
-
|
|
6677
|
+
LoadBalancingId: string;
|
|
4798
6678
|
/**
|
|
4799
|
-
*
|
|
6679
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4800
6680
|
*/
|
|
4801
|
-
|
|
4802
|
-
/**
|
|
4803
|
-
* 源站类型
|
|
4804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4805
|
-
*/
|
|
4806
|
-
OriginType: string;
|
|
4807
|
-
/**
|
|
4808
|
-
* 是否为四层代理使用
|
|
4809
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4810
|
-
*/
|
|
4811
|
-
ApplicationProxyUsed: boolean;
|
|
4812
|
-
/**
|
|
4813
|
-
* 是否为负载均衡使用
|
|
4814
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4815
|
-
*/
|
|
4816
|
-
LoadBalancingUsed: boolean;
|
|
6681
|
+
RequestId?: string;
|
|
4817
6682
|
}
|
|
4818
6683
|
/**
|
|
4819
6684
|
* DDoS黑白名单
|
|
@@ -4850,6 +6715,27 @@ export interface DDoSUserAllowBlockIP {
|
|
|
4850
6715
|
*/
|
|
4851
6716
|
Mask2?: number;
|
|
4852
6717
|
}
|
|
6718
|
+
/**
|
|
6719
|
+
* DescribeBotLog返回参数结构体
|
|
6720
|
+
*/
|
|
6721
|
+
export interface DescribeBotLogResponse {
|
|
6722
|
+
/**
|
|
6723
|
+
* Bot攻击Data
|
|
6724
|
+
*/
|
|
6725
|
+
Data: BotLogData;
|
|
6726
|
+
/**
|
|
6727
|
+
* 状态,1:失败,0:成功
|
|
6728
|
+
*/
|
|
6729
|
+
Status: number;
|
|
6730
|
+
/**
|
|
6731
|
+
* 返回信息
|
|
6732
|
+
*/
|
|
6733
|
+
Msg: string;
|
|
6734
|
+
/**
|
|
6735
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6736
|
+
*/
|
|
6737
|
+
RequestId?: string;
|
|
6738
|
+
}
|
|
4853
6739
|
/**
|
|
4854
6740
|
* DescribeLoadBalancing返回参数结构体
|
|
4855
6741
|
*/
|
|
@@ -4867,6 +6753,32 @@ export interface DescribeLoadBalancingResponse {
|
|
|
4867
6753
|
*/
|
|
4868
6754
|
RequestId?: string;
|
|
4869
6755
|
}
|
|
6756
|
+
/**
|
|
6757
|
+
* DescribeWebProtectionData返回参数结构体
|
|
6758
|
+
*/
|
|
6759
|
+
export interface DescribeWebProtectionDataResponse {
|
|
6760
|
+
/**
|
|
6761
|
+
* 数据详情
|
|
6762
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6763
|
+
*/
|
|
6764
|
+
Data: Array<SecEntry>;
|
|
6765
|
+
/**
|
|
6766
|
+
* 状态,1:失败,0:成功
|
|
6767
|
+
*/
|
|
6768
|
+
Status: number;
|
|
6769
|
+
/**
|
|
6770
|
+
* 消息
|
|
6771
|
+
*/
|
|
6772
|
+
Msg: string;
|
|
6773
|
+
/**
|
|
6774
|
+
* 查询时间粒度,可选{min,5min,hour,day}
|
|
6775
|
+
*/
|
|
6776
|
+
Interval: string;
|
|
6777
|
+
/**
|
|
6778
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6779
|
+
*/
|
|
6780
|
+
RequestId?: string;
|
|
6781
|
+
}
|
|
4870
6782
|
/**
|
|
4871
6783
|
* ModifyDnssec返回参数结构体
|
|
4872
6784
|
*/
|
|
@@ -5143,6 +7055,50 @@ export interface OfflineCache {
|
|
|
5143
7055
|
*/
|
|
5144
7056
|
Switch: string;
|
|
5145
7057
|
}
|
|
7058
|
+
/**
|
|
7059
|
+
* DescribeOriginGroupDetail请求参数结构体
|
|
7060
|
+
*/
|
|
7061
|
+
export interface DescribeOriginGroupDetailRequest {
|
|
7062
|
+
/**
|
|
7063
|
+
* 源站组ID
|
|
7064
|
+
*/
|
|
7065
|
+
OriginId: string;
|
|
7066
|
+
/**
|
|
7067
|
+
* 站点ID
|
|
7068
|
+
*/
|
|
7069
|
+
ZoneId: string;
|
|
7070
|
+
}
|
|
7071
|
+
/**
|
|
7072
|
+
* DescribeDDosAttackEventDetail请求参数结构体
|
|
7073
|
+
*/
|
|
7074
|
+
export interface DescribeDDosAttackEventDetailRequest {
|
|
7075
|
+
/**
|
|
7076
|
+
* 事件id
|
|
7077
|
+
*/
|
|
7078
|
+
EventId: string;
|
|
7079
|
+
}
|
|
7080
|
+
/**
|
|
7081
|
+
* DescribeTimingL4Data返回参数结构体
|
|
7082
|
+
*/
|
|
7083
|
+
export interface DescribeTimingL4DataResponse {
|
|
7084
|
+
/**
|
|
7085
|
+
* 查询维度
|
|
7086
|
+
*/
|
|
7087
|
+
Type: string;
|
|
7088
|
+
/**
|
|
7089
|
+
* 时间间隔
|
|
7090
|
+
*/
|
|
7091
|
+
Interval: string;
|
|
7092
|
+
/**
|
|
7093
|
+
* 详细数据
|
|
7094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7095
|
+
*/
|
|
7096
|
+
Data: Array<TimingDataRecord>;
|
|
7097
|
+
/**
|
|
7098
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7099
|
+
*/
|
|
7100
|
+
RequestId?: string;
|
|
7101
|
+
}
|
|
5146
7102
|
/**
|
|
5147
7103
|
* 安全Bot配置
|
|
5148
7104
|
*/
|
|
@@ -5169,17 +7125,38 @@ export interface BotConfig {
|
|
|
5169
7125
|
PortraitRule?: BotPortraitRule;
|
|
5170
7126
|
}
|
|
5171
7127
|
/**
|
|
5172
|
-
*
|
|
7128
|
+
* 时序类型详细数据
|
|
5173
7129
|
*/
|
|
5174
|
-
export interface
|
|
7130
|
+
export interface TimingTypeValue {
|
|
5175
7131
|
/**
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
|
|
7132
|
+
* 数据和
|
|
7133
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7134
|
+
*/
|
|
7135
|
+
Sum: number;
|
|
5179
7136
|
/**
|
|
5180
|
-
|
|
7137
|
+
* 最大
|
|
7138
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7139
|
+
*/
|
|
7140
|
+
Max: number;
|
|
7141
|
+
/**
|
|
7142
|
+
* 平均
|
|
7143
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7144
|
+
*/
|
|
7145
|
+
Avg: number;
|
|
7146
|
+
/**
|
|
7147
|
+
* 指标名
|
|
5181
7148
|
*/
|
|
5182
|
-
|
|
7149
|
+
MetricName: string;
|
|
7150
|
+
/**
|
|
7151
|
+
* 废弃字段,即将下线,请使用Detail字段
|
|
7152
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7153
|
+
*/
|
|
7154
|
+
DetailData: Array<number>;
|
|
7155
|
+
/**
|
|
7156
|
+
* 详细数据
|
|
7157
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7158
|
+
*/
|
|
7159
|
+
Detail: Array<TimingDataItem>;
|
|
5183
7160
|
}
|
|
5184
7161
|
/**
|
|
5185
7162
|
* DescribeBotManagedRules请求参数结构体
|