tencentcloud-sdk-nodejs-waf 4.0.589 → 4.0.593
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 +1276 -0
- package/SERVICE_CHANGELOG.md +1489 -100
- package/package.json +1 -1
- package/products.md +55 -55
- package/src/services/waf/v20180125/waf_client.ts +2 -4
- package/src/services/waf/v20180125/waf_models.ts +43 -25
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +2 -4
- package/tencentcloud/services/waf/v20180125/waf_client.js +2 -4
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +39 -24
|
@@ -398,27 +398,27 @@ export interface ModifyDomainWhiteRuleRequest {
|
|
|
398
398
|
/**
|
|
399
399
|
* 需要更改的规则的域名
|
|
400
400
|
*/
|
|
401
|
-
Domain
|
|
401
|
+
Domain?: string;
|
|
402
402
|
/**
|
|
403
403
|
* 白名单id
|
|
404
404
|
*/
|
|
405
|
-
Id
|
|
405
|
+
Id?: number;
|
|
406
406
|
/**
|
|
407
407
|
* 规则的id列表
|
|
408
408
|
*/
|
|
409
|
-
Rules
|
|
409
|
+
Rules?: Array<number>;
|
|
410
410
|
/**
|
|
411
411
|
* 规则匹配路径
|
|
412
412
|
*/
|
|
413
|
-
Url
|
|
413
|
+
Url?: string;
|
|
414
414
|
/**
|
|
415
415
|
* 规则匹配方法
|
|
416
416
|
*/
|
|
417
|
-
Function
|
|
417
|
+
Function?: string;
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* 规则的开关状态,0表示关闭开关,1表示打开开关
|
|
420
420
|
*/
|
|
421
|
-
Status
|
|
421
|
+
Status?: number;
|
|
422
422
|
}
|
|
423
423
|
/**
|
|
424
424
|
* Vip信息
|
|
@@ -1034,15 +1034,15 @@ export interface SwitchDomainRulesRequest {
|
|
|
1034
1034
|
/**
|
|
1035
1035
|
* 域名
|
|
1036
1036
|
*/
|
|
1037
|
-
Domain
|
|
1037
|
+
Domain?: string;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* 规则列表
|
|
1040
1040
|
*/
|
|
1041
|
-
Ids
|
|
1041
|
+
Ids?: Array<number>;
|
|
1042
1042
|
/**
|
|
1043
1043
|
* 开关状态
|
|
1044
1044
|
*/
|
|
1045
|
-
Status
|
|
1045
|
+
Status?: number;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* 设置为观察模式原因
|
|
1048
1048
|
*/
|
|
@@ -1800,11 +1800,11 @@ export interface DeleteDomainWhiteRulesRequest {
|
|
|
1800
1800
|
/**
|
|
1801
1801
|
* 需要删除的规则域名
|
|
1802
1802
|
*/
|
|
1803
|
-
Domain
|
|
1803
|
+
Domain?: string;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* 需要删除的白名单规则
|
|
1806
1806
|
*/
|
|
1807
|
-
Ids
|
|
1807
|
+
Ids?: Array<number>;
|
|
1808
1808
|
}
|
|
1809
1809
|
/**
|
|
1810
1810
|
* clb-waf 域名扩展套餐
|
|
@@ -1977,18 +1977,18 @@ export interface PortItem {
|
|
|
1977
1977
|
NginxServerId: string;
|
|
1978
1978
|
}
|
|
1979
1979
|
/**
|
|
1980
|
-
*
|
|
1980
|
+
* 当前WAF威胁情报封禁模块详情
|
|
1981
1981
|
*/
|
|
1982
1982
|
export interface WafThreatenIntelligenceDetails {
|
|
1983
|
-
/**
|
|
1984
|
-
* 封禁模组启用状态
|
|
1985
|
-
*/
|
|
1986
|
-
DefenseStatus: number;
|
|
1987
1983
|
/**
|
|
1988
1984
|
* 封禁属性标签
|
|
1989
1985
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1990
1986
|
*/
|
|
1991
1987
|
Tags?: Array<string>;
|
|
1988
|
+
/**
|
|
1989
|
+
* 封禁模组启用状态
|
|
1990
|
+
*/
|
|
1991
|
+
DefenseStatus?: number;
|
|
1992
1992
|
/**
|
|
1993
1993
|
* 最后更新时间
|
|
1994
1994
|
*/
|
|
@@ -2166,6 +2166,11 @@ export interface BotQPS {
|
|
|
2166
2166
|
* 使用qps的最大值
|
|
2167
2167
|
*/
|
|
2168
2168
|
MaxBotQPS: number;
|
|
2169
|
+
/**
|
|
2170
|
+
* 续费标志
|
|
2171
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2172
|
+
*/
|
|
2173
|
+
RenewFlag?: number;
|
|
2169
2174
|
}
|
|
2170
2175
|
/**
|
|
2171
2176
|
* ModifyWafAutoDenyRules返回参数结构体
|
|
@@ -2645,6 +2650,11 @@ export interface FraudPkg {
|
|
|
2645
2650
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2646
2651
|
*/
|
|
2647
2652
|
UsedNum?: number;
|
|
2653
|
+
/**
|
|
2654
|
+
* 续费标志
|
|
2655
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2656
|
+
*/
|
|
2657
|
+
RenewFlag?: number;
|
|
2648
2658
|
}
|
|
2649
2659
|
/**
|
|
2650
2660
|
* ModifyAreaBanStatus返回参数结构体
|
|
@@ -2824,7 +2834,7 @@ export interface ModifyWafThreatenIntelligenceRequest {
|
|
|
2824
2834
|
/**
|
|
2825
2835
|
* 配置WAF威胁情报封禁模块详情
|
|
2826
2836
|
*/
|
|
2827
|
-
WafThreatenIntelligenceDetails
|
|
2837
|
+
WafThreatenIntelligenceDetails?: WafThreatenIntelligenceDetails;
|
|
2828
2838
|
}
|
|
2829
2839
|
/**
|
|
2830
2840
|
* 自定义规则的匹配条件结构体
|
|
@@ -3024,7 +3034,7 @@ export interface DescribeWafThreatenIntelligenceResponse {
|
|
|
3024
3034
|
/**
|
|
3025
3035
|
* WAF 威胁情报封禁信息
|
|
3026
3036
|
*/
|
|
3027
|
-
WafThreatenIntelligenceDetails
|
|
3037
|
+
WafThreatenIntelligenceDetails: WafThreatenIntelligenceDetails;
|
|
3028
3038
|
/**
|
|
3029
3039
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3030
3040
|
*/
|
|
@@ -3075,23 +3085,23 @@ export interface AddDomainWhiteRuleRequest {
|
|
|
3075
3085
|
/**
|
|
3076
3086
|
* 需要添加的域名
|
|
3077
3087
|
*/
|
|
3078
|
-
Domain
|
|
3088
|
+
Domain?: string;
|
|
3079
3089
|
/**
|
|
3080
3090
|
* 需要添加的规则
|
|
3081
3091
|
*/
|
|
3082
|
-
Rules
|
|
3092
|
+
Rules?: Array<number>;
|
|
3083
3093
|
/**
|
|
3084
3094
|
* 需要添加的规则url
|
|
3085
3095
|
*/
|
|
3086
|
-
Url
|
|
3096
|
+
Url?: string;
|
|
3087
3097
|
/**
|
|
3088
3098
|
* 规则的方法
|
|
3089
3099
|
*/
|
|
3090
|
-
Function
|
|
3100
|
+
Function?: string;
|
|
3091
3101
|
/**
|
|
3092
3102
|
* 规则的开关
|
|
3093
3103
|
*/
|
|
3094
|
-
Status
|
|
3104
|
+
Status?: number;
|
|
3095
3105
|
}
|
|
3096
3106
|
/**
|
|
3097
3107
|
* UpsertIpAccessControl返回参数结构体
|
|
@@ -3405,6 +3415,11 @@ export interface BotPkg {
|
|
|
3405
3415
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3406
3416
|
*/
|
|
3407
3417
|
Type?: string;
|
|
3418
|
+
/**
|
|
3419
|
+
* 续费标志
|
|
3420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3421
|
+
*/
|
|
3422
|
+
RenewFlag?: number;
|
|
3408
3423
|
}
|
|
3409
3424
|
/**
|
|
3410
3425
|
* ModifyWafThreatenIntelligence返回参数结构体
|