tencentcloud-sdk-nodejs 4.0.709 → 4.0.710
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 +147 -0
- package/SERVICE_CHANGELOG.md +181 -215
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bi/v20220105/bi_client.ts +91 -79
- package/src/services/bi/v20220105/bi_models.ts +68 -25
- package/src/services/cdn/v20180606/cdn_models.ts +25 -25
- package/src/services/clb/v20180317/clb_client.ts +1 -1
- package/src/services/clb/v20180317/clb_models.ts +15 -10
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +2 -2
- package/src/services/dlc/v20210125/dlc_client.ts +3 -2
- package/src/services/dlc/v20210125/dlc_models.ts +73 -38
- package/src/services/domain/v20180808/domain_client.ts +78 -17
- package/src/services/domain/v20180808/domain_models.ts +188 -21
- package/src/services/ess/v20201111/ess_models.ts +11 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +11 -0
- package/src/services/faceid/v20180301/faceid_models.ts +12 -12
- package/src/services/tione/v20211111/tione_client.ts +2 -4
- package/src/services/tione/v20211111/tione_models.ts +0 -2
- package/src/services/tse/v20201207/tse_models.ts +10 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bi/v20220105/bi_client.d.ts +35 -31
- package/tencentcloud/services/bi/v20220105/bi_client.js +51 -45
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +65 -24
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +25 -25
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +1 -1
- package/tencentcloud/services/clb/v20180317/clb_client.js +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +15 -10
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +2 -2
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +72 -38
- package/tencentcloud/services/domain/v20180808/domain_client.d.ts +26 -6
- package/tencentcloud/services/domain/v20180808/domain_client.js +37 -7
- package/tencentcloud/services/domain/v20180808/domain_models.d.ts +177 -21
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +11 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +12 -12
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +1 -3
- package/tencentcloud/services/tione/v20211111/tione_client.js +1 -3
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +0 -2
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +10 -0
- package/test/bi.v20220105.test.js +42 -32
- package/test/domain.v20180808.test.js +54 -4
|
@@ -28,6 +28,16 @@ it("domain.v20180808.SetDomainAutoRenew", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
it("domain.v20180808.ModifyCustomDnsHost", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.ModifyCustomDnsHost({})
|
|
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("domain.v20180808.CheckBatchStatus", async function () {
|
|
32
42
|
try {
|
|
33
43
|
const data = await client.CheckBatchStatus({})
|
|
@@ -68,6 +78,16 @@ it("domain.v20180808.SendPhoneEmailCode", async function () {
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
81
|
+
it("domain.v20180808.DescribeCustomDnsHostSet", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DescribeCustomDnsHostSet({})
|
|
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
|
+
|
|
71
91
|
it("domain.v20180808.DescribeDomainNameList", async function () {
|
|
72
92
|
try {
|
|
73
93
|
const data = await client.DescribeDomainNameList({})
|
|
@@ -78,6 +98,16 @@ it("domain.v20180808.DescribeDomainNameList", async function () {
|
|
|
78
98
|
}
|
|
79
99
|
})
|
|
80
100
|
|
|
101
|
+
it("domain.v20180808.ModifyIntlCustomDnsHost", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.ModifyIntlCustomDnsHost({})
|
|
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
|
+
|
|
81
111
|
it("domain.v20180808.CreateDomainBatch", async function () {
|
|
82
112
|
try {
|
|
83
113
|
const data = await client.CreateDomainBatch({})
|
|
@@ -128,9 +158,19 @@ it("domain.v20180808.CheckDomain", async function () {
|
|
|
128
158
|
}
|
|
129
159
|
})
|
|
130
160
|
|
|
131
|
-
it("domain.v20180808.
|
|
161
|
+
it("domain.v20180808.SyncCustomDnsHost", async function () {
|
|
132
162
|
try {
|
|
133
|
-
const data = await client.
|
|
163
|
+
const data = await client.SyncCustomDnsHost({})
|
|
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
|
+
|
|
171
|
+
it("domain.v20180808.ModifyDomainDNSBatch", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.ModifyDomainDNSBatch({})
|
|
134
174
|
expect(data).to.be.ok
|
|
135
175
|
} catch(error) {
|
|
136
176
|
expect(error.requestId).to.be.ok
|
|
@@ -248,6 +288,16 @@ it("domain.v20180808.ModifyDomainOwnerBatch", async function () {
|
|
|
248
288
|
}
|
|
249
289
|
})
|
|
250
290
|
|
|
291
|
+
it("domain.v20180808.DeleteCustomDnsHost", async function () {
|
|
292
|
+
try {
|
|
293
|
+
const data = await client.DeleteCustomDnsHost({})
|
|
294
|
+
expect(data).to.be.ok
|
|
295
|
+
} catch(error) {
|
|
296
|
+
expect(error.requestId).to.be.ok
|
|
297
|
+
expect(error.code).to.be.ok
|
|
298
|
+
}
|
|
299
|
+
})
|
|
300
|
+
|
|
251
301
|
it("domain.v20180808.DescribePhoneEmailList", async function () {
|
|
252
302
|
try {
|
|
253
303
|
const data = await client.DescribePhoneEmailList({})
|
|
@@ -258,9 +308,9 @@ it("domain.v20180808.DescribePhoneEmailList", async function () {
|
|
|
258
308
|
}
|
|
259
309
|
})
|
|
260
310
|
|
|
261
|
-
it("domain.v20180808.
|
|
311
|
+
it("domain.v20180808.RenewDomainBatch", async function () {
|
|
262
312
|
try {
|
|
263
|
-
const data = await client.
|
|
313
|
+
const data = await client.RenewDomainBatch({})
|
|
264
314
|
expect(data).to.be.ok
|
|
265
315
|
} catch(error) {
|
|
266
316
|
expect(error.requestId).to.be.ok
|