tencentcloud-sdk-nodejs 4.0.647 → 4.0.648

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +185 -0
  2. package/SERVICE_CHANGELOG.md +469 -332
  3. package/package.json +1 -1
  4. package/products.md +13 -13
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cbs/v20170312/cbs_client.ts +20 -51
  7. package/src/services/cbs/v20170312/cbs_models.ts +16 -165
  8. package/src/services/cdb/v20170320/cdb_client.ts +4 -84
  9. package/src/services/cdb/v20170320/cdb_models.ts +41 -568
  10. package/src/services/cloudstudio/v20230508/cloudstudio_models.ts +4 -0
  11. package/src/services/domain/v20180808/domain_client.ts +13 -1
  12. package/src/services/domain/v20180808/domain_models.ts +40 -20
  13. package/src/services/ess/v20201111/ess_client.ts +6 -5
  14. package/src/services/ess/v20201111/ess_models.ts +47 -2
  15. package/src/services/ocr/v20181119/ocr_models.ts +8 -8
  16. package/src/services/tdid/v20210519/tdid_client.ts +9 -39
  17. package/src/services/tdid/v20210519/tdid_models.ts +24 -102
  18. package/src/services/teo/v20220901/teo_models.ts +1 -1
  19. package/src/services/tiw/v20190919/tiw_client.ts +17 -5
  20. package/src/services/tiw/v20190919/tiw_models.ts +105 -65
  21. package/src/services/trtc/v20190722/trtc_client.ts +1 -1
  22. package/tencentcloud/common/sdk_version.d.ts +1 -1
  23. package/tencentcloud/common/sdk_version.js +1 -1
  24. package/tencentcloud/services/cbs/v20170312/cbs_client.d.ts +10 -23
  25. package/tencentcloud/services/cbs/v20170312/cbs_client.js +11 -28
  26. package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +16 -159
  27. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -31
  28. package/tencentcloud/services/cdb/v20170320/cdb_client.js +0 -40
  29. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +41 -548
  30. package/tencentcloud/services/cloudstudio/v20230508/cloudstudio_models.d.ts +4 -0
  31. package/tencentcloud/services/domain/v20180808/domain_client.d.ts +5 -1
  32. package/tencentcloud/services/domain/v20180808/domain_client.js +6 -0
  33. package/tencentcloud/services/domain/v20180808/domain_models.d.ts +38 -20
  34. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +6 -5
  35. package/tencentcloud/services/ess/v20201111/ess_client.js +6 -5
  36. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +47 -2
  37. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +8 -8
  38. package/tencentcloud/services/tdid/v20210519/tdid_client.d.ts +4 -17
  39. package/tencentcloud/services/tdid/v20210519/tdid_client.js +4 -21
  40. package/tencentcloud/services/tdid/v20210519/tdid_models.d.ts +23 -96
  41. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +1 -1
  42. package/tencentcloud/services/tiw/v20190919/tiw_client.d.ts +5 -1
  43. package/tencentcloud/services/tiw/v20190919/tiw_client.js +6 -0
  44. package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +103 -65
  45. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +1 -1
  46. package/tencentcloud/services/trtc/v20190722/trtc_client.js +1 -1
  47. package/test/cbs.v20170312.test.js +4 -24
  48. package/test/cdb.v20170320.test.js +0 -50
  49. package/test/domain.v20180808.test.js +10 -0
  50. package/test/tdid.v20210519.test.js +2 -22
  51. package/test/tiw.v20190919.test.js +10 -0
@@ -719,13 +719,60 @@ export interface DescribeRunningTasksResponse {
719
719
  RequestId?: string;
720
720
  }
721
721
  /**
722
- * DescribeApplicationUsage返回参数结构体
722
+ * DescribeWhiteboardPush返回参数结构体
723
723
  */
