tencentcloud-sdk-nodejs-waf 4.0.327 → 4.0.328
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 +45 -0
- package/README.md +3 -1
- package/SERVICE_CHANGELOG.md +72 -139
- package/package.json +1 -1
- package/products.md +9 -9
- package/src/services/waf/v20180125/waf_client.ts +70 -57
- package/src/services/waf/v20180125/waf_models.ts +1083 -923
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +5 -1
- package/tencentcloud/services/waf/v20180125/waf_client.js +6 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +948 -817
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import {
|
|
2
|
+
import { CreateAccessExportRequest, DescribeWafAutoDenyRulesResponse, DescribeIpHitItemsResponse, DescribeUserClbWafRegionsResponse, DeleteAttackDownloadRecordResponse, DescribeFlowTrendRequest, DescribeWafAutoDenyStatusRequest, AddDomainWhiteRuleResponse, DescribeIpAccessControlResponse, ModifyDomainWhiteRuleRequest, DescribeAccessIndexRequest, DescribeCustomRulesResponse, DeleteSessionRequest, DescribeWafAutoDenyRulesRequest, AddCustomRuleResponse, DescribeFlowTrendResponse, UpsertIpAccessControlRequest, DeleteDownloadRecordRequest, DescribeAccessExportsRequest, ModifyAccessPeriodResponse, DeleteAccessExportResponse, DescribeAutoDenyIPResponse, SearchAccessLogResponse, DescribeAutoDenyIPRequest, DescribeIpAccessControlRequest, AddSpartaProtectionRequest, DescribeAccessFastAnalysisRequest, DeleteIpAccessControlRequest, DeleteDomainWhiteRulesResponse, CreateAttackDownloadTaskRequest, DescribeWafAutoDenyStatusResponse, DeleteDomainWhiteRulesRequest, ModifyCustomRuleStatusResponse, AddSpartaProtectionResponse, CreateAttackDownloadTaskResponse, DescribeDomainWhiteRulesRequest, ModifyCustomRuleStatusRequest, DeleteDownloadRecordResponse, ModifyAccessPeriodRequest, ModifyWafAutoDenyRulesResponse, DeleteIpAccessControlResponse, SearchAccessLogRequest, AddCustomRuleRequest, DescribeCustomRulesRequest, ModifyDomainWhiteRuleResponse, ModifyWafAutoDenyRulesRequest, DescribeAccessFastAnalysisResponse, ModifyWafAutoDenyStatusRequest, ModifyWafThreatenIntelligenceRequest, DescribeIpHitItemsRequest, DeleteAccessExportRequest, DescribeUserClbWafRegionsRequest, DescribeDomainWhiteRulesResponse, DeleteAttackDownloadRecordRequest, DescribeWafThreatenIntelligenceResponse, AddDomainWhiteRuleRequest, UpsertIpAccessControlResponse, DeleteSessionResponse, ModifyWafAutoDenyStatusResponse, DescribeWafThreatenIntelligenceRequest, DescribeAccessIndexResponse, DescribeAccessExportsResponse, CreateAccessExportResponse, ModifyWafThreatenIntelligenceResponse } from "./waf_models";
|
|
3
3
|
/**
|
|
4
4
|
* waf client
|
|
5
5
|
* @class
|
|
@@ -114,6 +114,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
114
114
|
|
|
115
115
|
*/
|
|
116
116
|
DescribeDomainWhiteRules(req: DescribeDomainWhiteRulesRequest, cb?: (error: string, rep: DescribeDomainWhiteRulesResponse) => void): Promise<DescribeDomainWhiteRulesResponse>;
|
|
117
|
+
/**
|
|
118
|
+
* 添加Spart防护域名
|
|
119
|
+
*/
|
|
120
|
+
AddSpartaProtection(req: AddSpartaProtectionRequest, cb?: (error: string, rep: AddSpartaProtectionResponse) => void): Promise<AddSpartaProtectionResponse>;
|
|
117
121
|
/**
|
|
118
122
|
* 描述WAF威胁情报封禁模块配置详情
|
|
119
123
|
*/
|
|
@@ -187,6 +187,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
187
187
|
async DescribeDomainWhiteRules(req, cb) {
|
|
188
188
|
return this.request("DescribeDomainWhiteRules", req, cb);
|
|
189
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
* 添加Spart防护域名
|
|
192
|
+
*/
|
|
193
|
+
async AddSpartaProtection(req, cb) {
|
|
194
|
+
return this.request("AddSpartaProtection", req, cb);
|
|
195
|
+
}
|
|
190
196
|
/**
|
|
191
197
|
* 描述WAF威胁情报封禁模块配置详情
|
|
192
198
|
*/
|