tencentcloud-sdk-nodejs 4.0.689 → 4.0.690
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 +225 -0
- package/SERVICE_CHANGELOG.md +309 -135
- package/package.json +1 -1
- package/products.md +16 -16
- package/src/common/sdk_version.ts +1 -1
- package/src/services/batch/v20170312/batch_models.ts +0 -4
- package/src/services/bi/v20220105/bi_models.ts +18 -0
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +24 -14
- package/src/services/dlc/v20210125/dlc_client.ts +28 -5
- package/src/services/dlc/v20210125/dlc_models.ts +679 -221
- package/src/services/ess/v20201111/ess_client.ts +20 -17
- package/src/services/ess/v20201111/ess_models.ts +163 -106
- package/src/services/facefusion/v20220927/facefusion_models.ts +5 -1
- package/src/services/iss/v20230517/iss_models.ts +3 -3
- package/src/services/live/v20180801/live_models.ts +32 -27
- package/src/services/rce/v20201103/rce_models.ts +42 -11
- package/src/services/tat/v20201028/tat_models.ts +30 -9
- package/src/services/tse/v20201207/tse_client.ts +82 -18
- package/src/services/tse/v20201207/tse_models.ts +543 -270
- package/src/services/vod/v20180717/vod_models.ts +4 -3
- package/src/services/vpc/v20170312/vpc_models.ts +4 -0
- package/src/services/waf/v20180125/waf_client.ts +51 -3
- package/src/services/waf/v20180125/waf_models.ts +171 -38
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +0 -4
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +18 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +24 -14
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +663 -218
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +17 -14
- package/tencentcloud/services/ess/v20201111/ess_client.js +17 -14
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +163 -106
- package/tencentcloud/services/facefusion/v20220927/facefusion_models.d.ts +5 -1
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +3 -3
- package/tencentcloud/services/live/v20180801/live_models.d.ts +32 -27
- package/tencentcloud/services/rce/v20201103/rce_models.d.ts +42 -11
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +30 -9
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +25 -5
- package/tencentcloud/services/tse/v20201207/tse_client.js +36 -6
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +531 -272
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -3
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +4 -0
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +18 -2
- package/tencentcloud/services/waf/v20180125/waf_client.js +25 -1
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +163 -38
- package/test/dlc.v20210125.test.js +10 -0
- package/test/tse.v20201207.test.js +54 -4
- package/test/waf.v20180125.test.js +40 -0
|
@@ -98,6 +98,16 @@ it("waf.v20180125.ModifyCustomRule", async function () {
|
|
|
98
98
|
}
|
|
99
99
|
})
|
|
100
100
|
|
|
101
|
+
it("waf.v20180125.ModifyInstanceQpsLimit", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.ModifyInstanceQpsLimit({})
|
|
104
|
+
expect(data).to.be.ok
|
|
105
|
+
} catch(error) {
|
|
106
|
+
expect(error.requestId).to.be.ok
|
|
107
|
+
expect(error.code).to.be.ok
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
|
|
101
111
|
it("waf.v20180125.DescribeAutoDenyIP", async function () {
|
|
102
112
|
try {
|
|
103
113
|
const data = await client.DescribeAutoDenyIP({})
|
|
@@ -168,6 +178,16 @@ it("waf.v20180125.ModifySpartaProtection", async function () {
|
|
|
168
178
|
}
|
|
169
179
|
})
|
|
170
180
|
|
|
181
|
+
it("waf.v20180125.ModifyInstanceElasticMode", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.ModifyInstanceElasticMode({})
|
|
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("waf.v20180125.ModifyApiAnalyzeStatus", async function () {
|
|
172
192
|
try {
|
|
173
193
|
const data = await client.ModifyApiAnalyzeStatus({})
|
|
@@ -418,6 +438,16 @@ it("waf.v20180125.ModifyCustomWhiteRule", async function () {
|
|
|
418
438
|
}
|
|
419
439
|
})
|
|
420
440
|
|
|
441
|
+
it("waf.v20180125.ModifyInstanceRenewFlag", async function () {
|
|
442
|
+
try {
|
|
443
|
+
const data = await client.ModifyInstanceRenewFlag({})
|
|
444
|
+
expect(data).to.be.ok
|
|
445
|
+
} catch(error) {
|
|
446
|
+
expect(error.requestId).to.be.ok
|
|
447
|
+
expect(error.code).to.be.ok
|
|
448
|
+
}
|
|
449
|
+
})
|
|
450
|
+
|
|
421
451
|
it("waf.v20180125.DescribeDomainDetailsSaas", async function () {
|
|
422
452
|
try {
|
|
423
453
|
const data = await client.DescribeDomainDetailsSaas({})
|
|
@@ -928,6 +958,16 @@ it("waf.v20180125.ModifyHostFlowMode", async function () {
|
|
|
928
958
|
}
|
|
929
959
|
})
|
|
930
960
|
|
|
961
|
+
it("waf.v20180125.ModifyInstanceName", async function () {
|
|
962
|
+
try {
|
|
963
|
+
const data = await client.ModifyInstanceName({})
|
|
964
|
+
expect(data).to.be.ok
|
|
965
|
+
} catch(error) {
|
|
966
|
+
expect(error.requestId).to.be.ok
|
|
967
|
+
expect(error.code).to.be.ok
|
|
968
|
+
}
|
|
969
|
+
})
|
|
970
|
+
|
|
931
971
|
it("waf.v20180125.DescribeUserCdcClbWafRegions", async function () {
|
|
932
972
|
try {
|
|
933
973
|
const data = await client.DescribeUserCdcClbWafRegions({})
|