tencentcloud-sdk-nodejs 4.0.684 → 4.0.685
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 +70 -0
- package/SERVICE_CHANGELOG.md +130 -200
- package/package.json +1 -1
- package/products.md +5 -5
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cfw/v20190904/cfw_client.ts +113 -15
- package/src/services/cfw/v20190904/cfw_models.ts +584 -148
- package/src/services/ess/v20201111/ess_client.ts +6 -5
- package/src/services/ess/v20201111/ess_models.ts +2 -2
- package/src/services/iai/v20180301/iai_client.ts +0 -2
- package/src/services/iai/v20180301/iai_models.ts +13 -17
- package/src/services/iai/v20200303/iai_models.ts +1 -5
- package/src/services/sqlserver/v20180328/sqlserver_client.ts +25 -0
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +107 -0
- package/src/services/tcr/v20190924/tcr_client.ts +1 -1
- package/src/services/tcr/v20190924/tcr_models.ts +9 -3
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +35 -3
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +51 -3
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +566 -148
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +6 -5
- package/tencentcloud/services/ess/v20201111/ess_client.js +6 -5
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +2 -2
- package/tencentcloud/services/iai/v20180301/iai_client.d.ts +0 -2
- package/tencentcloud/services/iai/v20180301/iai_client.js +0 -2
- package/tencentcloud/services/iai/v20180301/iai_models.d.ts +13 -17
- package/tencentcloud/services/iai/v20200303/iai_models.d.ts +1 -5
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.d.ts +9 -1
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.js +12 -0
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +102 -0
- package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +1 -1
- package/tencentcloud/services/tcr/v20190924/tcr_client.js +1 -1
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +9 -3
- package/test/cfw.v20190904.test.js +82 -2
- package/test/sqlserver.v20180328.test.js +20 -0
|
@@ -72,6 +72,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
72
72
|
async ModifyVpcFwGroup(req, cb) {
|
|
73
73
|
return this.request("ModifyVpcFwGroup", req, cb);
|
|
74
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* 资产同步
|
|
77
|
+
*/
|
|
78
|
+
async ModifyAssetSync(req, cb) {
|
|
79
|
+
return this.request("ModifyAssetSync", req, cb);
|
|
80
|
+
}
|
|
75
81
|
/**
|
|
76
82
|
* 删除防火墙(组),或者删除其中实例
|
|
77
83
|
*/
|
|
@@ -145,6 +151,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
145
151
|
async RemoveAclRule(req, cb) {
|
|
146
152
|
return this.request("RemoveAclRule", req, cb);
|
|
147
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* 销毁防火墙实例
|
|
156
|
+
*/
|
|
157
|
+
async DeleteNatFwInstance(req, cb) {
|
|
158
|
+
return this.request("DeleteNatFwInstance", req, cb);
|
|
159
|
+
}
|
|
148
160
|
/**
|
|
149
161
|
* 批量添加入侵防御封禁列表、放通列表规则
|
|
150
162
|
*/
|
|
@@ -219,10 +231,10 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
219
231
|
return this.request("ModifyVpcAcRule", req, cb);
|
|
220
232
|
}
|
|
221
233
|
/**
|
|
222
|
-
*
|
|
234
|
+
* 资产同步状态查询
|
|
223
235
|
*/
|
|
224
|
-
async
|
|
225
|
-
return this.request("
|
|
236
|
+
async DescribeAssetSync(req, cb) {
|
|
237
|
+
return this.request("DescribeAssetSync", req, cb);
|
|
226
238
|
}
|
|
227
239
|
/**
|
|
228
240
|
* 创建企业安全组规则
|
|
@@ -315,6 +327,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
315
327
|
async DeleteSecurityGroupRule(req, cb) {
|
|
316
328
|
return this.request("DeleteSecurityGroupRule", req, cb);
|
|
317
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* 修改地址模板
|
|
332
|
+
*/
|
|
333
|
+
async ModifyAddressTemplate(req, cb) {
|
|
334
|
+
return this.request("ModifyAddressTemplate", req, cb);
|
|
335
|
+
}
|
|
318
336
|
/**
|
|
319
337
|
* 防火墙开关列表
|
|
320
338
|
*/
|
|
@@ -348,6 +366,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
348
366
|
async CreateChooseVpcs(req, cb) {
|
|
349
367
|
return this.request("CreateChooseVpcs", req, cb);
|
|
350
368
|
}
|
|
369
|
+
/**
|
|
370
|
+
* 查询NAT边界防火墙开关列表
|
|
371
|
+
*/
|
|
372
|
+
async DescribeNatSwitchList(req, cb) {
|
|
373
|
+
return this.request("DescribeNatSwitchList", req, cb);
|
|
374
|
+
}
|
|
351
375
|
/**
|
|
352
376
|
* 资产扫描
|
|
353
377
|
*/
|
|
@@ -486,6 +510,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
486
510
|
async DescribeAssociatedInstanceList(req, cb) {
|
|
487
511
|
return this.request("DescribeAssociatedInstanceList", req, cb);
|
|
488
512
|
}
|
|
513
|
+
/**
|
|
514
|
+
* 编辑NAT防火墙
|
|
515
|
+
*/
|
|
516
|
+
async ModifyNatInstance(req, cb) {
|
|
517
|
+
return this.request("ModifyNatInstance", req, cb);
|
|
518
|
+
}
|
|
489
519
|
/**
|
|
490
520
|
* 删除规则
|
|
491
521
|
*/
|
|
@@ -498,6 +528,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
498
528
|
async DescribeNatAcRule(req, cb) {
|
|
499
529
|
return this.request("DescribeNatAcRule", req, cb);
|
|
500
530
|
}
|
|
531
|
+
/**
|
|
532
|
+
* 获取防火墙同步状态,一般在执行同步操作后查询
|
|
533
|
+
*/
|
|
534
|
+
async DescribeFwSyncStatus(req, cb) {
|
|
535
|
+
return this.request("DescribeFwSyncStatus", req, cb);
|
|
536
|
+
}
|
|
501
537
|
/**
|
|
502
538
|
* DescribeNatFwInstance 获取租户所有NAT实例
|
|
503
539
|
*/
|
|
@@ -553,6 +589,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
553
589
|
async DescribeGuideScanInfo(req, cb) {
|
|
554
590
|
return this.request("DescribeGuideScanInfo", req, cb);
|
|
555
591
|
}
|
|
592
|
+
/**
|
|
593
|
+
* 查询地址模板列表
|
|
594
|
+
*/
|
|
595
|
+
async DescribeAddressTemplateList(req, cb) {
|
|
596
|
+
return this.request("DescribeAddressTemplateList", req, cb);
|
|
597
|
+
}
|
|
556
598
|
/**
|
|
557
599
|
* GetNatInstance 获取租户所有NAT实例及实例卡片信息
|
|
558
600
|
*/
|
|
@@ -577,6 +619,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
577
619
|
async DescribeResourceGroup(req, cb) {
|
|
578
620
|
return this.request("DescribeResourceGroup", req, cb);
|
|
579
621
|
}
|
|
622
|
+
/**
|
|
623
|
+
* 同步防火墙操作,包括同步防火墙路由(若vpc,专线网关等增加了Cidr,需要手动同步一下路由使之在防火墙上生效)等。
|
|
624
|
+
*/
|
|
625
|
+
async SyncFwOperate(req, cb) {
|
|
626
|
+
return this.request("SyncFwOperate", req, cb);
|
|
627
|
+
}
|
|
580
628
|
/**
|
|
581
629
|
* 修改规则
|
|
582
630
|
*/
|