tencentcloud-sdk-nodejs 4.0.690 → 4.0.691
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 +332 -0
- package/SERVICE_CHANGELOG.md +498 -109
- package/package.json +1 -1
- package/products.md +15 -15
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_client.ts +8 -4
- package/src/services/dlc/v20210125/dlc_models.ts +2 -2
- package/src/services/dsgc/v20190723/dsgc_models.ts +40 -0
- package/src/services/ess/v20201111/ess_client.ts +28 -11
- package/src/services/ess/v20201111/ess_models.ts +126 -15
- package/src/services/essbasic/v20210526/essbasic_client.ts +37 -19
- package/src/services/essbasic/v20210526/essbasic_models.ts +106 -0
- package/src/services/faceid/v20180301/faceid_models.ts +9 -12
- package/src/services/iai/v20200303/iai_models.ts +2 -2
- package/src/services/mps/v20190612/mps_client.ts +50 -12
- package/src/services/mps/v20190612/mps_models.ts +1191 -379
- package/src/services/organization/v20210331/organization_client.ts +31 -7
- package/src/services/organization/v20210331/organization_models.ts +128 -90
- package/src/services/privatedns/v20201028/privatedns_client.ts +25 -1
- package/src/services/privatedns/v20201028/privatedns_models.ts +88 -8
- package/src/services/tdmq/v20200217/tdmq_client.ts +39 -2
- package/src/services/tdmq/v20200217/tdmq_models.ts +243 -88
- package/src/services/tts/v20190823/tts_models.ts +8 -0
- package/src/services/waf/v20180125/waf_models.ts +53 -24
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_client.d.ts +6 -2
- package/tencentcloud/services/antiddos/v20200309/antiddos_client.js +6 -2
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +2 -2
- package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +40 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +16 -7
- package/tencentcloud/services/ess/v20201111/ess_client.js +18 -7
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +124 -15
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +22 -12
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +25 -13
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +104 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +9 -12
- package/tencentcloud/services/iai/v20200303/iai_models.d.ts +2 -2
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +15 -4
- package/tencentcloud/services/mps/v20190612/mps_client.js +14 -3
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +1162 -377
- package/tencentcloud/services/organization/v20210331/organization_client.d.ts +9 -1
- package/tencentcloud/services/organization/v20210331/organization_client.js +12 -0
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +124 -90
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +9 -1
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +12 -0
- package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +84 -8
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +13 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +18 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +236 -88
- package/tencentcloud/services/tts/v20190823/tts_models.d.ts +8 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +53 -24
- package/test/ess.v20201111.test.js +12 -2
- package/test/essbasic.v20210526.test.js +14 -4
- package/test/organization.v20210331.test.js +20 -0
- package/test/privatedns.v20201028.test.js +20 -0
- package/test/tdmq.v20200217.test.js +30 -0
|
@@ -158,6 +158,16 @@ it("organization.v20210331.DescribeOrganizationMemberPolicies", async function (
|
|
|
158
158
|
}
|
|
159
159
|
})
|
|
160
160
|
|
|
161
|
+
it("organization.v20210331.DeleteOrganization", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.DeleteOrganization({})
|
|
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
|
+
|
|
161
171
|
it("organization.v20210331.CancelOrganizationMemberAuthAccount", async function () {
|
|
162
172
|
try {
|
|
163
173
|
const data = await client.CancelOrganizationMemberAuthAccount({})
|
|
@@ -198,6 +208,16 @@ it("organization.v20210331.MoveOrganizationNodeMembers", async function () {
|
|
|
198
208
|
}
|
|
199
209
|
})
|
|
200
210
|
|
|
211
|
+
it("organization.v20210331.CreateOrganization", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.CreateOrganization({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
201
221
|
it("organization.v20210331.AddOrganizationMemberEmail", async function () {
|
|
202
222
|
try {
|
|
203
223
|
const data = await client.AddOrganizationMemberEmail({})
|
|
@@ -108,6 +108,16 @@ it("privatedns.v20201028.DescribePrivateZoneRecordList", async function () {
|
|
|
108
108
|
}
|
|
109
109
|
})
|
|
110
110
|
|
|
111
|
+
it("privatedns.v20201028.AddSpecifyPrivateZoneVpc", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.AddSpecifyPrivateZoneVpc({})
|
|
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
|
+
|
|
111
121
|
it("privatedns.v20201028.ModifyPrivateZone", async function () {
|
|
112
122
|
try {
|
|
113
123
|
const data = await client.ModifyPrivateZone({})
|
|
@@ -198,6 +208,16 @@ it("privatedns.v20201028.ModifyRecordsStatus", async function () {
|
|
|
198
208
|
}
|
|
199
209
|
})
|
|
200
210
|
|
|
211
|
+
it("privatedns.v20201028.DeleteSpecifyPrivateZoneVpc", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.DeleteSpecifyPrivateZoneVpc({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
201
221
|
it("privatedns.v20201028.DescribePrivateZoneService", async function () {
|
|
202
222
|
try {
|
|
203
223
|
const data = await client.DescribePrivateZoneService({})
|
|
@@ -338,6 +338,16 @@ it("tdmq.v20200217.DeleteCmqTopic", async function () {
|
|
|
338
338
|
}
|
|
339
339
|
})
|
|
340
340
|
|
|
341
|
+
it("tdmq.v20200217.ModifyPublicNetworkAccessPoint", async function () {
|
|
342
|
+
try {
|
|
343
|
+
const data = await client.ModifyPublicNetworkAccessPoint({})
|
|
344
|
+
expect(data).to.be.ok
|
|
345
|
+
} catch(error) {
|
|
346
|
+
expect(error.requestId).to.be.ok
|
|
347
|
+
expect(error.code).to.be.ok
|
|
348
|
+
}
|
|
349
|
+
})
|
|
350
|
+
|
|
341
351
|
it("tdmq.v20200217.CreateCmqQueue", async function () {
|
|
342
352
|
try {
|
|
343
353
|
const data = await client.CreateCmqQueue({})
|
|
@@ -428,6 +438,16 @@ it("tdmq.v20200217.ResetRocketMQConsumerOffSet", async function () {
|
|
|
428
438
|
}
|
|
429
439
|
})
|
|
430
440
|
|
|
441
|
+
it("tdmq.v20200217.SetRocketMQPublicAccessPoint", async function () {
|
|
442
|
+
try {
|
|
443
|
+
const data = await client.SetRocketMQPublicAccessPoint({})
|
|
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
|
+
|
|
431
451
|
it("tdmq.v20200217.DescribeSubscriptions", async function () {
|
|
432
452
|
try {
|
|
433
453
|
const data = await client.DescribeSubscriptions({})
|
|
@@ -1018,6 +1038,16 @@ it("tdmq.v20200217.DeleteCmqSubscribe", async function () {
|
|
|
1018
1038
|
}
|
|
1019
1039
|
})
|
|
1020
1040
|
|
|
1041
|
+
it("tdmq.v20200217.DescribeRocketMQPublicAccessPoint", async function () {
|
|
1042
|
+
try {
|
|
1043
|
+
const data = await client.DescribeRocketMQPublicAccessPoint({})
|
|
1044
|
+
expect(data).to.be.ok
|
|
1045
|
+
} catch(error) {
|
|
1046
|
+
expect(error.requestId).to.be.ok
|
|
1047
|
+
expect(error.code).to.be.ok
|
|
1048
|
+
}
|
|
1049
|
+
})
|
|
1050
|
+
|
|
1021
1051
|
it("tdmq.v20200217.ModifyRole", async function () {
|
|
1022
1052
|
try {
|
|
1023
1053
|
const data = await client.ModifyRole({})
|