tencentcloud-sdk-nodejs 4.0.947 → 4.0.948
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 +39 -0
- package/SERVICE_CHANGELOG.md +78 -215
- package/package.json +1 -1
- package/products.md +1 -1
- package/src/common/sdk_version.ts +1 -1
- package/src/services/teo/v20220901/teo_client.ts +167 -30
- package/src/services/teo/v20220901/teo_models.ts +658 -199
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +52 -7
- package/tencentcloud/services/teo/v20220901/teo_client.js +76 -9
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +631 -198
- package/test/teo.v20220901.test.js +116 -6
|
@@ -28,6 +28,16 @@ it("teo.v20220901.DestroyPlan", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
it("teo.v20220901.DeleteFunction", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.DeleteFunction({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
31
41
|
it("teo.v20220901.CreatePurgeTask", async function () {
|
|
32
42
|
try {
|
|
33
43
|
const data = await client.CreatePurgeTask({})
|
|
@@ -98,6 +108,26 @@ it("teo.v20220901.VerifyOwnership", async function () {
|
|
|
98
108
|
}
|
|
99
109
|
})
|
|
100
110
|
|
|
111
|
+
it("teo.v20220901.CreateFunctionRule", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.CreateFunctionRule({})
|
|
114
|
+
expect(data).to.be.ok
|
|
115
|
+
} catch(error) {
|
|
116
|
+
expect(error.requestId).to.be.ok
|
|
117
|
+
expect(error.code).to.be.ok
|
|
118
|
+
}
|
|
119
|
+
})
|
|
120
|
+
|
|
121
|
+
it("teo.v20220901.DeleteFunctionRules", async function () {
|
|
122
|
+
try {
|
|
123
|
+
const data = await client.DeleteFunctionRules({})
|
|
124
|
+
expect(data).to.be.ok
|
|
125
|
+
} catch(error) {
|
|
126
|
+
expect(error.requestId).to.be.ok
|
|
127
|
+
expect(error.code).to.be.ok
|
|
128
|
+
}
|
|
129
|
+
})
|
|
130
|
+
|
|
101
131
|
it("teo.v20220901.IdentifyZone", async function () {
|
|
102
132
|
try {
|
|
103
133
|
const data = await client.IdentifyZone({})
|
|
@@ -128,6 +158,16 @@ it("teo.v20220901.DescribeAccelerationDomains", async function () {
|
|
|
128
158
|
}
|
|
129
159
|
})
|
|
130
160
|
|
|
161
|
+
it("teo.v20220901.DescribeFunctionRuntimeEnvironment", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.DescribeFunctionRuntimeEnvironment({})
|
|
164
|
+
expect(data).to.be.ok
|
|
165
|
+
} catch(error) {
|
|
166
|
+
expect(error.requestId).to.be.ok
|
|
167
|
+
expect(error.code).to.be.ok
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
|
|
131
171
|
it("teo.v20220901.ModifyOriginGroup", async function () {
|
|
132
172
|
try {
|
|
133
173
|
const data = await client.ModifyOriginGroup({})
|
|
@@ -428,9 +468,9 @@ it("teo.v20220901.CreateL4ProxyRules", async function () {
|
|
|
428
468
|
}
|
|
429
469
|
})
|
|
430
470
|
|
|
431
|
-
it("teo.v20220901.
|
|
471
|
+
it("teo.v20220901.DescribeTimingL4Data", async function () {
|
|
432
472
|
try {
|
|
433
|
-
const data = await client.
|
|
473
|
+
const data = await client.DescribeTimingL4Data({})
|
|
434
474
|
expect(data).to.be.ok
|
|
435
475
|
} catch(error) {
|
|
436
476
|
expect(error.requestId).to.be.ok
|
|
@@ -438,9 +478,9 @@ it("teo.v20220901.DescribeTopL7CacheData", async function () {
|
|
|
438
478
|
}
|
|
439
479
|
})
|
|
440
480
|
|
|
441
|
-
it("teo.v20220901.
|
|
481
|
+
it("teo.v20220901.DescribeTopL7CacheData", async function () {
|
|
442
482
|
try {
|
|
443
|
-
const data = await client.
|
|
483
|
+
const data = await client.DescribeTopL7CacheData({})
|
|
444
484
|
expect(data).to.be.ok
|
|
445
485
|
} catch(error) {
|
|
446
486
|
expect(error.requestId).to.be.ok
|
|
@@ -578,6 +618,16 @@ it("teo.v20220901.DescribeTimingL7AnalysisData", async function () {
|
|
|
578
618
|
}
|
|
579
619
|
})
|
|
580
620
|
|
|
621
|
+
it("teo.v20220901.CreateFunction", async function () {
|
|
622
|
+
try {
|
|
623
|
+
const data = await client.CreateFunction({})
|
|
624
|
+
expect(data).to.be.ok
|
|
625
|
+
} catch(error) {
|
|
626
|
+
expect(error.requestId).to.be.ok
|
|
627
|
+
expect(error.code).to.be.ok
|
|
628
|
+
}
|
|
629
|
+
})
|
|
630
|
+
|
|
581
631
|
it("teo.v20220901.DescribeApplicationProxies", async function () {
|
|
582
632
|
try {
|
|
583
633
|
const data = await client.DescribeApplicationProxies({})
|
|
@@ -618,6 +668,16 @@ it("teo.v20220901.CreateConfigGroupVersion", async function () {
|
|
|
618
668
|
}
|
|
619
669
|
})
|
|
620
670
|
|
|
671
|
+
it("teo.v20220901.ModifyFunction", async function () {
|
|
672
|
+
try {
|
|
673
|
+
const data = await client.ModifyFunction({})
|
|
674
|
+
expect(data).to.be.ok
|
|
675
|
+
} catch(error) {
|
|
676
|
+
expect(error.requestId).to.be.ok
|
|
677
|
+
expect(error.code).to.be.ok
|
|
678
|
+
}
|
|
679
|
+
})
|
|
680
|
+
|
|
621
681
|
it("teo.v20220901.ModifyApplicationProxy", async function () {
|
|
622
682
|
try {
|
|
623
683
|
const data = await client.ModifyApplicationProxy({})
|
|
@@ -638,6 +698,16 @@ it("teo.v20220901.CreateZone", async function () {
|
|
|
638
698
|
}
|
|
639
699
|
})
|
|
640
700
|
|
|
701
|
+
it("teo.v20220901.ModifyFunctionRule", async function () {
|
|
702
|
+
try {
|
|
703
|
+
const data = await client.ModifyFunctionRule({})
|
|
704
|
+
expect(data).to.be.ok
|
|
705
|
+
} catch(error) {
|
|
706
|
+
expect(error.requestId).to.be.ok
|
|
707
|
+
expect(error.code).to.be.ok
|
|
708
|
+
}
|
|
709
|
+
})
|
|
710
|
+
|
|
641
711
|
it("teo.v20220901.DescribeAvailablePlans", async function () {
|
|
642
712
|
try {
|
|
643
713
|
const data = await client.DescribeAvailablePlans({})
|
|
@@ -678,9 +748,9 @@ it("teo.v20220901.ModifyAccelerationDomainStatuses", async function () {
|
|
|
678
748
|
}
|
|
679
749
|
})
|
|
680
750
|
|
|
681
|
-
it("teo.v20220901.
|
|
751
|
+
it("teo.v20220901.DescribeFunctionRules", async function () {
|
|
682
752
|
try {
|
|
683
|
-
const data = await client.
|
|
753
|
+
const data = await client.DescribeFunctionRules({})
|
|
684
754
|
expect(data).to.be.ok
|
|
685
755
|
} catch(error) {
|
|
686
756
|
expect(error.requestId).to.be.ok
|
|
@@ -758,6 +828,16 @@ it("teo.v20220901.DeleteCustomErrorPage", async function () {
|
|
|
758
828
|
}
|
|
759
829
|
})
|
|
760
830
|
|
|
831
|
+
it("teo.v20220901.HandleFunctionRuntimeEnvironment", async function () {
|
|
832
|
+
try {
|
|
833
|
+
const data = await client.HandleFunctionRuntimeEnvironment({})
|
|
834
|
+
expect(data).to.be.ok
|
|
835
|
+
} catch(error) {
|
|
836
|
+
expect(error.requestId).to.be.ok
|
|
837
|
+
expect(error.code).to.be.ok
|
|
838
|
+
}
|
|
839
|
+
})
|
|
840
|
+
|
|
761
841
|
it("teo.v20220901.UpgradePlan", async function () {
|
|
762
842
|
try {
|
|
763
843
|
const data = await client.UpgradePlan({})
|
|
@@ -768,6 +848,26 @@ it("teo.v20220901.UpgradePlan", async function () {
|
|
|
768
848
|
}
|
|
769
849
|
})
|
|
770
850
|
|
|
851
|
+
it("teo.v20220901.ModifyFunctionRulePriority", async function () {
|
|
852
|
+
try {
|
|
853
|
+
const data = await client.ModifyFunctionRulePriority({})
|
|
854
|
+
expect(data).to.be.ok
|
|
855
|
+
} catch(error) {
|
|
856
|
+
expect(error.requestId).to.be.ok
|
|
857
|
+
expect(error.code).to.be.ok
|
|
858
|
+
}
|
|
859
|
+
})
|
|
860
|
+
|
|
861
|
+
it("teo.v20220901.ModifySecurityIPGroup", async function () {
|
|
862
|
+
try {
|
|
863
|
+
const data = await client.ModifySecurityIPGroup({})
|
|
864
|
+
expect(data).to.be.ok
|
|
865
|
+
} catch(error) {
|
|
866
|
+
expect(error.requestId).to.be.ok
|
|
867
|
+
expect(error.code).to.be.ok
|
|
868
|
+
}
|
|
869
|
+
})
|
|
870
|
+
|
|
771
871
|
it("teo.v20220901.DescribeRules", async function () {
|
|
772
872
|
try {
|
|
773
873
|
const data = await client.DescribeRules({})
|
|
@@ -988,6 +1088,16 @@ it("teo.v20220901.DescribeZones", async function () {
|
|
|
988
1088
|
}
|
|
989
1089
|
})
|
|
990
1090
|
|
|
1091
|
+
it("teo.v20220901.DescribeFunctions", async function () {
|
|
1092
|
+
try {
|
|
1093
|
+
const data = await client.DescribeFunctions({})
|
|
1094
|
+
expect(data).to.be.ok
|
|
1095
|
+
} catch(error) {
|
|
1096
|
+
expect(error.requestId).to.be.ok
|
|
1097
|
+
expect(error.code).to.be.ok
|
|
1098
|
+
}
|
|
1099
|
+
})
|
|
1100
|
+
|
|
991
1101
|
it("teo.v20220901.DeleteZone", async function () {
|
|
992
1102
|
try {
|
|
993
1103
|
const data = await client.DeleteZone({})
|