724
- export interface DescribeApplicationUsageResponse {
724
+ export interface DescribeWhiteboardPushResponse {
725
725
  /**
726
- * 画图所需的用量数据
726
+ * 推流结束原因,
727
+ - AUTO: 房间内长时间没有音视频上行及白板操作导致自动停止推流
728
+ - USER_CALL: 主动调用了停止推流接口
729
+ - EXCEPTION: 推流异常结束
727
730
  */
728
- Data: Array<DataItem>;
731
+ FinishReason?: string;
732
+ /**
733
+ * 需要查询结果的白板推流任务Id
734
+ */
735
+ TaskId?: string;
736
+ /**
737
+ * 推流任务状态
738
+ - PREPARED: 表示推流正在准备中(进房/启动推流服务等操作)
739
+ - PUSHING: 表示推流已开始
740
+ - STOPPED: 表示推流已停止
741
+ */
742
+ Status?: string;
743
+ /**
744
+ * 房间号
745
+ */
746
+ RoomId?: number;
747
+ /**
748
+ * 白板的群组 Id
749
+ */
750
+ GroupId?: string;
751
+ /**
752
+ * 推流用户Id
753
+ */
754
+ PushUserId?: string;
755
+ /**
756
+ * 实际开始推流时间,Unix 时间戳,单位秒
757
+ */
758
+ PushStartTime?: number;
759
+ /**
760
+ * 实际停止推流时间,Unix 时间戳,单位秒
761
+ */
762
+ PushStopTime?: number;
763
+ /**
764
+ * 推流过程中出现异常的次数
765
+ */
766
+ ExceptionCnt?: number;
767
+ /**
768
+ * 白板推流首帧对应的IM时间戳,可用于录制回放时IM聊天消息与白板推流视频进行同步对时。
769
+ */
770
+ IMSyncTime?: number;
771
+ /**
772
+ * 备份推流任务结果信息
773
+ 注意:此字段可能返回 null,表示取不到有效值。
774
+ */
775
+ Backup?: string;
729
776
  /**
730
777
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
731
778
  */
@@ -1852,13 +1899,13 @@ export interface RecordTaskSearchResult {
1852
1899
  Result: RecordTaskResult;
1853
1900
  }
1854
1901
  /**
1855
- * ModifyWhiteboardApplicationConfig返回参数结构体
1902
+ * DescribeWarningCallback请求参数结构体
1856
1903
  */
1857
- export interface ModifyWhiteboardApplicationConfigResponse {
1904
+ export interface DescribeWarningCallbackRequest {
1858
1905
  /**
1859
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1906
+ * 应用的SdkAppId
1860
1907
  */
1861
- RequestId?: string;
1908
+ SdkAppId: number;
1862
1909
  }
1863
1910
  /**
1864
1911
  * SetTranscodeCallback返回参数结构体
@@ -1926,13 +1973,29 @@ export interface ApplicationItem {
1926
1973
  TagList: Array<Tag>;
1927
1974
  }
1928
1975
  /**
1929
- * DescribeWarningCallback请求参数结构体
1976
+ * DescribeTranscodeByUrl返回参数结构体
1930
1977
  */
1931
- export interface DescribeWarningCallbackRequest {
1978
+ export interface DescribeTranscodeByUrlResponse {
1932
1979
  /**
1933
- * 应用的SdkAppId
1980
+ * 转码的当前进度,取值范围为0~100
1934
1981
  */
1935
- SdkAppId: number;
1982
+ Progress?: number;
1983
+ /**
1984
+ * 任务的当前状态
1985
+ - QUEUED: 正在排队等待转换
1986
+ - PROCESSING: 转换中
1987
+ - FINISHED: 转换完成
1988
+ - EXCEPTION: 转换异常
1989
+ */
1990
+ Status?: string;
1991
+ /**
1992
+ * 转码任务的唯一标识Id
1993
+ */
1994
+ TaskId?: string;
1995
+ /**
1996
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1997
+ */
1998
+ RequestId?: string;
1936
1999
  }
1937
2000
  /**
1938
2001
  * CreatePPTCheckTask请求参数结构体
@@ -2117,9 +2180,9 @@ export interface PauseOnlineRecordResponse {
2117
2180
  RequestId?: string;
2118
2181
  }
2119
2182
  /**
2120
- * ModifyWhiteboardBucketConfig返回参数结构体
2183
+ * ModifyWhiteboardApplicationConfig返回参数结构体
2121
2184
  */
2122
- export interface ModifyWhiteboardBucketConfigResponse {
2185
+ export interface ModifyWhiteboardApplicationConfigResponse {
2123
2186
  /**
2124
2187
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2125
2188
  */
@@ -2483,6 +2546,19 @@ export interface StopWhiteboardPushResponse {
2483
2546
  */
2484
2547
  RequestId?: string;
2485
2548
  }
2549
+ /**
2550
+ * DescribeTranscodeByUrl请求参数结构体
2551
+ */
2552
+ export interface DescribeTranscodeByUrlRequest {
2553
+ /**
2554
+ * 客户的SdkAppId
2555
+ */
2556
+ SdkAppId: number;
2557
+ /**
2558
+ * 经过URL编码后的转码文件地址。URL 编码会将字符转换为可通过因特网传输的格式,比如文档地址为http://example.com/测试.pdf,经过URL编码之后为http://example.com/%E6%B5%8B%E8%AF%95.pdf。为了提高URL解析的成功率,请对URL进行编码。
2559
+ */
2560
+ Url: string;
2561
+ }
2486
2562
  /**
2487
2563
  * SetWarningCallback请求参数结构体
2488
2564
  */
@@ -2852,60 +2928,13 @@ export interface SetPPTCheckCallbackRequest {
2852
2928
  Callback: string;
2853
2929
  }
2854
2930
  /**
2855
- * DescribeWhiteboardPush返回参数结构体
2931
+ * DescribeApplicationUsage返回参数结构体
2856
2932
  */
2857
- export interface DescribeWhiteboardPushResponse {
2858
- /**
2859
- * 推流结束原因,
2860
- - AUTO: 房间内长时间没有音视频上行及白板操作导致自动停止推流
2861
- - USER_CALL: 主动调用了停止推流接口
2862
- - EXCEPTION: 推流异常结束
2863
- */
2864
- FinishReason?: string;
2865
- /**
2866
- * 需要查询结果的白板推流任务Id
2867
- */
2868
- TaskId?: string;
2869
- /**
2870
- * 推流任务状态
2871
- - PREPARED: 表示推流正在准备中(进房/启动推流服务等操作)
2872
- - PUSHING: 表示推流已开始
2873
- - STOPPED: 表示推流已停止
2874
- */
2875
- Status?: string;
2876
- /**
2877
- * 房间号
2878
- */
2879
- RoomId?: number;
2880
- /**
2881
- * 白板的群组 Id
2882
- */
2883
- GroupId?: string;
2884
- /**
2885
- * 推流用户Id
2886
- */
2887
- PushUserId?: string;
2888
- /**
2889
- * 实际开始推流时间,Unix 时间戳,单位秒
2890
- */
2891
- PushStartTime?: number;
2892
- /**
2893
- * 实际停止推流时间,Unix 时间戳,单位秒
2894
- */
2895
- PushStopTime?: number;
2896
- /**
2897
- * 推流过程中出现异常的次数
2898
- */
2899
- ExceptionCnt?: number;
2900
- /**
2901
- * 白板推流首帧对应的IM时间戳,可用于录制回放时IM聊天消息与白板推流视频进行同步对时。
2902
- */
2903
- IMSyncTime?: number;
2933
+ export interface DescribeApplicationUsageResponse {
2904
2934
  /**
2905
- * 备份推流任务结果信息
2906
- 注意:此字段可能返回 null,表示取不到有效值。
2935
+ * 画图所需的用量数据
2907
2936
  */
2908
- Backup?: string;
2937
+ Data: Array<DataItem>;
2909
2938
  /**
2910
2939
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2911
2940
  */
@@ -2989,6 +3018,15 @@ export interface CreatePPTCheckTaskResponse {
2989
3018
  */
2990
3019
  RequestId?: string;
2991
3020
  }
3021
+ /**
3022
+ * ModifyWhiteboardBucketConfig返回参数结构体
3023
+ */
3024
+ export interface ModifyWhiteboardBucketConfigResponse {
3025
+ /**
3026
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3027
+ */
3028
+ RequestId?: string;
3029
+ }
2992
3030
  /**
2993
3031
  * CreateTranscode请求参数结构体
2994
3032
  */
@@ -61,7 +61,7 @@ MCU混流转码费用请参考文档:[云端混流转码计费说明](https://
61
61
  转推非腾讯云CDN费用请参考文档:[云端转推计费说明](https://cloud.tencent.com/document/product/647/82155)
62
62
 
63
63
  参数的使用说明:
64
- 1、AgentParams:每个转推任务会拉起一个机器人用户进入TRTC房间进行拉流,你需要通过AgentParams.UserId参数进行设置,这个机器人id不能和房间中的普通用户id冲突,否则会导致转推任务由于机器人用户被踢出TRTC房间而异常结束,您可以通过增加特殊前缀的方式规避。您可以通过设置AgentParams.MaxIdleTime控制转推任务的自动结束,当设置此参数时,所有参与混流转推的主播持续离开TRTC房间超过MaxIdleTime的时长,自动停止转推任务。注意:参与混流转推的主播仅是停止音视频上行,转推任务不会自动停止。
64
+ 1、AgentParams:每个转推任务会拉起一个机器人用户进入TRTC房间进行拉流,您需要通过AgentParams.UserId参数进行设置,这个机器人id不能和房间中的普通用户id冲突,否则会导致转推任务由于机器人用户被踢出TRTC房间而异常结束,您可以通过增加特殊前缀的方式规避。您可以通过设置AgentParams.MaxIdleTime控制转推任务的自动结束,当设置此参数时,所有参与混流转推的主播持续离开TRTC房间超过MaxIdleTime的时长,自动停止转推任务。注意:参与混流转推的主播仅是停止音视频上行,转推任务不会自动停止。
65
65
  2、WithTranscoding:如果需要将多路音视频流混合到一路时,WithTranscoding必须设置为1。
66
66
  3、AudioParams:转推任务音频参数和视频参数是分开设置的,若您想要将指定的用户音频进行混音时,需要明确设置AudioParams.SubscribeAudioList。若您不设置AudioParams.SubscribeAudioList,混音引擎会自动将TRTC房间中所有用户的音频混合。若您想要混合TRTC房间除指定用户之外的所有用户的声音,可以通过AudioParams.UnSubscribeAudioList设置音频黑名单列表。
67
67
  4、VideoParams:若您想要将用户的视频混合,可以通过VideoParams设置,若只想要混纯音频,则不用设置VideoParams参数。您可以通过VideoParams.LayoutParams.MixLayoutMode设置画面的布局模式,包括:动态布局(1:悬浮布局(默认),2:屏幕分享布局,3:九宫格布局)和自定义布局。动态布局模式由排版引擎按照固定的布局自动混合,不需要设置VideoParams.LayoutParams.MixLayoutList。当使用悬浮布局和屏幕分享布局时,您可以通过设置VideoParams.LayoutParams.MaxVideoUser参数指定大画面用户。自定义布局模式提供给您自主布局画面的能力,可以通过VideoParams.LayoutParams.MixLayoutList参数指定每个用户所在的布局位置。在每个布局参数中,您可以通过用户媒体流参数(UserMediaStream)指定这个布局位置为指定的用户预留,也可以不设置UserMediaStream,由排版引擎按照用户进入TRTC房间的顺序自动填充,另外您也可以设置每个布局位置的渲染方式(RenderMode)和裁剪方式(CustomCrop)。
@@ -87,7 +87,7 @@ MCU混流转码费用请参考文档:[云端混流转码计费说明](https://
87
87
  转推非腾讯云CDN费用请参考文档:[云端转推计费说明](https://cloud.tencent.com/document/product/647/82155)
88
88
 
89
89
  参数的使用说明:
90
- 1、AgentParams:每个转推任务会拉起一个机器人用户进入TRTC房间进行拉流,你需要通过AgentParams.UserId参数进行设置,这个机器人id不能和房间中的普通用户id冲突,否则会导致转推任务由于机器人用户被踢出TRTC房间而异常结束,您可以通过增加特殊前缀的方式规避。您可以通过设置AgentParams.MaxIdleTime控制转推任务的自动结束,当设置此参数时,所有参与混流转推的主播持续离开TRTC房间超过MaxIdleTime的时长,自动停止转推任务。注意:参与混流转推的主播仅是停止音视频上行,转推任务不会自动停止。
90
+ 1、AgentParams:每个转推任务会拉起一个机器人用户进入TRTC房间进行拉流,您需要通过AgentParams.UserId参数进行设置,这个机器人id不能和房间中的普通用户id冲突,否则会导致转推任务由于机器人用户被踢出TRTC房间而异常结束,您可以通过增加特殊前缀的方式规避。您可以通过设置AgentParams.MaxIdleTime控制转推任务的自动结束,当设置此参数时,所有参与混流转推的主播持续离开TRTC房间超过MaxIdleTime的时长,自动停止转推任务。注意:参与混流转推的主播仅是停止音视频上行,转推任务不会自动停止。
91
91
  2、WithTranscoding:如果需要将多路音视频流混合到一路时,WithTranscoding必须设置为1。
92
92
  3、AudioParams:转推任务音频参数和视频参数是分开设置的,若您想要将指定的用户音频进行混音时,需要明确设置AudioParams.SubscribeAudioList。若您不设置AudioParams.SubscribeAudioList,混音引擎会自动将TRTC房间中所有用户的音频混合。若您想要混合TRTC房间除指定用户之外的所有用户的声音,可以通过AudioParams.UnSubscribeAudioList设置音频黑名单列表。
93
93
  4、VideoParams:若您想要将用户的视频混合,可以通过VideoParams设置,若只想要混纯音频,则不用设置VideoParams参数。您可以通过VideoParams.LayoutParams.MixLayoutMode设置画面的布局模式,包括:动态布局(1:悬浮布局(默认),2:屏幕分享布局,3:九宫格布局)和自定义布局。动态布局模式由排版引擎按照固定的布局自动混合,不需要设置VideoParams.LayoutParams.MixLayoutList。当使用悬浮布局和屏幕分享布局时,您可以通过设置VideoParams.LayoutParams.MaxVideoUser参数指定大画面用户。自定义布局模式提供给您自主布局画面的能力,可以通过VideoParams.LayoutParams.MixLayoutList参数指定每个用户所在的布局位置。在每个布局参数中,您可以通过用户媒体流参数(UserMediaStream)指定这个布局位置为指定的用户预留,也可以不设置UserMediaStream,由排版引擎按照用户进入TRTC房间的顺序自动填充,另外您也可以设置每个布局位置的渲染方式(RenderMode)和裁剪方式(CustomCrop)。
@@ -168,16 +168,6 @@ it("cbs.v20170312.DescribeDiskBackups", async function () {
168
168
  }
169
169
  })
170
170
 
171
- it("cbs.v20170312.DescribeDiskOperationLogs", async function () {
172
- try {
173
- const data = await client.DescribeDiskOperationLogs({})
174
- expect(data).to.be.ok
175
- } catch(error) {
176
- expect(error.requestId).to.be.ok
177
- expect(error.code).to.be.ok
178
- }
179
- })
180
-
181
171
  it("cbs.v20170312.DeleteAutoSnapshotPolicies", async function () {
182
172
  try {
183
173
  const data = await client.DeleteAutoSnapshotPolicies({})
@@ -378,16 +368,6 @@ it("cbs.v20170312.ApplySnapshot", async function () {
378
368
  }
379
369
  })
380
370
 
381
- it("cbs.v20170312.DescribeSnapshotOperationLogs", async function () {
382
- try {
383
- const data = await client.DescribeSnapshotOperationLogs({})
384
- expect(data).to.be.ok
385
- } catch(error) {
386
- expect(error.requestId).to.be.ok
387
- expect(error.code).to.be.ok
388
- }
389
- })
390
-
391
371
  it("cbs.v20170312.ModifySnapshotsSharePermission", async function () {
392
372
  try {
393
373
  const data = await client.ModifySnapshotsSharePermission({})
@@ -398,9 +378,9 @@ it("cbs.v20170312.ModifySnapshotsSharePermission", async function () {
398
378
  }
399
379
  })
400
380
 
401
- it("cbs.v20170312.DetachDisks", async function () {
381
+ it("cbs.v20170312.CreateSnapshot", async function () {
402
382
  try {
403
- const data = await client.DetachDisks({})
383
+ const data = await client.CreateSnapshot({})
404
384
  expect(data).to.be.ok
405
385
  } catch(error) {
406
386
  expect(error.requestId).to.be.ok
@@ -428,9 +408,9 @@ it("cbs.v20170312.ResizeDisk", async function () {
428
408
  }
429
409
  })
430
410
 
431
- it("cbs.v20170312.CreateSnapshot", async function () {
411
+ it("cbs.v20170312.DetachDisks", async function () {
432
412
  try {
433
- const data = await client.CreateSnapshot({})
413
+ const data = await client.DetachDisks({})
434
414
  expect(data).to.be.ok
435
415
  } catch(error) {
436
416
  expect(error.requestId).to.be.ok
@@ -598,16 +598,6 @@ it("cdb.v20170320.DescribeProjectSecurityGroups", async function () {
598
598
  }
599
599
  })
600
600
 
601
- it("cdb.v20170320.ModifyCDBProxyConnectionPool", async function () {
602
- try {
603
- const data = await client.ModifyCDBProxyConnectionPool({})
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
-
611
601
  it("cdb.v20170320.DescribeSlowLogs", async function () {
612
602
  try {
613
603
  const data = await client.DescribeSlowLogs({})
@@ -868,16 +858,6 @@ it("cdb.v20170320.DeleteBackup", async function () {
868
858
  }
869
859
  })
870
860
 
871
- it("cdb.v20170320.ModifyCDBProxyVipVPort", async function () {
872
- try {
873
- const data = await client.ModifyCDBProxyVipVPort({})
874
- expect(data).to.be.ok
875
- } catch(error) {
876
- expect(error.requestId).to.be.ok
877
- expect(error.code).to.be.ok
878
- }
879
- })
880
-
881
861
  it("cdb.v20170320.DescribeRoMinScale", async function () {
882
862
  try {
883
863
  const data = await client.DescribeRoMinScale({})
@@ -1178,16 +1158,6 @@ it("cdb.v20170320.DescribeUploadedFiles", async function () {
1178
1158
  }
1179
1159
  })
1180
1160
 
1181
- it("cdb.v20170320.DescribeCDBProxy", async function () {
1182
- try {
1183
- const data = await client.DescribeCDBProxy({})
1184
- expect(data).to.be.ok
1185
- } catch(error) {
1186
- expect(error.requestId).to.be.ok
1187
- expect(error.code).to.be.ok
1188
- }
1189
- })
1190
-
1191
1161
  it("cdb.v20170320.ModifyAccountDescription", async function () {
1192
1162
  try {
1193
1163
  const data = await client.ModifyAccountDescription({})
@@ -1368,16 +1338,6 @@ it("cdb.v20170320.ModifyAuditRule", async function () {
1368
1338
  }
1369
1339
  })
1370
1340
 
1371
- it("cdb.v20170320.QueryCDBProxy", async function () {
1372
- try {
1373
- const data = await client.QueryCDBProxy({})
1374
- expect(data).to.be.ok
1375
- } catch(error) {
1376
- expect(error.requestId).to.be.ok
1377
- expect(error.code).to.be.ok
1378
- }
1379
- })
1380
-
1381
1341
  it("cdb.v20170320.ModifyCdbProxyAddressVipAndVPort", async function () {
1382
1342
  try {
1383
1343
  const data = await client.ModifyCdbProxyAddressVipAndVPort({})
@@ -1398,16 +1358,6 @@ it("cdb.v20170320.DeleteAuditRule", async function () {
1398
1358
  }
1399
1359
  })
1400
1360
 
1401
- it("cdb.v20170320.DescribeProxyConnectionPoolConf", async function () {
1402
- try {
1403
- const data = await client.DescribeProxyConnectionPoolConf({})
1404
- expect(data).to.be.ok
1405
- } catch(error) {
1406
- expect(error.requestId).to.be.ok
1407
- expect(error.code).to.be.ok
1408
- }
1409
- })
1410
-
1411
1361
  it("cdb.v20170320.DescribeSupportedPrivileges", async function () {
1412
1362
  try {
1413
1363
  const data = await client.DescribeSupportedPrivileges({})
@@ -118,6 +118,16 @@ it("domain.v20180808.DeleteTemplate", async function () {
118
118
  }
119
119
  })
120
120
 
121
+ it("domain.v20180808.CreateDomainRedemption", async function () {
122
+ try {
123
+ const data = await client.CreateDomainRedemption({})
124
+ expect(data).to.be.ok
125
+ } catch(error) {
126
+ expect(error.requestId).to.be.ok
127
+ expect(error.code).to.be.ok
128
+ }
129
+ })
130
+
121
131
  it("domain.v20180808.CheckDomain", async function () {
122
132
  try {
123
133
  const data = await client.CheckDomain({})
@@ -18,16 +18,6 @@ const client = new tencentcloud.tdid.v20210519.Client({
18
18
  })
19
19
  describe("tdid.v20210519.test.js", function () {
20
20
 
21
- it("tdid.v20210519.CheckChain", async function () {
22
- try {
23
- const data = await client.CheckChain({})
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
-
31
21
  it("tdid.v20210519.GetCptInfo", async function () {
32
22
  try {
33
23
  const data = await client.GetCptInfo({})
@@ -98,16 +88,6 @@ it("tdid.v20210519.GetCredentialStatus", async function () {
98
88
  }
99
89
  })
100
90
 
101
- it("tdid.v20210519.GetAgencyTDid", async function () {
102
- try {
103
- const data = await client.GetAgencyTDid({})
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
-
111
91
  it("tdid.v20210519.CreateTDidByPrivateKey", async function () {
112
92
  try {
113
93
  const data = await client.CreateTDidByPrivateKey({})
@@ -118,9 +98,9 @@ it("tdid.v20210519.CreateTDidByPrivateKey", async function () {
118
98
  }
119
99
  })
120
100
 
121
- it("tdid.v20210519.AddLabel", async function () {
101
+ it("tdid.v20210519.CheckChain", async function () {
122
102
  try {
123
- const data = await client.AddLabel({})
103
+ const data = await client.CheckChain({})
124
104
  expect(data).to.be.ok
125
105
  } catch(error) {
126
106
  expect(error.requestId).to.be.ok
@@ -228,6 +228,16 @@ it("tiw.v20190919.SetPPTCheckCallback", async function () {
228
228
  }
229
229
  })
230
230
 
231
+ it("tiw.v20190919.DescribeTranscodeByUrl", async function () {
232
+ try {
233
+ const data = await client.DescribeTranscodeByUrl({})
234
+ expect(data).to.be.ok
235
+ } catch(error) {
236
+ expect(error.requestId).to.be.ok
237
+ expect(error.code).to.be.ok
238
+ }
239
+ })
240
+
231
241
  it("tiw.v20190919.DescribeVideoGenerationTaskCallback", async function () {
232
242
  try {
233
243
  const data = await client.DescribeVideoGenerationTaskCallback({})