tencentcloud-sdk-nodejs 4.0.720 → 4.0.722
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 +313 -0
- package/SERVICE_CHANGELOG.md +298 -42
- package/package.json +1 -1
- package/products.md +17 -17
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_models.ts +13 -0
- package/src/services/cdb/v20170320/cdb_models.ts +1 -1
- package/src/services/csip/v20221121/csip_models.ts +15 -0
- package/src/services/cvm/v20170312/cvm_models.ts +7 -7
- package/src/services/dnspod/v20210323/dnspod_client.ts +97 -48
- package/src/services/dnspod/v20210323/dnspod_models.ts +292 -138
- package/src/services/essbasic/v20210526/essbasic_client.ts +73 -46
- package/src/services/essbasic/v20210526/essbasic_models.ts +255 -162
- package/src/services/facefusion/v20181201/facefusion_models.ts +5 -4
- package/src/services/sqlserver/v20180328/sqlserver_client.ts +5 -4
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +108 -43
- package/src/services/tdmq/v20200217/tdmq_client.ts +61 -32
- package/src/services/tdmq/v20200217/tdmq_models.ts +339 -108
- package/src/services/teo/v20220901/teo_models.ts +1 -1
- package/src/services/thpc/v20230321/thpc_models.ts +4 -0
- package/src/services/tione/v20211111/tione_client.ts +1 -0
- package/src/services/tione/v20211111/tione_models.ts +30 -9
- package/src/services/vpc/v20170312/vpc_client.ts +0 -1
- package/src/services/vpc/v20170312/vpc_models.ts +1 -1
- package/src/services/vrs/v20200824/vrs_models.ts +10 -1
- package/src/services/waf/v20180125/waf_client.ts +8 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +13 -0
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +15 -0
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +7 -7
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +31 -15
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +45 -21
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +282 -137
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +71 -44
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +71 -44
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +255 -162
- package/tencentcloud/services/facefusion/v20181201/facefusion_models.d.ts +5 -4
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.d.ts +4 -4
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.js +3 -3
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +107 -43
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +19 -11
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +26 -14
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +330 -108
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +1 -1
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +4 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +29 -9
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +0 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +0 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +1 -1
- package/tencentcloud/services/vrs/v20200824/vrs_models.d.ts +10 -1
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +6 -2
- package/tencentcloud/services/waf/v20180125/waf_client.js +6 -2
- package/test/dnspod.v20210323.test.js +60 -20
- package/test/tdmq.v20200217.test.js +34 -14
|
@@ -1050,6 +1050,21 @@ export interface Service {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
LatestVersion?: string;
|
|
1052
1052
|
}
|
|
1053
|
+
/**
|
|
1054
|
+
* 跨租户弹性网卡下Pod调用信息
|
|
1055
|
+
*/
|
|
1056
|
+
export interface CrossTenantENIInfo {
|
|
1057
|
+
/**
|
|
1058
|
+
* Pod IP
|
|
1059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1060
|
+
*/
|
|
1061
|
+
PrimaryIP?: string;
|
|
1062
|
+
/**
|
|
1063
|
+
* Pod Port
|
|
1064
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1065
|
+
*/
|
|
1066
|
+
Port?: string;
|
|
1067
|
+
}
|
|
1053
1068
|
/**
|
|
1054
1069
|
* 模型专业参数
|
|
1055
1070
|
*/
|
|
@@ -1995,27 +2010,27 @@ export interface ContainerStatus {
|
|
|
1995
2010
|
* 重启次数
|
|
1996
2011
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1997
2012
|
*/
|
|
1998
|
-
RestartCount
|
|
2013
|
+
RestartCount: number;
|
|
1999
2014
|
/**
|
|
2000
2015
|
* 状态
|
|
2001
2016
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2002
2017
|
*/
|
|
2003
|
-
State
|
|
2018
|
+
State: string;
|
|
2004
2019
|
/**
|
|
2005
2020
|
* 是否就绪
|
|
2006
2021
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2007
2022
|
*/
|
|
2008
|
-
Ready
|
|
2023
|
+
Ready: boolean;
|
|
2009
2024
|
/**
|
|
2010
2025
|
* 状态原因
|
|
2011
2026
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2012
2027
|
*/
|
|
2013
|
-
Reason
|
|
2028
|
+
Reason: string;
|
|
2014
2029
|
/**
|
|
2015
2030
|
* 容器的错误信息
|
|
2016
2031
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2017
2032
|
*/
|
|
2018
|
-
Message
|
|
2033
|
+
Message: string;
|
|
2019
2034
|
}
|
|
2020
2035
|
/**
|
|
2021
2036
|
* 三级标签
|
|
@@ -4802,6 +4817,11 @@ export interface Pod {
|
|
|
4802
4817
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4803
4818
|
*/
|
|
4804
4819
|
ContainerInfos?: Array<Container>;
|
|
4820
|
+
/**
|
|
4821
|
+
* 容器调用信息
|
|
4822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4823
|
+
*/
|
|
4824
|
+
CrossTenantENIInfo?: CrossTenantENIInfo;
|
|
4805
4825
|
}
|
|
4806
4826
|
/**
|
|
4807
4827
|
* DescribeLatestTrainingMetrics请求参数结构体
|
|
@@ -5721,22 +5741,22 @@ export interface Container {
|
|
|
5721
5741
|
* 名字
|
|
5722
5742
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5723
5743
|
*/
|
|
5724
|
-
Name
|
|
5744
|
+
Name: string;
|
|
5725
5745
|
/**
|
|
5726
5746
|
* id
|
|
5727
5747
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5728
5748
|
*/
|
|
5729
|
-
ContainerId
|
|
5749
|
+
ContainerId: string;
|
|
5730
5750
|
/**
|
|
5731
5751
|
* 镜像地址
|
|
5732
5752
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5733
5753
|
*/
|
|
5734
|
-
Image
|
|
5754
|
+
Image: string;
|
|
5735
5755
|
/**
|
|
5736
5756
|
* 容器状态
|
|
5737
5757
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5738
5758
|
*/
|
|
5739
|
-
Status
|
|
5759
|
+
Status: ContainerStatus;
|
|
5740
5760
|
}
|
|
5741
5761
|
/**
|
|
5742
5762
|
* 图片分割参数信息
|
|
@@ -1028,7 +1028,6 @@ export declare class Client extends AbstractClient {
|
|
|
1028
1028
|
* 支持CVM实例,弹性网卡上的EIP解绑
|
|
1029
1029
|
* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)
|
|
1030
1030
|
* 只有状态为 BIND 和 BIND_ENI 的 EIP 才能进行解绑定操作。
|
|
1031
|
-
* EIP 如果被封堵,则不能进行解绑定操作。
|
|
1032
1031
|
*/
|
|
1033
1032
|
DisassociateAddress(req: DisassociateAddressRequest, cb?: (error: string, rep: DisassociateAddressResponse) => void): Promise<DisassociateAddressResponse>;
|
|
1034
1033
|
/**
|
|
@@ -1478,7 +1478,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1478
1478
|
* 支持CVM实例,弹性网卡上的EIP解绑
|
|
1479
1479
|
* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)
|
|
1480
1480
|
* 只有状态为 BIND 和 BIND_ENI 的 EIP 才能进行解绑定操作。
|
|
1481
|
-
* EIP 如果被封堵,则不能进行解绑定操作。
|
|
1482
1481
|
*/
|
|
1483
1482
|
async DisassociateAddress(req, cb) {
|
|
1484
1483
|
return this.request("DisassociateAddress", req, cb);
|
|
@@ -3711,7 +3711,7 @@ export interface DescribeBandwidthPackagesRequest {
|
|
|
3711
3711
|
BandwidthPackageIds?: Array<string>;
|
|
3712
3712
|
/**
|
|
3713
3713
|
* 每次请求的`Filters`的上限为10。参数不支持同时指定`BandwidthPackageIds`和`Filters`。详细的过滤条件如下:
|
|
3714
|
-
<li> bandwidth-
|
|
3714
|
+
<li> bandwidth-package-id - String - 是否必填:否 - (过滤条件)按照带宽包的唯一标识ID过滤。</li>
|
|
3715
3715
|
<li> bandwidth-package-name - String - 是否必填:否 - (过滤条件)按照 带宽包名称过滤。不支持模糊过滤。</li>
|
|
3716
3716
|
<li> network-type - String - 是否必填:否 - (过滤条件)按照带宽包的类型过滤。类型包括'HIGH_QUALITY_BGP','BGP','SINGLEISP'和'ANYCAST'。</li>
|
|
3717
3717
|
<li> charge-type - String - 是否必填:否 - (过滤条件)按照带宽包的计费类型过滤。计费类型包括: <li>'TOP5_POSTPAID_BY_MONTH':按月后付费TOP5计费</li><li> 'PERCENT95_POSTPAID_BY_MONTH':按月后付费月95计费</li><li>'ENHANCED95_POSTPAID_BY_MONTH':按月后付费增强型95计费</li><li>'FIXED_PREPAID_BY_MONTH':包月预付费计费</li><li>‘PEAK_BANDWIDTH_POSTPAID_BY_DAY’: 后付费日结按带宽计费</li>
|
|
@@ -331,9 +331,18 @@ export interface CreateVRSTaskRequest {
|
|
|
331
331
|
*/
|
|
332
332
|
CallbackUrl?: string;
|
|
333
333
|
/**
|
|
334
|
-
*
|
|
334
|
+
* 模型类型 1:在线 2:离线 默认为1
|
|
335
335
|
*/
|
|
336
336
|
ModelType?: number;
|
|
337
|
+
/**
|
|
338
|
+
* 任务类型 0:默认类型 1:轻量级复刻
|
|
339
|
+
默认为0
|
|
340
|
+
*/
|
|
341
|
+
TaskType?: number;
|
|
342
|
+
/**
|
|
343
|
+
* 校验音频ID
|
|
344
|
+
*/
|
|
345
|
+
VPRAudioId?: string;
|
|
337
346
|
}
|
|
338
347
|
/**
|
|
339
348
|
* DetectEnvAndSoundQuality返回参数结构体
|
|
@@ -222,7 +222,9 @@ export declare class Client extends AbstractClient {
|
|
|
222
222
|
*/
|
|
223
223
|
DescribeUserLevel(req: DescribeUserLevelRequest, cb?: (error: string, rep: DescribeUserLevelResponse) => void): Promise<DescribeUserLevelResponse>;
|
|
224
224
|
/**
|
|
225
|
-
*
|
|
225
|
+
* 没有在使用。
|
|
226
|
+
|
|
227
|
+
Waf CC V2 Query接口
|
|
226
228
|
*/
|
|
227
229
|
DescribeCCRule(req: DescribeCCRuleRequest, cb?: (error: string, rep: DescribeCCRuleResponse) => void): Promise<DescribeCCRuleResponse>;
|
|
228
230
|
/**
|
|
@@ -331,7 +333,9 @@ export declare class Client extends AbstractClient {
|
|
|
331
333
|
*/
|
|
332
334
|
DescribeFlowTrend(req: DescribeFlowTrendRequest, cb?: (error: string, rep: DescribeFlowTrendResponse) => void): Promise<DescribeFlowTrendResponse>;
|
|
333
335
|
/**
|
|
334
|
-
*
|
|
336
|
+
* 废弃接口
|
|
337
|
+
|
|
338
|
+
获取防篡改url
|
|
335
339
|
*/
|
|
336
340
|
DescribeAntiFakeUrl(req: DescribeAntiFakeUrlRequest, cb?: (error: string, rep: DescribeAntiFakeUrlResponse) => void): Promise<DescribeAntiFakeUrlResponse>;
|
|
337
341
|
/**
|
|
@@ -346,7 +346,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
346
346
|
return this.request("DescribeUserLevel", req, cb);
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
*
|
|
349
|
+
* 没有在使用。
|
|
350
|
+
|
|
351
|
+
Waf CC V2 Query接口
|
|
350
352
|
*/
|
|
351
353
|
async DescribeCCRule(req, cb) {
|
|
352
354
|
return this.request("DescribeCCRule", req, cb);
|
|
@@ -507,7 +509,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
507
509
|
return this.request("DescribeFlowTrend", req, cb);
|
|
508
510
|
}
|
|
509
511
|
/**
|
|
510
|
-
*
|
|
512
|
+
* 废弃接口
|
|
513
|
+
|
|
514
|
+
获取防篡改url
|
|
511
515
|
*/
|
|
512
516
|
async DescribeAntiFakeUrl(req, cb) {
|
|
513
517
|
return this.request("DescribeAntiFakeUrl", req, cb);
|
|
@@ -48,6 +48,16 @@ it("dnspod.v20210323.DescribeSnapshotRollbackTask", async function () {
|
|
|
48
48
|
}
|
|
49
49
|
})
|
|
50
50
|
|
|
51
|
+
it("dnspod.v20210323.ModifyVasAutoRenewStatus", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.ModifyVasAutoRenewStatus({})
|
|
54
|
+
expect(data).to.be.ok
|
|
55
|
+
} catch(error) {
|
|
56
|
+
expect(error.requestId).to.be.ok
|
|
57
|
+
expect(error.code).to.be.ok
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
|
|
51
61
|
it("dnspod.v20210323.DescribeDomainPurview", async function () {
|
|
52
62
|
try {
|
|
53
63
|
const data = await client.DescribeDomainPurview({})
|
|
@@ -68,6 +78,16 @@ it("dnspod.v20210323.ModifySubdomainStatus", async function () {
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
81
|
+
it("dnspod.v20210323.DeleteDomainCustomLine", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DeleteDomainCustomLine({})
|
|
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("dnspod.v20210323.DescribeRecordType", async function () {
|
|
72
92
|
try {
|
|
73
93
|
const data = await client.DescribeRecordType({})
|
|
@@ -288,9 +308,9 @@ it("dnspod.v20210323.DeleteShareDomain", async function () {
|
|
|
288
308
|
}
|
|
289
309
|
})
|
|
290
310
|
|
|
291
|
-
it("dnspod.v20210323.
|
|
311
|
+
it("dnspod.v20210323.DescribeDomain", async function () {
|
|
292
312
|
try {
|
|
293
|
-
const data = await client.
|
|
313
|
+
const data = await client.DescribeDomain({})
|
|
294
314
|
expect(data).to.be.ok
|
|
295
315
|
} catch(error) {
|
|
296
316
|
expect(error.requestId).to.be.ok
|
|
@@ -318,9 +338,9 @@ it("dnspod.v20210323.ModifyRecordStatus", async function () {
|
|
|
318
338
|
}
|
|
319
339
|
})
|
|
320
340
|
|
|
321
|
-
it("dnspod.v20210323.
|
|
341
|
+
it("dnspod.v20210323.CreateRecordGroup", async function () {
|
|
322
342
|
try {
|
|
323
|
-
const data = await client.
|
|
343
|
+
const data = await client.CreateRecordGroup({})
|
|
324
344
|
expect(data).to.be.ok
|
|
325
345
|
} catch(error) {
|
|
326
346
|
expect(error.requestId).to.be.ok
|
|
@@ -348,9 +368,9 @@ it("dnspod.v20210323.CreateRecordBatch", async function () {
|
|
|
348
368
|
}
|
|
349
369
|
})
|
|
350
370
|
|
|
351
|
-
it("dnspod.v20210323.
|
|
371
|
+
it("dnspod.v20210323.CreateDomainCustomLine", async function () {
|
|
352
372
|
try {
|
|
353
|
-
const data = await client.
|
|
373
|
+
const data = await client.CreateDomainCustomLine({})
|
|
354
374
|
expect(data).to.be.ok
|
|
355
375
|
} catch(error) {
|
|
356
376
|
expect(error.requestId).to.be.ok
|
|
@@ -358,9 +378,9 @@ it("dnspod.v20210323.DescribeUserDetail", async function () {
|
|
|
358
378
|
}
|
|
359
379
|
})
|
|
360
380
|
|
|
361
|
-
it("dnspod.v20210323.
|
|
381
|
+
it("dnspod.v20210323.DescribeUserDetail", async function () {
|
|
362
382
|
try {
|
|
363
|
-
const data = await client.
|
|
383
|
+
const data = await client.DescribeUserDetail({})
|
|
364
384
|
expect(data).to.be.ok
|
|
365
385
|
} catch(error) {
|
|
366
386
|
expect(error.requestId).to.be.ok
|
|
@@ -368,9 +388,9 @@ it("dnspod.v20210323.RollbackSnapshot", async function () {
|
|
|
368
388
|
}
|
|
369
389
|
})
|
|
370
390
|
|
|
371
|
-
it("dnspod.v20210323.
|
|
391
|
+
it("dnspod.v20210323.RollbackSnapshot", async function () {
|
|
372
392
|
try {
|
|
373
|
-
const data = await client.
|
|
393
|
+
const data = await client.RollbackSnapshot({})
|
|
374
394
|
expect(data).to.be.ok
|
|
375
395
|
} catch(error) {
|
|
376
396
|
expect(error.requestId).to.be.ok
|
|
@@ -378,9 +398,9 @@ it("dnspod.v20210323.DeleteRecord", async function () {
|
|
|
378
398
|
}
|
|
379
399
|
})
|
|
380
400
|
|
|
381
|
-
it("dnspod.v20210323.
|
|
401
|
+
it("dnspod.v20210323.DeleteRecord", async function () {
|
|
382
402
|
try {
|
|
383
|
-
const data = await client.
|
|
403
|
+
const data = await client.DeleteRecord({})
|
|
384
404
|
expect(data).to.be.ok
|
|
385
405
|
} catch(error) {
|
|
386
406
|
expect(error.requestId).to.be.ok
|
|
@@ -388,9 +408,9 @@ it("dnspod.v20210323.DescribeRecord", async function () {
|
|
|
388
408
|
}
|
|
389
409
|
})
|
|
390
410
|
|
|
391
|
-
it("dnspod.v20210323.
|
|
411
|
+
it("dnspod.v20210323.DescribeRecord", async function () {
|
|
392
412
|
try {
|
|
393
|
-
const data = await client.
|
|
413
|
+
const data = await client.DescribeRecord({})
|
|
394
414
|
expect(data).to.be.ok
|
|
395
415
|
} catch(error) {
|
|
396
416
|
expect(error.requestId).to.be.ok
|
|
@@ -518,9 +538,9 @@ it("dnspod.v20210323.CreateDomainGroup", async function () {
|
|
|
518
538
|
}
|
|
519
539
|
})
|
|
520
540
|
|
|
521
|
-
it("dnspod.v20210323.
|
|
541
|
+
it("dnspod.v20210323.ModifySnapshotConfig", async function () {
|
|
522
542
|
try {
|
|
523
|
-
const data = await client.
|
|
543
|
+
const data = await client.ModifySnapshotConfig({})
|
|
524
544
|
expect(data).to.be.ok
|
|
525
545
|
} catch(error) {
|
|
526
546
|
expect(error.requestId).to.be.ok
|
|
@@ -558,9 +578,9 @@ it("dnspod.v20210323.CheckRecordSnapshotRollback", async function () {
|
|
|
558
578
|
}
|
|
559
579
|
})
|
|
560
580
|
|
|
561
|
-
it("dnspod.v20210323.
|
|
581
|
+
it("dnspod.v20210323.DescribeDomainCustomLineList", async function () {
|
|
562
582
|
try {
|
|
563
|
-
const data = await client.
|
|
583
|
+
const data = await client.DescribeDomainCustomLineList({})
|
|
564
584
|
expect(data).to.be.ok
|
|
565
585
|
} catch(error) {
|
|
566
586
|
expect(error.requestId).to.be.ok
|
|
@@ -588,6 +608,16 @@ it("dnspod.v20210323.ModifyRecordRemark", async function () {
|
|
|
588
608
|
}
|
|
589
609
|
})
|
|
590
610
|
|
|
611
|
+
it("dnspod.v20210323.ModifyDomainCustomLine", async function () {
|
|
612
|
+
try {
|
|
613
|
+
const data = await client.ModifyDomainCustomLine({})
|
|
614
|
+
expect(data).to.be.ok
|
|
615
|
+
} catch(error) {
|
|
616
|
+
expect(error.requestId).to.be.ok
|
|
617
|
+
expect(error.code).to.be.ok
|
|
618
|
+
}
|
|
619
|
+
})
|
|
620
|
+
|
|
591
621
|
it("dnspod.v20210323.DescribeDomainFilterList", async function () {
|
|
592
622
|
try {
|
|
593
623
|
const data = await client.DescribeDomainFilterList({})
|
|
@@ -598,6 +628,16 @@ it("dnspod.v20210323.DescribeDomainFilterList", async function () {
|
|
|
598
628
|
}
|
|
599
629
|
})
|
|
600
630
|
|
|
631
|
+
it("dnspod.v20210323.PayOrderWithBalance", async function () {
|
|
632
|
+
try {
|
|
633
|
+
const data = await client.PayOrderWithBalance({})
|
|
634
|
+
expect(data).to.be.ok
|
|
635
|
+
} catch(error) {
|
|
636
|
+
expect(error.requestId).to.be.ok
|
|
637
|
+
expect(error.code).to.be.ok
|
|
638
|
+
}
|
|
639
|
+
})
|
|
640
|
+
|
|
601
641
|
it("dnspod.v20210323.ModifyRecordToGroup", async function () {
|
|
602
642
|
try {
|
|
603
643
|
const data = await client.ModifyRecordToGroup({})
|
|
@@ -608,9 +648,9 @@ it("dnspod.v20210323.ModifyRecordToGroup", async function () {
|
|
|
608
648
|
}
|
|
609
649
|
})
|
|
610
650
|
|
|
611
|
-
it("dnspod.v20210323.
|
|
651
|
+
it("dnspod.v20210323.DescribeDomainPreview", async function () {
|
|
612
652
|
try {
|
|
613
|
-
const data = await client.
|
|
653
|
+
const data = await client.DescribeDomainPreview({})
|
|
614
654
|
expect(data).to.be.ok
|
|
615
655
|
} catch(error) {
|
|
616
656
|
expect(error.requestId).to.be.ok
|
|
@@ -428,16 +428,6 @@ it("tdmq.v20200217.DescribeCmqSubscriptionDetail", async function () {
|
|
|
428
428
|
}
|
|
429
429
|
})
|
|
430
430
|
|
|
431
|
-
it("tdmq.v20200217.DescribeRabbitMQVirtualHost", async function () {
|
|
432
|
-
try {
|
|
433
|
-
const data = await client.DescribeRabbitMQVirtualHost({})
|
|
434
|
-
expect(data).to.be.ok
|
|
435
|
-
} catch(error) {
|
|
436
|
-
expect(error.requestId).to.be.ok
|
|
437
|
-
expect(error.code).to.be.ok
|
|
438
|
-
}
|
|
439
|
-
})
|
|
440
|
-
|
|
441
431
|
it("tdmq.v20200217.DescribeCmqDeadLetterSourceQueues", async function () {
|
|
442
432
|
try {
|
|
443
433
|
const data = await client.DescribeCmqDeadLetterSourceQueues({})
|
|
@@ -548,6 +538,16 @@ it("tdmq.v20200217.DescribeRabbitMQUser", async function () {
|
|
|
548
538
|
}
|
|
549
539
|
})
|
|
550
540
|
|
|
541
|
+
it("tdmq.v20200217.DeleteRoles", async function () {
|
|
542
|
+
try {
|
|
543
|
+
const data = await client.DeleteRoles({})
|
|
544
|
+
expect(data).to.be.ok
|
|
545
|
+
} catch(error) {
|
|
546
|
+
expect(error.requestId).to.be.ok
|
|
547
|
+
expect(error.code).to.be.ok
|
|
548
|
+
}
|
|
549
|
+
})
|
|
550
|
+
|
|
551
551
|
it("tdmq.v20200217.ModifyRocketMQCluster", async function () {
|
|
552
552
|
try {
|
|
553
553
|
const data = await client.ModifyRocketMQCluster({})
|
|
@@ -638,6 +638,16 @@ it("tdmq.v20200217.ResetMsgSubOffsetByTimestamp", async function () {
|
|
|
638
638
|
}
|
|
639
639
|
})
|
|
640
640
|
|
|
641
|
+
it("tdmq.v20200217.DescribeMsgTrace", async function () {
|
|
642
|
+
try {
|
|
643
|
+
const data = await client.DescribeMsgTrace({})
|
|
644
|
+
expect(data).to.be.ok
|
|
645
|
+
} catch(error) {
|
|
646
|
+
expect(error.requestId).to.be.ok
|
|
647
|
+
expect(error.code).to.be.ok
|
|
648
|
+
}
|
|
649
|
+
})
|
|
650
|
+
|
|
641
651
|
it("tdmq.v20200217.DescribeRabbitMQNodeList", async function () {
|
|
642
652
|
try {
|
|
643
653
|
const data = await client.DescribeRabbitMQNodeList({})
|
|
@@ -788,9 +798,9 @@ it("tdmq.v20200217.DeleteRabbitMQUser", async function () {
|
|
|
788
798
|
}
|
|
789
799
|
})
|
|
790
800
|
|
|
791
|
-
it("tdmq.v20200217.
|
|
801
|
+
it("tdmq.v20200217.DescribeRabbitMQVirtualHost", async function () {
|
|
792
802
|
try {
|
|
793
|
-
const data = await client.
|
|
803
|
+
const data = await client.DescribeRabbitMQVirtualHost({})
|
|
794
804
|
expect(data).to.be.ok
|
|
795
805
|
} catch(error) {
|
|
796
806
|
expect(error.requestId).to.be.ok
|
|
@@ -888,6 +898,16 @@ it("tdmq.v20200217.CreateRocketMQNamespace", async function () {
|
|
|
888
898
|
}
|
|
889
899
|
})
|
|
890
900
|
|
|
901
|
+
it("tdmq.v20200217.SendBatchMessages", async function () {
|
|
902
|
+
try {
|
|
903
|
+
const data = await client.SendBatchMessages({})
|
|
904
|
+
expect(data).to.be.ok
|
|
905
|
+
} catch(error) {
|
|
906
|
+
expect(error.requestId).to.be.ok
|
|
907
|
+
expect(error.code).to.be.ok
|
|
908
|
+
}
|
|
909
|
+
})
|
|
910
|
+
|
|
891
911
|
it("tdmq.v20200217.ModifyRabbitMQVipInstance", async function () {
|
|
892
912
|
try {
|
|
893
913
|
const data = await client.ModifyRabbitMQVipInstance({})
|
|
@@ -988,9 +1008,9 @@ it("tdmq.v20200217.ModifyRocketMQNamespace", async function () {
|
|
|
988
1008
|
}
|
|
989
1009
|
})
|
|
990
1010
|
|
|
991
|
-
it("tdmq.v20200217.
|
|
1011
|
+
it("tdmq.v20200217.DescribeTopicMsgs", async function () {
|
|
992
1012
|
try {
|
|
993
|
-
const data = await client.
|
|
1013
|
+
const data = await client.DescribeTopicMsgs({})
|
|
994
1014
|
expect(data).to.be.ok
|
|
995
1015
|
} catch(error) {
|
|
996
1016
|
expect(error.requestId).to.be.ok
|