tencentcloud-sdk-nodejs 4.0.447 → 4.0.448
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 +91 -0
- package/SERVICE_CHANGELOG.md +134 -147
- package/package.json +1 -1
- package/products.md +10 -10
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_client.ts +12 -0
- package/src/services/ccc/v20200210/ccc_models.ts +30 -0
- package/src/services/ckafka/v20190819/ckafka_client.ts +3 -2
- package/src/services/ckafka/v20190819/ckafka_models.ts +78 -46
- package/src/services/clb/v20180317/clb_models.ts +1 -1
- package/src/services/cls/v20201016/cls_models.ts +23 -0
- package/src/services/mongodb/v20190725/mongodb_client.ts +1 -1
- package/src/services/mongodb/v20190725/mongodb_models.ts +1 -1
- package/src/services/ocr/v20181119/ocr_client.ts +1 -1
- package/src/services/rum/v20210622/rum_client.ts +1 -1
- package/src/services/tdmq/v20200217/tdmq_client.ts +13 -0
- package/src/services/tdmq/v20200217/tdmq_models.ts +117 -0
- package/src/services/wedata/v20210820/wedata_client.ts +33 -5
- package/src/services/wedata/v20210820/wedata_models.ts +222 -100
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +5 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +6 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +26 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +1 -1
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +1 -1
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +65 -38
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +20 -0
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +1 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +1 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +1 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -1
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +1 -1
- package/tencentcloud/services/rum/v20210622/rum_client.js +1 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +5 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +6 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +97 -0
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +11 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +14 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +191 -86
- package/test/ccc.v20200210.test.js +10 -0
- package/test/tdmq.v20200217.test.js +10 -0
- package/test/wedata.v20210820.test.js +20 -0
|
@@ -198,6 +198,16 @@ it("ccc.v20200210.UnbindStaffSkillGroupList", async function () {
|
|
|
198
198
|
}
|
|
199
199
|
})
|
|
200
200
|
|
|
201
|
+
it("ccc.v20200210.DisableCCCPhoneNumber", async function () {
|
|
202
|
+
try {
|
|
203
|
+
const data = await client.DisableCCCPhoneNumber({})
|
|
204
|
+
expect(data).to.be.ok
|
|
205
|
+
} catch(error) {
|
|
206
|
+
expect(error.requestId).to.be.ok
|
|
207
|
+
expect(error.code).to.be.ok
|
|
208
|
+
}
|
|
209
|
+
})
|
|
210
|
+
|
|
201
211
|
it("ccc.v20200210.DescribeStaffStatusMetrics", async function () {
|
|
202
212
|
try {
|
|
203
213
|
const data = await client.DescribeStaffStatusMetrics({})
|
|
@@ -598,6 +598,16 @@ it("tdmq.v20200217.DescribeAMQPRouteRelations", async function () {
|
|
|
598
598
|
}
|
|
599
599
|
})
|
|
600
600
|
|
|
601
|
+
it("tdmq.v20200217.DescribeRocketMQVipInstances", async function () {
|
|
602
|
+
try {
|
|
603
|
+
const data = await client.DescribeRocketMQVipInstances({})
|
|
604
|
+
expect(data).to.be.ok
|
|
605
|
+
} catch(error) {
|
|
606
|
+
expect(error.requestId).to.be.ok
|
|
607
|
+
expect(error.code).to.be.ok
|
|
608
|
+
}
|
|
609
|
+
})
|
|
610
|
+
|
|
601
611
|
it("tdmq.v20200217.DescribeAMQPClusters", async function () {
|
|
602
612
|
try {
|
|
603
613
|
const data = await client.DescribeAMQPClusters({})
|
|
@@ -108,6 +108,16 @@ it("wedata.v20210820.ModifyDataSource", async function () {
|
|
|
108
108
|
}
|
|
109
109
|
})
|
|
110
110
|
|
|
111
|
+
it("wedata.v20210820.DescribeDataSourceList", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.DescribeDataSourceList({})
|
|
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("wedata.v20210820.ModifyTaskInfo", async function () {
|
|
112
122
|
try {
|
|
113
123
|
const data = await client.ModifyTaskInfo({})
|
|
@@ -188,6 +198,16 @@ it("wedata.v20210820.FreezeTasksByMultiWorkflow", async function () {
|
|
|
188
198
|
}
|
|
189
199
|
})
|
|
190
200
|
|
|
201
|
+
it("wedata.v20210820.DescribeDataSourceWithoutInfo", async function () {
|
|
202
|
+
try {
|
|
203
|
+
const data = await client.DescribeDataSourceWithoutInfo({})
|
|
204
|
+
expect(data).to.be.ok
|
|
205
|
+
} catch(error) {
|
|
206
|
+
expect(error.requestId).to.be.ok
|
|
207
|
+
expect(error.code).to.be.ok
|
|
208
|
+
}
|
|
209
|
+
})
|
|
210
|
+
|
|
191
211
|
it("wedata.v20210820.DescribeInstanceLogs", async function () {
|
|
192
212
|
try {
|
|
193
213
|
const data = await client.DescribeInstanceLogs({})
|