tencentcloud-sdk-nodejs 4.0.249 → 4.0.250
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 +166 -136
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_models.ts +20 -0
- package/src/services/asr/v20190614/asr_client.ts +2 -2
- package/src/services/asr/v20190614/asr_models.ts +4 -2
- package/src/services/ccc/v20200210/ccc_client.ts +31 -15
- package/src/services/ccc/v20200210/ccc_models.ts +334 -179
- package/src/services/cdn/v20180606/cdn_client.ts +1 -0
- package/src/services/cdn/v20180606/cdn_models.ts +45 -4
- package/src/services/cpdp/v20190820/cpdp_client.ts +34 -9
- package/src/services/cpdp/v20190820/cpdp_models.ts +266 -159
- package/src/services/domain/v20180808/domain_models.ts +20 -0
- package/src/services/ecm/v20190719/ecm_models.ts +2 -2
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +26 -13
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +71 -21
- package/src/services/postgres/v20170312/postgres_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +16 -0
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +2 -2
- package/tencentcloud/services/asr/v20190614/asr_client.js +2 -2
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +4 -2
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +9 -5
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +12 -6
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +283 -153
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +39 -4
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +11 -3
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +15 -3
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +227 -136
- package/tencentcloud/services/domain/v20180808/domain_models.d.ts +16 -0
- package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +2 -2
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +9 -5
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +12 -6
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +61 -18
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +1 -1
- package/test/ccc.v20200210.test.js +14 -4
- package/test/cpdp.v20190820.test.js +22 -2
- package/test/iotexplorer.v20190423.test.js +14 -4
|
@@ -1996,7 +1996,7 @@ export interface DBInstance {
|
|
|
1996
1996
|
*/
|
|
1997
1997
|
DBInstanceName: string;
|
|
1998
1998
|
/**
|
|
1999
|
-
* 实例状态,分别为:applying(申请中)、init(待初始化)、initing(初始化中)、running(运行中)、limited run(受限运行)、isolated(已隔离)、recycling(回收中)、recycled(已回收)、job running(任务执行中)、offline(下线)、migrating(迁移中)、expanding(扩容中)、waitSwitch(等待切换)、switching(切换中)、readonly(只读)、restarting(重启中)、
|
|
1999
|
+
* 实例状态,分别为:applying(申请中)、init(待初始化)、initing(初始化中)、running(运行中)、limited run(受限运行)、isolated(已隔离)、recycling(回收中)、recycled(已回收)、job running(任务执行中)、offline(下线)、migrating(迁移中)、expanding(扩容中)、waitSwitch(等待切换)、switching(切换中)、readonly(只读)、restarting(重启中)、network changing(网络变更中)
|
|
2000
2000
|
*/
|
|
2001
2001
|
DBInstanceStatus: string;
|
|
2002
2002
|
/**
|
|
@@ -18,6 +18,16 @@ const client = new tencentcloud.ccc.v20200210.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("ccc.v20200210.test.js", function () {
|
|
20
20
|
|
|
21
|
+
it("ccc.v20200210.DescribeStaffStatusMetrics", async function () {
|
|
22
|
+
try {
|
|
23
|
+
const data = await client.DescribeStaffStatusMetrics({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
21
31
|
it("ccc.v20200210.DescribeChatMessages", async function () {
|
|
22
32
|
try {
|
|
23
33
|
const data = await client.DescribeChatMessages({})
|
|
@@ -78,9 +88,9 @@ it("ccc.v20200210.DescribeSkillGroupInfoList", async function () {
|
|
|
78
88
|
}
|
|
79
89
|
})
|
|
80
90
|
|
|
81
|
-
it("ccc.v20200210.
|
|
91
|
+
it("ccc.v20200210.DescribeCCCBuyInfoList", async function () {
|
|
82
92
|
try {
|
|
83
|
-
const data = await client.
|
|
93
|
+
const data = await client.DescribeCCCBuyInfoList({})
|
|
84
94
|
expect(data).to.be.ok
|
|
85
95
|
} catch(error) {
|
|
86
96
|
expect(error.requestId).to.be.ok
|
|
@@ -148,9 +158,9 @@ it("ccc.v20200210.DescribePSTNActiveSessionList", async function () {
|
|
|
148
158
|
}
|
|
149
159
|
})
|
|
150
160
|
|
|
151
|
-
it("ccc.v20200210.
|
|
161
|
+
it("ccc.v20200210.DescribeStaffInfoList", async function () {
|
|
152
162
|
try {
|
|
153
|
-
const data = await client.
|
|
163
|
+
const data = await client.DescribeStaffInfoList({})
|
|
154
164
|
expect(data).to.be.ok
|
|
155
165
|
} catch(error) {
|
|
156
166
|
expect(error.requestId).to.be.ok
|
|
@@ -18,6 +18,16 @@ const client = new tencentcloud.cpdp.v20190820.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("cpdp.v20190820.test.js", function () {
|
|
20
20
|
|
|
21
|
+
it("cpdp.v20190820.QueryAssignment", async function () {
|
|
22
|
+
try {
|
|
23
|
+
const data = await client.QueryAssignment({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
21
31
|
it("cpdp.v20190820.DistributeAccreditQuery", async function () {
|
|
22
32
|
try {
|
|
23
33
|
const data = await client.DistributeAccreditQuery({})
|
|
@@ -58,9 +68,9 @@ it("cpdp.v20190820.CreateBatchPayment", async function () {
|
|
|
58
68
|
}
|
|
59
69
|
})
|
|
60
70
|
|
|
61
|
-
it("cpdp.v20190820.
|
|
71
|
+
it("cpdp.v20190820.DeduceQuota", async function () {
|
|
62
72
|
try {
|
|
63
|
-
const data = await client.
|
|
73
|
+
const data = await client.DeduceQuota({})
|
|
64
74
|
expect(data).to.be.ok
|
|
65
75
|
} catch(error) {
|
|
66
76
|
expect(error.requestId).to.be.ok
|
|
@@ -298,6 +308,16 @@ it("cpdp.v20190820.QuerySinglePaymentResult", async function () {
|
|
|
298
308
|
}
|
|
299
309
|
})
|
|
300
310
|
|
|
311
|
+
it("cpdp.v20190820.ViewMerchant", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.ViewMerchant({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
301
321
|
it("cpdp.v20190820.UploadTaxPayment", async function () {
|
|
302
322
|
try {
|
|
303
323
|
const data = await client.UploadTaxPayment({})
|
|
@@ -58,6 +58,16 @@ it("iotexplorer.v20190423.DeleteStudioProduct", async function () {
|
|
|
58
58
|
}
|
|
59
59
|
})
|
|
60
60
|
|
|
61
|
+
it("iotexplorer.v20190423.ReleaseStudioProduct", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.ReleaseStudioProduct({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
61
71
|
it("iotexplorer.v20190423.SearchPositionSpace", async function () {
|
|
62
72
|
try {
|
|
63
73
|
const data = await client.SearchPositionSpace({})
|
|
@@ -518,9 +528,9 @@ it("iotexplorer.v20190423.DescribeFenceEventList", async function () {
|
|
|
518
528
|
}
|
|
519
529
|
})
|
|
520
530
|
|
|
521
|
-
it("iotexplorer.v20190423.
|
|
531
|
+
it("iotexplorer.v20190423.GetPositionSpaceList", async function () {
|
|
522
532
|
try {
|
|
523
|
-
const data = await client.
|
|
533
|
+
const data = await client.GetPositionSpaceList({})
|
|
524
534
|
expect(data).to.be.ok
|
|
525
535
|
} catch(error) {
|
|
526
536
|
expect(error.requestId).to.be.ok
|
|
@@ -538,9 +548,9 @@ it("iotexplorer.v20190423.DescribeFirmwareTask", async function () {
|
|
|
538
548
|
}
|
|
539
549
|
})
|
|
540
550
|
|
|
541
|
-
it("iotexplorer.v20190423.
|
|
551
|
+
it("iotexplorer.v20190423.GenSingleDeviceSignatureOfPublic", async function () {
|
|
542
552
|
try {
|
|
543
|
-
const data = await client.
|
|
553
|
+
const data = await client.GenSingleDeviceSignatureOfPublic({})
|
|
544
554
|
expect(data).to.be.ok
|
|
545
555
|
} catch(error) {
|
|
546
556
|
expect(error.requestId).to.be.ok
|