tencentcloud-sdk-nodejs 4.0.844 → 4.0.845
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 +52 -0
- package/SERVICE_CHANGELOG.md +68 -219
- package/package.json +1 -1
- package/products.md +5 -5
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cls/v20201016/cls_client.ts +93 -33
- package/src/services/cls/v20201016/cls_models.ts +209 -130
- package/src/services/ims/v20201229/ims_client.ts +1 -1
- package/src/services/rum/v20210622/rum_models.ts +1 -1
- package/src/services/teo/v20220901/teo_client.ts +104 -17
- package/src/services/teo/v20220901/teo_models.ts +257 -45
- package/src/services/tione/v20191022/tione_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +31 -11
- package/tencentcloud/services/cls/v20201016/cls_client.js +45 -15
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +199 -130
- package/tencentcloud/services/ims/v20201229/ims_client.d.ts +1 -1
- package/tencentcloud/services/ims/v20201229/ims_client.js +1 -1
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +1 -1
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +42 -5
- package/tencentcloud/services/teo/v20220901/teo_client.js +55 -6
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +241 -43
- package/tencentcloud/services/tione/v20191022/tione_models.d.ts +1 -1
- package/test/cls.v20201016.test.js +66 -16
- package/test/teo.v20220901.test.js +64 -4
|
@@ -18,6 +18,16 @@ const client = new tencentcloud.teo.v20220901.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("teo.v20220901.test.js", function () {
|
|
20
20
|
|
|
21
|
+
it("teo.v20220901.DestroyPlan", async function () {
|
|
22
|
+
try {
|
|
23
|
+
const data = await client.DestroyPlan({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
21
31
|
it("teo.v20220901.CreatePurgeTask", async function () {
|
|
22
32
|
try {
|
|
23
33
|
const data = await client.CreatePurgeTask({})
|
|
@@ -168,6 +178,16 @@ it("teo.v20220901.DescribeEnvironments", async function () {
|
|
|
168
178
|
}
|
|
169
179
|
})
|
|
170
180
|
|
|
181
|
+
it("teo.v20220901.IncreasePlanQuota", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.IncreasePlanQuota({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
171
191
|
it("teo.v20220901.DeleteApplicationProxyRule", async function () {
|
|
172
192
|
try {
|
|
173
193
|
const data = await client.DeleteApplicationProxyRule({})
|
|
@@ -338,9 +358,9 @@ it("teo.v20220901.ModifyL4Proxy", async function () {
|
|
|
338
358
|
}
|
|
339
359
|
})
|
|
340
360
|
|
|
341
|
-
it("teo.v20220901.
|
|
361
|
+
it("teo.v20220901.ModifyL4ProxyRules", async function () {
|
|
342
362
|
try {
|
|
343
|
-
const data = await client.
|
|
363
|
+
const data = await client.ModifyL4ProxyRules({})
|
|
344
364
|
expect(data).to.be.ok
|
|
345
365
|
} catch(error) {
|
|
346
366
|
expect(error.requestId).to.be.ok
|
|
@@ -378,9 +398,9 @@ it("teo.v20220901.ModifyZoneSetting", async function () {
|
|
|
378
398
|
}
|
|
379
399
|
})
|
|
380
400
|
|
|
381
|
-
it("teo.v20220901.
|
|
401
|
+
it("teo.v20220901.CreateAliasDomain", async function () {
|
|
382
402
|
try {
|
|
383
|
-
const data = await client.
|
|
403
|
+
const data = await client.CreateAliasDomain({})
|
|
384
404
|
expect(data).to.be.ok
|
|
385
405
|
} catch(error) {
|
|
386
406
|
expect(error.requestId).to.be.ok
|
|
@@ -458,6 +478,16 @@ it("teo.v20220901.ModifySecurityPolicy", async function () {
|
|
|
458
478
|
}
|
|
459
479
|
})
|
|
460
480
|
|
|
481
|
+
it("teo.v20220901.ModifyPlan", async function () {
|
|
482
|
+
try {
|
|
483
|
+
const data = await client.ModifyPlan({})
|
|
484
|
+
expect(data).to.be.ok
|
|
485
|
+
} catch(error) {
|
|
486
|
+
expect(error.requestId).to.be.ok
|
|
487
|
+
expect(error.code).to.be.ok
|
|
488
|
+
}
|
|
489
|
+
})
|
|
490
|
+
|
|
461
491
|
it("teo.v20220901.BindZoneToPlan", async function () {
|
|
462
492
|
try {
|
|
463
493
|
const data = await client.BindZoneToPlan({})
|
|
@@ -518,6 +548,16 @@ it("teo.v20220901.ModifyApplicationProxyStatus", async function () {
|
|
|
518
548
|
}
|
|
519
549
|
})
|
|
520
550
|
|
|
551
|
+
it("teo.v20220901.CreatePlan", async function () {
|
|
552
|
+
try {
|
|
553
|
+
const data = await client.CreatePlan({})
|
|
554
|
+
expect(data).to.be.ok
|
|
555
|
+
} catch(error) {
|
|
556
|
+
expect(error.requestId).to.be.ok
|
|
557
|
+
expect(error.code).to.be.ok
|
|
558
|
+
}
|
|
559
|
+
})
|
|
560
|
+
|
|
521
561
|
it("teo.v20220901.DescribeTimingL7AnalysisData", async function () {
|
|
522
562
|
try {
|
|
523
563
|
const data = await client.DescribeTimingL7AnalysisData({})
|
|
@@ -698,6 +738,16 @@ it("teo.v20220901.DescribeL4Proxy", async function () {
|
|
|
698
738
|
}
|
|
699
739
|
})
|
|
700
740
|
|
|
741
|
+
it("teo.v20220901.UpgradePlan", async function () {
|
|
742
|
+
try {
|
|
743
|
+
const data = await client.UpgradePlan({})
|
|
744
|
+
expect(data).to.be.ok
|
|
745
|
+
} catch(error) {
|
|
746
|
+
expect(error.requestId).to.be.ok
|
|
747
|
+
expect(error.code).to.be.ok
|
|
748
|
+
}
|
|
749
|
+
})
|
|
750
|
+
|
|
701
751
|
it("teo.v20220901.DescribeRules", async function () {
|
|
702
752
|
try {
|
|
703
753
|
const data = await client.DescribeRules({})
|
|
@@ -868,6 +918,16 @@ it("teo.v20220901.ModifyL4ProxyRulesStatus", async function () {
|
|
|
868
918
|
}
|
|
869
919
|
})
|
|
870
920
|
|
|
921
|
+
it("teo.v20220901.RenewPlan", async function () {
|
|
922
|
+
try {
|
|
923
|
+
const data = await client.RenewPlan({})
|
|
924
|
+
expect(data).to.be.ok
|
|
925
|
+
} catch(error) {
|
|
926
|
+
expect(error.requestId).to.be.ok
|
|
927
|
+
expect(error.code).to.be.ok
|
|
928
|
+
}
|
|
929
|
+
})
|
|
930
|
+
|
|
871
931
|
it("teo.v20220901.DescribeZoneSetting", async function () {
|
|
872
932
|
try {
|
|
873
933
|
const data = await client.DescribeZoneSetting({})
|