tencentcloud-sdk-nodejs-waf 4.0.651 → 4.0.654
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 +772 -0
- package/SERVICE_CHANGELOG.md +764 -121
- package/package.json +1 -1
- package/products.md +40 -40
- package/src/services/waf/v20180125/waf_client.ts +33 -7
- package/src/services/waf/v20180125/waf_models.ts +137 -16
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +11 -3
- package/tencentcloud/services/waf/v20180125/waf_client.js +15 -3
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +131 -16
|
@@ -797,6 +797,27 @@ export interface DescribeUserCdcClbWafRegionsResponse {
|
|
|
797
797
|
*/
|
|
798
798
|
RequestId?: string;
|
|
799
799
|
}
|
|
800
|
+
/**
|
|
801
|
+
* GetAttackHistogram请求参数结构体
|
|
802
|
+
*/
|
|
803
|
+
export interface GetAttackHistogramRequest {
|
|
804
|
+
/**
|
|
805
|
+
* 查询的域名,所有域名使用all
|
|
806
|
+
*/
|
|
807
|
+
Domain: string;
|
|
808
|
+
/**
|
|
809
|
+
* 查询起始时间
|
|
810
|
+
*/
|
|
811
|
+
StartTime: string;
|
|
812
|
+
/**
|
|
813
|
+
* 查询结束时间
|
|
814
|
+
*/
|
|
815
|
+
EndTime: string;
|
|
816
|
+
/**
|
|
817
|
+
* Lucene语法
|
|
818
|
+
*/
|
|
819
|
+
QueryString: string;
|
|
820
|
+
}
|
|
800
821
|
/**
|
|
801
822
|
* DeleteAccessExport返回参数结构体
|
|
802
823
|
*/
|
|
@@ -939,6 +960,27 @@ export interface DescribeVipInfoRequest {
|
|
|
939
960
|
*/
|
|
940
961
|
InstanceIds: Array<string>;
|
|
941
962
|
}
|
|
963
|
+
/**
|
|
964
|
+
* GetAttackHistogram返回参数结构体
|
|
965
|
+
*/
|
|
966
|
+
export interface GetAttackHistogramResponse {
|
|
967
|
+
/**
|
|
968
|
+
* 统计详情
|
|
969
|
+
*/
|
|
970
|
+
Data?: Array<LogHistogramInfo>;
|
|
971
|
+
/**
|
|
972
|
+
* 时间段大小
|
|
973
|
+
*/
|
|
974
|
+
Period?: number;
|
|
975
|
+
/**
|
|
976
|
+
* 统计的条目数
|
|
977
|
+
*/
|
|
978
|
+
TotalCount?: number;
|
|
979
|
+
/**
|
|
980
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
981
|
+
*/
|
|
982
|
+
RequestId?: string;
|
|
983
|
+
}
|
|
942
984
|
/**
|
|
943
985
|
* 过滤数组
|
|
944
986
|
*/
|
|
@@ -1657,6 +1699,35 @@ export interface PeakPointsItem {
|
|
|
1657
1699
|
*/
|
|
1658
1700
|
UpstreamRedirect: number;
|
|
1659
1701
|
}
|
|
1702
|
+
/**
|
|
1703
|
+
* ip封堵状态数据
|
|
1704
|
+
*/
|
|
1705
|
+
export interface IpHitItem {
|
|
1706
|
+
/**
|
|
1707
|
+
* 动作
|
|
1708
|
+
*/
|
|
1709
|
+
Action: number;
|
|
1710
|
+
/**
|
|
1711
|
+
* 类别
|
|
1712
|
+
*/
|
|
1713
|
+
Category: string;
|
|
1714
|
+
/**
|
|
1715
|
+
* ip
|
|
1716
|
+
*/
|
|
1717
|
+
Ip: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* 规则名称
|
|
1720
|
+
*/
|
|
1721
|
+
Name: string;
|
|
1722
|
+
/**
|
|
1723
|
+
* 时间戳
|
|
1724
|
+
*/
|
|
1725
|
+
TsVersion: number;
|
|
1726
|
+
/**
|
|
1727
|
+
* 有效截止时间戳
|
|
1728
|
+
*/
|
|
1729
|
+
ValidTs: number;
|
|
1730
|
+
}
|
|
1660
1731
|
/**
|
|
1661
1732
|
* PostAttackDownloadTask请求参数结构体
|
|
1662
1733
|
*/
|
|
@@ -1856,6 +1927,19 @@ export interface DescribeWafAutoDenyStatusResponse {
|
|
|
1856
1927
|
*/
|
|
1857
1928
|
RequestId?: string;
|
|
1858
1929
|
}
|
|
1930
|
+
/**
|
|
1931
|
+
* 攻击日志统计详情
|
|
1932
|
+
*/
|
|
1933
|
+
export interface LogHistogramInfo {
|
|
1934
|
+
/**
|
|
1935
|
+
* 日志条数
|
|
1936
|
+
*/
|
|
1937
|
+
Count: number;
|
|
1938
|
+
/**
|
|
1939
|
+
* 时间戳
|
|
1940
|
+
*/
|
|
1941
|
+
TimeStamp: number;
|
|
1942
|
+
}
|
|
1859
1943
|
/**
|
|
1860
1944
|
* DeleteDomainWhiteRules请求参数结构体
|
|
1861
1945
|
*/
|
|
@@ -2124,6 +2208,19 @@ export interface DescribePeakPointsResponse {
|
|
|
2124
2208
|
*/
|
|
2125
2209
|
RequestId?: string;
|
|
2126
2210
|
}
|
|
2211
|
+
/**
|
|
2212
|
+
* 用于接口DescribeAccessHistogram 的出参
|
|
2213
|
+
*/
|
|
2214
|
+
export interface AccessHistogramItem {
|
|
2215
|
+
/**
|
|
2216
|
+
* 时间,单位ms
|
|
2217
|
+
*/
|
|
2218
|
+
BTime?: number;
|
|
2219
|
+
/**
|
|
2220
|
+
* 日志条数
|
|
2221
|
+
*/
|
|
2222
|
+
Count?: number;
|
|
2223
|
+
}
|
|
2127
2224
|
/**
|
|
2128
2225
|
* DeleteDownloadRecord返回参数结构体
|
|
2129
2226
|
*/
|
|
@@ -3240,6 +3337,28 @@ export interface DescribeWafThreatenIntelligenceResponse {
|
|
|
3240
3337
|
*/
|
|
3241
3338
|
RequestId?: string;
|
|
3242
3339
|
}
|
|
3340
|
+
/**
|
|
3341
|
+
* DescribeAccessHistogram返回参数结构体
|
|
3342
|
+
*/
|
|
3343
|
+
export interface DescribeAccessHistogramResponse {
|
|
3344
|
+
/**
|
|
3345
|
+
* 柱状图间隔时间差,单位ms
|
|
3346
|
+
*/
|
|
3347
|
+
Interval?: number;
|
|
3348
|
+
/**
|
|
3349
|
+
* 满足条件的日志条数
|
|
3350
|
+
*/
|
|
3351
|
+
TotalCount?: number;
|
|
3352
|
+
/**
|
|
3353
|
+
* 注意:此字段可能返回 null,表示取不到有效值
|
|
3354
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3355
|
+
*/
|
|
3356
|
+
HistogramInfos?: Array<AccessHistogramItem>;
|
|
3357
|
+
/**
|
|
3358
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3359
|
+
*/
|
|
3360
|
+
RequestId?: string;
|
|
3361
|
+
}
|
|
3243
3362
|
/**
|
|
3244
3363
|
* DeleteAttackDownloadRecord请求参数结构体
|
|
3245
3364
|
*/
|
|
@@ -3323,33 +3442,29 @@ export interface UpsertIpAccessControlResponse {
|
|
|
3323
3442
|
RequestId?: string;
|
|
3324
3443
|
}
|
|
3325
3444
|
/**
|
|
3326
|
-
*
|
|
3445
|
+
* DescribeAccessHistogram请求参数结构体
|
|
3327
3446
|
*/
|
|
3328
|
-
export interface
|
|
3447
|
+
export interface DescribeAccessHistogramRequest {
|
|
3329
3448
|
/**
|
|
3330
|
-
*
|
|
3449
|
+
* 老版本查询的日志主题ID,新版本传空字符串即可
|
|
3331
3450
|
*/
|
|
3332
|
-
|
|
3333
|
-
/**
|
|
3334
|
-
* 类别
|
|
3335
|
-
*/
|
|
3336
|
-
Category: string;
|
|
3451
|
+
TopicId: string;
|
|
3337
3452
|
/**
|
|
3338
|
-
*
|
|
3453
|
+
* 要查询的日志的起始时间,Unix时间戳,单位ms
|
|
3339
3454
|
*/
|
|
3340
|
-
|
|
3455
|
+
From: number;
|
|
3341
3456
|
/**
|
|
3342
|
-
*
|
|
3457
|
+
* 要查询的日志的结束时间,Unix时间戳,单位ms
|
|
3343
3458
|
*/
|
|
3344
|
-
|
|
3459
|
+
To: number;
|
|
3345
3460
|
/**
|
|
3346
|
-
*
|
|
3461
|
+
* 查询语句,语句长度最大为4096
|
|
3347
3462
|
*/
|
|
3348
|
-
|
|
3463
|
+
Query: string;
|
|
3349
3464
|
/**
|
|
3350
|
-
*
|
|
3465
|
+
* 柱状图间隔时间差,单位ms
|
|
3351
3466
|
*/
|
|
3352
|
-
|
|
3467
|
+
Interval?: number;
|
|
3353
3468
|
}
|
|
3354
3469
|
/**
|
|
3355
3470
|
* DeleteSession返回参数结构体
|