tencentcloud-sdk-nodejs 4.0.612 → 4.0.613
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 +195 -0
- package/SERVICE_CHANGELOG.md +268 -54
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_client.ts +1 -0
- package/src/services/cdn/v20180606/cdn_models.ts +24 -0
- package/src/services/cwp/v20180228/cwp_client.ts +26 -27
- package/src/services/cwp/v20180228/cwp_models.ts +125 -20
- package/src/services/dcdb/v20180411/dcdb_models.ts +10 -0
- package/src/services/dlc/v20210125/dlc_client.ts +1 -0
- package/src/services/dlc/v20210125/dlc_models.ts +123 -1
- package/src/services/ess/v20201111/ess_client.ts +22 -17
- package/src/services/ess/v20201111/ess_models.ts +105 -81
- package/src/services/essbasic/v20210526/essbasic_client.ts +2 -2
- package/src/services/tbp/v20190627/tbp_models.ts +6 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +21 -0
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +9 -11
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +12 -14
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +105 -18
- package/tencentcloud/services/dcdb/v20180411/dcdb_models.d.ts +8 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +103 -1
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +20 -15
- package/tencentcloud/services/ess/v20201111/ess_client.js +20 -15
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +96 -76
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +2 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +2 -2
- package/tencentcloud/services/tbp/v20190627/tbp_models.d.ts +5 -0
- package/test/cwp.v20180228.test.js +14 -14
|
@@ -618,9 +618,9 @@ it("cwp.v20180228.ExportAssetWebServiceInfoList", async function () {
|
|
|
618
618
|
}
|
|
619
619
|
})
|
|
620
620
|
|
|
621
|
-
it("cwp.v20180228.
|
|
621
|
+
it("cwp.v20180228.DescribeVulStoreList", async function () {
|
|
622
622
|
try {
|
|
623
|
-
const data = await client.
|
|
623
|
+
const data = await client.DescribeVulStoreList({})
|
|
624
624
|
expect(data).to.be.ok
|
|
625
625
|
} catch(error) {
|
|
626
626
|
expect(error.requestId).to.be.ok
|
|
@@ -1268,9 +1268,9 @@ it("cwp.v20180228.DescribeOpenPortStatistics", async function () {
|
|
|
1268
1268
|
}
|
|
1269
1269
|
})
|
|
1270
1270
|
|
|
1271
|
-
it("cwp.v20180228.
|
|
1271
|
+
it("cwp.v20180228.DescribeUndoVulCounts", async function () {
|
|
1272
1272
|
try {
|
|
1273
|
-
const data = await client.
|
|
1273
|
+
const data = await client.DescribeUndoVulCounts({})
|
|
1274
1274
|
expect(data).to.be.ok
|
|
1275
1275
|
} catch(error) {
|
|
1276
1276
|
expect(error.requestId).to.be.ok
|
|
@@ -2598,6 +2598,16 @@ it("cwp.v20180228.DescribeMonthInspectionReport", async function () {
|
|
|
2598
2598
|
}
|
|
2599
2599
|
})
|
|
2600
2600
|
|
|
2601
|
+
it("cwp.v20180228.DescribeWebPageGeneralize", async function () {
|
|
2602
|
+
try {
|
|
2603
|
+
const data = await client.DescribeWebPageGeneralize({})
|
|
2604
|
+
expect(data).to.be.ok
|
|
2605
|
+
} catch(error) {
|
|
2606
|
+
expect(error.requestId).to.be.ok
|
|
2607
|
+
expect(error.code).to.be.ok
|
|
2608
|
+
}
|
|
2609
|
+
})
|
|
2610
|
+
|
|
2601
2611
|
it("cwp.v20180228.DescribeAssetInfo", async function () {
|
|
2602
2612
|
try {
|
|
2603
2613
|
const data = await client.DescribeAssetInfo({})
|
|
@@ -2748,16 +2758,6 @@ it("cwp.v20180228.DescribeMalwareFile", async function () {
|
|
|
2748
2758
|
}
|
|
2749
2759
|
})
|
|
2750
2760
|
|
|
2751
|
-
it("cwp.v20180228.DescribeUndoVulCounts", async function () {
|
|
2752
|
-
try {
|
|
2753
|
-
const data = await client.DescribeUndoVulCounts({})
|
|
2754
|
-
expect(data).to.be.ok
|
|
2755
|
-
} catch(error) {
|
|
2756
|
-
expect(error.requestId).to.be.ok
|
|
2757
|
-
expect(error.code).to.be.ok
|
|
2758
|
-
}
|
|
2759
|
-
})
|
|
2760
|
-
|
|
2761
2761
|
it("cwp.v20180228.ModifyBaselinePolicyState", async function () {
|
|
2762
2762
|
try {
|
|
2763
2763
|
const data = await client.ModifyBaselinePolicyState({})
|