tencentcloud-sdk-nodejs 4.0.224 → 4.0.225
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 +105 -51
- package/package.json +1 -1
- package/products.md +1 -1
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_client.ts +72 -18
- package/src/services/cdn/v20180606/cdn_models.ts +706 -165
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_client.d.ts +26 -3
- package/tencentcloud/services/cdn/v20180606/cdn_client.js +32 -3
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +622 -150
- package/test/cdn.v20180606.test.js +32 -2
|
@@ -268,9 +268,9 @@ it("cdn.v20180606.DescribeDDoSData", async function () {
|
|
|
268
268
|
}
|
|
269
269
|
})
|
|
270
270
|
|
|
271
|
-
it("cdn.v20180606.
|
|
271
|
+
it("cdn.v20180606.ListScdnTopBotData", async function () {
|
|
272
272
|
try {
|
|
273
|
-
const data = await client.
|
|
273
|
+
const data = await client.ListScdnTopBotData({})
|
|
274
274
|
expect(data).to.be.ok
|
|
275
275
|
} catch(error) {
|
|
276
276
|
expect(error.requestId).to.be.ok
|
|
@@ -638,6 +638,16 @@ it("cdn.v20180606.ListClsLogTopics", async function () {
|
|
|
638
638
|
}
|
|
639
639
|
})
|
|
640
640
|
|
|
641
|
+
it("cdn.v20180606.DescribeScdnBotRecords", async function () {
|
|
642
|
+
try {
|
|
643
|
+
const data = await client.DescribeScdnBotRecords({})
|
|
644
|
+
expect(data).to.be.ok
|
|
645
|
+
} catch(error) {
|
|
646
|
+
expect(error.requestId).to.be.ok
|
|
647
|
+
expect(error.code).to.be.ok
|
|
648
|
+
}
|
|
649
|
+
})
|
|
650
|
+
|
|
641
651
|
it("cdn.v20180606.DescribeScdnConfig", async function () {
|
|
642
652
|
try {
|
|
643
653
|
const data = await client.DescribeScdnConfig({})
|
|
@@ -738,6 +748,16 @@ it("cdn.v20180606.UpdatePayType", async function () {
|
|
|
738
748
|
}
|
|
739
749
|
})
|
|
740
750
|
|
|
751
|
+
it("cdn.v20180606.DescribeTopData", async function () {
|
|
752
|
+
try {
|
|
753
|
+
const data = await client.DescribeTopData({})
|
|
754
|
+
expect(data).to.be.ok
|
|
755
|
+
} catch(error) {
|
|
756
|
+
expect(error.requestId).to.be.ok
|
|
757
|
+
expect(error.code).to.be.ok
|
|
758
|
+
}
|
|
759
|
+
})
|
|
760
|
+
|
|
741
761
|
it("cdn.v20180606.EnableCaches", async function () {
|
|
742
762
|
try {
|
|
743
763
|
const data = await client.EnableCaches({})
|
|
@@ -748,4 +768,14 @@ it("cdn.v20180606.EnableCaches", async function () {
|
|
|
748
768
|
}
|
|
749
769
|
})
|
|
750
770
|
|
|
771
|
+
it("cdn.v20180606.ListTopClsLogData", async function () {
|
|
772
|
+
try {
|
|
773
|
+
const data = await client.ListTopClsLogData({})
|
|
774
|
+
expect(data).to.be.ok
|
|
775
|
+
} catch(error) {
|
|
776
|
+
expect(error.requestId).to.be.ok
|
|
777
|
+
expect(error.code).to.be.ok
|
|
778
|
+
}
|
|
779
|
+
})
|
|
780
|
+
|
|
751
781
|
})
|