tencentcloud-sdk-nodejs 4.0.964 → 4.0.965
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 +168 -0
- package/SERVICE_CHANGELOG.md +183 -506
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/acp/v20220105/acp_models.ts +2 -2
- package/src/services/as/v20180419/as_client.ts +9 -3
- package/src/services/as/v20180419/as_models.ts +10 -2
- package/src/services/ccc/v20200210/ccc_models.ts +3 -129
- package/src/services/cdb/v20170320/cdb_models.ts +1 -1
- package/src/services/cfw/v20190904/cfw_models.ts +2 -2
- package/src/services/clb/v20180317/clb_models.ts +1 -1
- package/src/services/csip/v20221121/csip_models.ts +0 -2
- package/src/services/cwp/v20180228/cwp_models.ts +3 -3
- package/src/services/essbasic/v20210526/essbasic_client.ts +4 -3
- package/src/services/hunyuan/v20230901/hunyuan_models.ts +4 -0
- package/src/services/iotvideo/v20191126/iotvideo_client.ts +47 -20
- package/src/services/iotvideo/v20191126/iotvideo_models.ts +142 -12
- package/src/services/mqtt/v20240516/mqtt_models.ts +2 -2
- package/src/services/privatedns/v20201028/privatedns_client.ts +73 -23
- package/src/services/privatedns/v20201028/privatedns_models.ts +361 -84
- package/src/services/tat/v20201028/tat_models.ts +11 -34
- package/src/services/tem/v20210701/tem_models.ts +12 -12
- package/src/services/vclm/v20240523/vclm_client.ts +11 -9
- package/src/services/vclm/v20240523/vclm_models.ts +252 -192
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/acp/v20220105/acp_models.d.ts +2 -2
- package/tencentcloud/services/as/v20180419/as_client.d.ts +7 -1
- package/tencentcloud/services/as/v20180419/as_client.js +7 -1
- package/tencentcloud/services/as/v20180419/as_models.d.ts +10 -2
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +2 -128
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +2 -2
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +0 -2
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +3 -3
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +4 -3
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +4 -3
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +4 -0
- package/tencentcloud/services/iotvideo/v20191126/iotvideo_client.d.ts +15 -7
- package/tencentcloud/services/iotvideo/v20191126/iotvideo_client.js +21 -9
- package/tencentcloud/services/iotvideo/v20191126/iotvideo_models.d.ts +135 -12
- package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +2 -2
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +21 -5
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +30 -6
- package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +350 -83
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +11 -34
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +12 -12
- package/tencentcloud/services/vclm/v20240523/vclm_client.d.ts +1 -1
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +246 -188
- package/test/iotvideo.v20191126.test.js +26 -6
- package/test/privatedns.v20201028.test.js +44 -4
|
@@ -38,9 +38,9 @@ it("privatedns.v20201028.DescribePrivateZone", async function () {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
-
it("privatedns.v20201028.
|
|
41
|
+
it("privatedns.v20201028.DescribePrivateZoneRecordList", async function () {
|
|
42
42
|
try {
|
|
43
|
-
const data = await client.
|
|
43
|
+
const data = await client.DescribePrivateZoneRecordList({})
|
|
44
44
|
expect(data).to.be.ok
|
|
45
45
|
} catch(error) {
|
|
46
46
|
expect(error.requestId).to.be.ok
|
|
@@ -78,6 +78,16 @@ it("privatedns.v20201028.CreatePrivateZoneRecord", async function () {
|
|
|
78
78
|
}
|
|
79
79
|
})
|
|
80
80
|
|
|
81
|
+
it("privatedns.v20201028.DescribeEndPointList", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DescribeEndPointList({})
|
|
84
|
+
expect(data).to.be.ok
|
|
85
|
+
} catch(error) {
|
|
86
|
+
expect(error.requestId).to.be.ok
|
|
87
|
+
expect(error.code).to.be.ok
|
|
88
|
+
}
|
|
89
|
+
})
|
|
90
|
+
|
|
81
91
|
it("privatedns.v20201028.CreatePrivateZone", async function () {
|
|
82
92
|
try {
|
|
83
93
|
const data = await client.CreatePrivateZone({})
|
|
@@ -118,9 +128,9 @@ it("privatedns.v20201028.AddSpecifyPrivateZoneVpc", async function () {
|
|
|
118
128
|
}
|
|
119
129
|
})
|
|
120
130
|
|
|
121
|
-
it("privatedns.v20201028.
|
|
131
|
+
it("privatedns.v20201028.DeleteEndPoint", async function () {
|
|
122
132
|
try {
|
|
123
|
-
const data = await client.
|
|
133
|
+
const data = await client.DeleteEndPoint({})
|
|
124
134
|
expect(data).to.be.ok
|
|
125
135
|
} catch(error) {
|
|
126
136
|
expect(error.requestId).to.be.ok
|
|
@@ -218,6 +228,16 @@ it("privatedns.v20201028.DescribeAccountVpcList", async function () {
|
|
|
218
228
|
}
|
|
219
229
|
})
|
|
220
230
|
|
|
231
|
+
it("privatedns.v20201028.CreateEndPointAndEndPointService", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.CreateEndPointAndEndPointService({})
|
|
234
|
+
expect(data).to.be.ok
|
|
235
|
+
} catch(error) {
|
|
236
|
+
expect(error.requestId).to.be.ok
|
|
237
|
+
expect(error.code).to.be.ok
|
|
238
|
+
}
|
|
239
|
+
})
|
|
240
|
+
|
|
221
241
|
it("privatedns.v20201028.ModifyRecordsStatus", async function () {
|
|
222
242
|
try {
|
|
223
243
|
const data = await client.ModifyRecordsStatus({})
|
|
@@ -238,6 +258,16 @@ it("privatedns.v20201028.DeleteSpecifyPrivateZoneVpc", async function () {
|
|
|
238
258
|
}
|
|
239
259
|
})
|
|
240
260
|
|
|
261
|
+
it("privatedns.v20201028.CreateForwardRule", async function () {
|
|
262
|
+
try {
|
|
263
|
+
const data = await client.CreateForwardRule({})
|
|
264
|
+
expect(data).to.be.ok
|
|
265
|
+
} catch(error) {
|
|
266
|
+
expect(error.requestId).to.be.ok
|
|
267
|
+
expect(error.code).to.be.ok
|
|
268
|
+
}
|
|
269
|
+
})
|
|
270
|
+
|
|
241
271
|
it("privatedns.v20201028.DescribePrivateZoneService", async function () {
|
|
242
272
|
try {
|
|
243
273
|
const data = await client.DescribePrivateZoneService({})
|
|
@@ -248,6 +278,16 @@ it("privatedns.v20201028.DescribePrivateZoneService", async function () {
|
|
|
248
278
|
}
|
|
249
279
|
})
|
|
250
280
|
|
|
281
|
+
it("privatedns.v20201028.DescribeForwardRuleList", async function () {
|
|
282
|
+
try {
|
|
283
|
+
const data = await client.DescribeForwardRuleList({})
|
|
284
|
+
expect(data).to.be.ok
|
|
285
|
+
} catch(error) {
|
|
286
|
+
expect(error.requestId).to.be.ok
|
|
287
|
+
expect(error.code).to.be.ok
|
|
288
|
+
}
|
|
289
|
+
})
|
|
290
|
+
|
|
251
291
|
it("privatedns.v20201028.DeletePrivateZoneRecord", async function () {
|
|
252
292
|
try {
|
|
253
293
|
const data = await client.DeletePrivateZoneRecord({})
|