tccli 3.0.1215.1__py2.py3-none-any.whl → 3.0.1217.1__py2.py3-none-any.whl
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.
- tccli/__init__.py +1 -1
- tccli/argparser.py +1 -1
- tccli/command.py +2 -2
- tccli/configure.py +46 -1
- tccli/credentials.py +25 -0
- tccli/main.py +6 -2
- tccli/plugins/sso/__init__.py +61 -0
- tccli/plugins/sso/configs.py +4 -0
- tccli/plugins/sso/configure.py +45 -0
- tccli/plugins/sso/login.py +144 -0
- tccli/plugins/sso/logout.py +21 -0
- tccli/plugins/sso/terminal.py +161 -0
- tccli/plugins/sso/texts.py +40 -0
- tccli/services/__init__.py +6 -3
- tccli/services/acp/v20220105/api.json +7 -7
- tccli/services/acp/v20220105/examples.json +2 -2
- tccli/services/aiart/v20221229/api.json +29 -29
- tccli/services/aiart/v20221229/examples.json +8 -8
- tccli/services/apigateway/v20180808/api.json +18 -17
- tccli/services/apigateway/v20180808/examples.json +12 -12
- tccli/services/apm/v20210622/api.json +118 -4
- tccli/services/asr/v20190614/api.json +21 -20
- tccli/services/asr/v20190614/examples.json +13 -13
- tccli/services/autoscaling/v20180419/api.json +371 -309
- tccli/services/autoscaling/v20180419/examples.json +17 -17
- tccli/services/batch/v20170312/api.json +7 -7
- tccli/services/bda/v20200324/api.json +39 -31
- tccli/services/bda/v20200324/examples.json +9 -9
- tccli/services/bh/__init__.py +4 -0
- tccli/services/bh/bh_client.py +3428 -0
- tccli/services/bh/v20230418/api.json +8180 -0
- tccli/services/bh/v20230418/examples.json +519 -0
- tccli/services/bi/v20220105/api.json +80 -4
- tccli/services/bi/v20220105/examples.json +1 -1
- tccli/services/billing/billing_client.py +53 -0
- tccli/services/billing/v20180709/api.json +330 -24
- tccli/services/billing/v20180709/examples.json +8 -0
- tccli/services/bsca/v20210811/api.json +223 -18
- tccli/services/bsca/v20210811/examples.json +4 -4
- tccli/services/btoe/v20210514/api.json +4 -4
- tccli/services/btoe/v20210514/examples.json +2 -2
- tccli/services/ca/v20230228/api.json +60 -0
- tccli/services/cam/v20190116/api.json +11 -11
- tccli/services/cat/v20180409/api.json +9 -0
- tccli/services/cbs/v20170312/api.json +200 -188
- tccli/services/cbs/v20170312/examples.json +4 -4
- tccli/services/ccc/ccc_client.py +53 -0
- tccli/services/ccc/v20200210/api.json +541 -325
- tccli/services/ccc/v20200210/examples.json +26 -18
- tccli/services/cdb/cdb_client.py +13 -13
- tccli/services/cdb/v20170320/api.json +308 -274
- tccli/services/cdb/v20170320/examples.json +38 -38
- tccli/services/cdc/v20201214/api.json +283 -270
- tccli/services/cdc/v20201214/examples.json +26 -26
- tccli/services/cdn/v20180606/api.json +5 -3
- tccli/services/cds/v20180420/api.json +82 -76
- tccli/services/cds/v20180420/examples.json +1 -1
- tccli/services/cdwch/v20200915/api.json +1 -1
- tccli/services/cdwdoris/v20211228/api.json +54 -4
- tccli/services/cdz/v20221123/api.json +41 -5
- tccli/services/cfg/v20210820/api.json +31 -0
- tccli/services/cfs/v20190719/api.json +89 -1
- tccli/services/cfs/v20190719/examples.json +1 -1
- tccli/services/cfw/cfw_client.py +0 -53
- tccli/services/cfw/v20190904/api.json +1895 -2011
- tccli/services/cfw/v20190904/examples.json +175 -171
- tccli/services/ciam/v20220331/api.json +316 -315
- tccli/services/ciam/v20220331/examples.json +49 -49
- tccli/services/ckafka/v20190819/api.json +104 -75
- tccli/services/clb/v20180317/api.json +48 -26
- tccli/services/clb/v20180317/examples.json +1 -1
- tccli/services/cloudapp/v20220530/api.json +5 -1
- tccli/services/cloudaudit/cloudaudit_client.py +30 -30
- tccli/services/cloudaudit/v20190319/api.json +254 -211
- tccli/services/cloudaudit/v20190319/examples.json +19 -19
- tccli/services/cloudstudio/v20230508/api.json +38 -37
- tccli/services/cloudstudio/v20230508/examples.json +4 -4
- tccli/services/cls/cls_client.py +216 -4
- tccli/services/cls/v20201016/api.json +935 -147
- tccli/services/cls/v20201016/examples.json +43 -5
- tccli/services/csip/v20221121/api.json +2566 -2386
- tccli/services/csip/v20221121/examples.json +108 -108
- tccli/services/cvm/v20170312/api.json +191 -112
- tccli/services/cvm/v20170312/examples.json +2 -2
- tccli/services/cwp/cwp_client.py +4 -110
- tccli/services/cwp/v20180228/api.json +6498 -6252
- tccli/services/cwp/v20180228/examples.json +372 -412
- tccli/services/cynosdb/v20190107/api.json +170 -110
- tccli/services/cynosdb/v20190107/examples.json +91 -91
- tccli/services/dasb/v20191018/api.json +859 -637
- tccli/services/dasb/v20191018/examples.json +101 -101
- tccli/services/dcdb/dcdb_client.py +114 -61
- tccli/services/dcdb/v20180411/api.json +141 -7
- tccli/services/dcdb/v20180411/examples.json +32 -0
- tccli/services/dlc/v20210125/api.json +21 -11
- tccli/services/dnspod/dnspod_client.py +417 -46
- tccli/services/dnspod/v20210323/api.json +751 -30
- tccli/services/dnspod/v20210323/examples.json +62 -0
- tccli/services/domain/v20180808/api.json +3 -3
- tccli/services/domain/v20180808/examples.json +3 -3
- tccli/services/dts/v20211206/api.json +4 -4
- tccli/services/eb/v20210416/api.json +15 -15
- tccli/services/eb/v20210416/examples.json +1 -1
- tccli/services/ecm/v20190719/api.json +2 -2
- tccli/services/emr/v20190103/api.json +339 -114
- tccli/services/emr/v20190103/examples.json +64 -82
- tccli/services/es/es_client.py +249 -37
- tccli/services/es/v20180416/api.json +550 -0
- tccli/services/es/v20180416/examples.json +33 -1
- tccli/services/ess/ess_client.py +53 -0
- tccli/services/ess/v20201111/api.json +192 -38
- tccli/services/ess/v20201111/examples.json +35 -9
- tccli/services/essbasic/essbasic_client.py +106 -0
- tccli/services/essbasic/v20210526/api.json +287 -60
- tccli/services/essbasic/v20210526/examples.json +58 -18
- tccli/services/facefusion/v20181201/api.json +47 -45
- tccli/services/facefusion/v20181201/examples.json +2 -2
- tccli/services/facefusion/v20220927/api.json +54 -48
- tccli/services/facefusion/v20220927/examples.json +5 -5
- tccli/services/faceid/v20180301/api.json +497 -496
- tccli/services/faceid/v20180301/examples.json +219 -101
- tccli/services/fmu/v20191213/api.json +59 -67
- tccli/services/fmu/v20191213/examples.json +22 -22
- tccli/services/ft/v20200304/api.json +53 -57
- tccli/services/ft/v20200304/examples.json +14 -14
- tccli/services/gaap/v20180529/api.json +44 -26
- tccli/services/gaap/v20180529/examples.json +24 -30
- tccli/services/gme/v20180711/api.json +21 -11
- tccli/services/gme/v20180711/examples.json +1 -1
- tccli/services/hai/v20230812/api.json +116 -9
- tccli/services/hai/v20230812/examples.json +4 -4
- tccli/services/hunyuan/hunyuan_client.py +436 -12
- tccli/services/hunyuan/v20230901/api.json +1482 -118
- tccli/services/hunyuan/v20230901/examples.json +82 -18
- tccli/services/iai/v20180301/api.json +23 -19
- tccli/services/iai/v20180301/examples.json +2 -2
- tccli/services/iai/v20200303/api.json +530 -511
- tccli/services/iai/v20200303/examples.json +116 -86
- tccli/services/ig/__init__.py +4 -0
- tccli/services/ig/ig_client.py +195 -0
- tccli/services/ig/v20210518/api.json +83 -0
- tccli/services/ig/v20210518/examples.json +13 -0
- tccli/services/ioa/ioa_client.py +53 -0
- tccli/services/ioa/v20220601/api.json +662 -413
- tccli/services/ioa/v20220601/examples.json +24 -10
- tccli/services/iotexplorer/v20190423/api.json +73 -13
- tccli/services/iotexplorer/v20190423/examples.json +3 -3
- tccli/services/iotvideo/iotvideo_client.py +106 -0
- tccli/services/iotvideo/v20191126/api.json +256 -24
- tccli/services/iotvideo/v20191126/examples.json +19 -3
- tccli/services/iotvideo/v20201215/api.json +1 -1
- tccli/services/iotvideo/v20201215/examples.json +1 -1
- tccli/services/iotvideo/v20211125/api.json +1 -1
- tccli/services/iotvideo/v20211125/examples.json +2 -2
- tccli/services/iss/iss_client.py +69 -122
- tccli/services/iss/v20230517/api.json +10 -54
- tccli/services/iss/v20230517/examples.json +0 -14
- tccli/services/kms/v20190118/api.json +301 -268
- tccli/services/kms/v20190118/examples.json +45 -51
- tccli/services/lcic/lcic_client.py +159 -0
- tccli/services/lcic/v20220817/api.json +273 -1
- tccli/services/lcic/v20220817/examples.json +24 -0
- tccli/services/lighthouse/v20200324/api.json +56 -0
- tccli/services/live/live_client.py +159 -0
- tccli/services/live/v20180801/api.json +279 -9
- tccli/services/live/v20180801/examples.json +24 -0
- tccli/services/lke/v20231130/api.json +17 -17
- tccli/services/lke/v20231130/examples.json +19 -25
- tccli/services/mariadb/v20170312/api.json +7 -7
- tccli/services/market/v20191010/api.json +3 -3
- tccli/services/market/v20191010/examples.json +2 -2
- tccli/services/mmps/v20200710/api.json +47 -47
- tccli/services/mmps/v20200710/examples.json +3 -3
- tccli/services/mongodb/v20190725/api.json +10 -12
- tccli/services/monitor/v20180724/api.json +46 -19
- tccli/services/mps/v20190612/api.json +282 -5
- tccli/services/mps/v20190612/examples.json +25 -1
- tccli/services/mqtt/v20240516/api.json +2 -2
- tccli/services/mrs/v20200910/api.json +72 -34
- tccli/services/mrs/v20200910/examples.json +2 -2
- tccli/services/ms/v20180408/api.json +535 -506
- tccli/services/ms/v20180408/examples.json +25 -25
- tccli/services/oceanus/v20190422/api.json +130 -0
- tccli/services/ocr/ocr_client.py +232 -20
- tccli/services/ocr/v20181119/api.json +2263 -758
- tccli/services/ocr/v20181119/examples.json +200 -180
- tccli/services/omics/v20221128/api.json +614 -553
- tccli/services/omics/v20221128/examples.json +9 -9
- tccli/services/organization/organization_client.py +352 -34
- tccli/services/organization/v20210331/api.json +464 -4
- tccli/services/organization/v20210331/examples.json +49 -1
- tccli/services/partners/v20180321/api.json +244 -234
- tccli/services/partners/v20180321/examples.json +19 -19
- tccli/services/privatedns/privatedns_client.py +428 -4
- tccli/services/privatedns/v20201028/api.json +815 -11
- tccli/services/privatedns/v20201028/examples.json +64 -0
- tccli/services/pts/v20210728/api.json +18 -0
- tccli/services/pts/v20210728/examples.json +1 -1
- tccli/services/rce/rce_client.py +53 -0
- tccli/services/rce/v20201103/api.json +146 -0
- tccli/services/rce/v20201103/examples.json +8 -0
- tccli/services/redis/v20180412/api.json +42 -42
- tccli/services/redis/v20180412/examples.json +19 -19
- tccli/services/region/v20220627/api.json +1 -1
- tccli/services/rum/v20210622/api.json +9 -0
- tccli/services/scf/scf_client.py +269 -4
- tccli/services/scf/v20180416/api.json +569 -15
- tccli/services/scf/v20180416/examples.json +47 -1
- tccli/services/smop/v20201203/api.json +46 -42
- tccli/services/smop/v20201203/examples.json +2 -2
- tccli/services/soe/v20180724/api.json +10 -10
- tccli/services/sqlserver/v20180328/api.json +21 -8
- tccli/services/sqlserver/v20180328/examples.json +5 -5
- tccli/services/ssl/v20191205/api.json +98 -5
- tccli/services/ssm/v20190923/api.json +292 -231
- tccli/services/ssm/v20190923/examples.json +42 -42
- tccli/services/tat/v20201028/api.json +124 -122
- tccli/services/tat/v20201028/examples.json +24 -30
- tccli/services/tchd/v20230306/api.json +5 -5
- tccli/services/tchd/v20230306/examples.json +3 -3
- tccli/services/tcr/v20190924/api.json +1 -1
- tccli/services/tcr/v20190924/examples.json +1 -1
- tccli/services/tcss/v20201101/api.json +1984 -1437
- tccli/services/tcss/v20201101/examples.json +350 -368
- tccli/services/tdmq/v20200217/api.json +603 -464
- tccli/services/tdmq/v20200217/examples.json +105 -105
- tccli/services/tds/v20220801/api.json +4 -4
- tccli/services/tem/v20210701/api.json +429 -372
- tccli/services/tem/v20210701/examples.json +85 -85
- tccli/services/teo/teo_client.py +277 -12
- tccli/services/teo/v20220901/api.json +1029 -124
- tccli/services/teo/v20220901/examples.json +84 -8
- tccli/services/thpc/v20230321/api.json +5 -5
- tccli/services/tke/tke_client.py +270 -58
- tccli/services/tke/v20180525/api.json +79 -27
- tccli/services/tke/v20180525/examples.json +9 -1
- tccli/services/tke/v20220501/api.json +176 -0
- tccli/services/tke/v20220501/examples.json +24 -0
- tccli/services/tms/tms_client.py +4 -57
- tccli/services/tms/v20201229/api.json +0 -354
- tccli/services/tms/v20201229/examples.json +0 -8
- tccli/services/tmt/v20180321/api.json +38 -8
- tccli/services/trp/v20210515/api.json +86 -74
- tccli/services/trp/v20210515/examples.json +65 -65
- tccli/services/trro/v20220325/api.json +72 -71
- tccli/services/trro/v20220325/examples.json +8 -8
- tccli/services/trtc/trtc_client.py +8 -61
- tccli/services/trtc/v20190722/api.json +293 -52
- tccli/services/trtc/v20190722/examples.json +3 -11
- tccli/services/tse/tse_client.py +110 -4
- tccli/services/tse/v20201207/api.json +122 -7
- tccli/services/tse/v20201207/examples.json +25 -9
- tccli/services/vclm/v20240523/api.json +225 -82
- tccli/services/vclm/v20240523/examples.json +13 -19
- tccli/services/vod/v20180717/api.json +431 -4
- tccli/services/vod/v20180717/examples.json +25 -5
- tccli/services/vod/v20240718/api.json +11 -11
- tccli/services/vod/v20240718/examples.json +4 -4
- tccli/services/vod/vod_client.py +53 -0
- tccli/services/vpc/v20170312/api.json +1195 -892
- tccli/services/vpc/v20170312/examples.json +84 -68
- tccli/services/vpc/vpc_client.py +168 -62
- tccli/services/waf/v20180125/api.json +2611 -2187
- tccli/services/waf/v20180125/examples.json +224 -284
- tccli/services/waf/waf_client.py +225 -119
- tccli/services/wav/v20210129/api.json +48 -48
- tccli/services/wav/v20210129/examples.json +4 -4
- tccli/services/wedata/v20210820/api.json +1595 -25
- tccli/services/wedata/v20210820/examples.json +44 -4
- tccli/services/wedata/wedata_client.py +265 -0
- tccli/services/weilingwith/v20230427/api.json +6 -6
- tccli/services/weilingwith/v20230427/examples.json +3 -3
- tccli/sso.py +229 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/METADATA +6 -2
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/RECORD +278 -265
- tccli/services/cr/__init__.py +0 -4
- tccli/services/cr/cr_client.py +0 -1626
- tccli/services/cr/v20180321/api.json +0 -2829
- tccli/services/cr/v20180321/examples.json +0 -235
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/license_files/LICENSE +0 -0
@@ -364,13 +364,6 @@
|
|
364
364
|
"output": "StopWebRecordResponse",
|
365
365
|
"status": "online"
|
366
366
|
},
|
367
|
-
"SummarizeTranscription": {
|
368
|
-
"document": "接口不再支持\n\n对转录的文本进行总结。",
|
369
|
-
"input": "SummarizeTranscriptionRequest",
|
370
|
-
"name": "总结转录文本",
|
371
|
-
"output": "SummarizeTranscriptionResponse",
|
372
|
-
"status": "deprecated"
|
373
|
-
},
|
374
367
|
"UpdateAIConversation": {
|
375
368
|
"document": "更新AIConversation参数",
|
376
369
|
"input": "UpdateAIConversationRequest",
|
@@ -1481,13 +1474,13 @@
|
|
1481
1474
|
},
|
1482
1475
|
{
|
1483
1476
|
"disabled": false,
|
1484
|
-
"document": "
|
1485
|
-
"example": "
|
1477
|
+
"document": "录制文件信息。",
|
1478
|
+
"example": "[{\"FileName\": \"1400188366_555666__UserId_s_amVmZjM.__UserId_e_main_audiovideo.m3u8\",\"UserId\": \"jeff3\",\"TrackType\": \"audio_video\",\"BeginTimeStamp\": 1730087526709}]",
|
1486
1479
|
"member": "StorageFile",
|
1487
1480
|
"name": "StorageFileList",
|
1488
1481
|
"output_required": true,
|
1489
1482
|
"type": "list",
|
1490
|
-
"value_allowed_null":
|
1483
|
+
"value_allowed_null": false
|
1491
1484
|
},
|
1492
1485
|
{
|
1493
1486
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
@@ -3122,6 +3115,34 @@
|
|
3122
3115
|
],
|
3123
3116
|
"type": "object"
|
3124
3117
|
},
|
3118
|
+
"EmulateMobileParams": {
|
3119
|
+
"document": "渲染移动模式参数,不渲染移动模式时,请勿设置此参数。",
|
3120
|
+
"members": [
|
3121
|
+
{
|
3122
|
+
"disabled": false,
|
3123
|
+
"document": "移动设备类型,\n0: 手机\n1: 平板\n注意:此字段可能返回 null,表示取不到有效值。",
|
3124
|
+
"example": "0",
|
3125
|
+
"member": "uint64",
|
3126
|
+
"name": "MobileDeviceType",
|
3127
|
+
"output_required": false,
|
3128
|
+
"required": false,
|
3129
|
+
"type": "int",
|
3130
|
+
"value_allowed_null": true
|
3131
|
+
},
|
3132
|
+
{
|
3133
|
+
"disabled": false,
|
3134
|
+
"document": "屏幕方向,\n0: 竖屏,\n1: 横屏\n注意:此字段可能返回 null,表示取不到有效值。",
|
3135
|
+
"example": "0",
|
3136
|
+
"member": "uint64",
|
3137
|
+
"name": "ScreenOrientation",
|
3138
|
+
"output_required": false,
|
3139
|
+
"required": false,
|
3140
|
+
"type": "int",
|
3141
|
+
"value_allowed_null": true
|
3142
|
+
}
|
3143
|
+
],
|
3144
|
+
"usage": "both"
|
3145
|
+
},
|
3125
3146
|
"EncodeParams": {
|
3126
3147
|
"document": "MCU混流输出流编码参数",
|
3127
3148
|
"members": [
|
@@ -3519,6 +3540,21 @@
|
|
3519
3540
|
],
|
3520
3541
|
"usage": "in"
|
3521
3542
|
},
|
3543
|
+
"McuCloudVod": {
|
3544
|
+
"document": "Mcu转推录制,点播相关参数。",
|
3545
|
+
"members": [
|
3546
|
+
{
|
3547
|
+
"disabled": false,
|
3548
|
+
"document": "腾讯云点播相关参数。\t",
|
3549
|
+
"example": "无",
|
3550
|
+
"member": "McuTencentVod",
|
3551
|
+
"name": "McuTencentVod",
|
3552
|
+
"required": false,
|
3553
|
+
"type": "object"
|
3554
|
+
}
|
3555
|
+
],
|
3556
|
+
"usage": "in"
|
3557
|
+
},
|
3522
3558
|
"McuCustomCrop": {
|
3523
3559
|
"document": "混流自定义裁剪参数",
|
3524
3560
|
"members": [
|
@@ -3748,13 +3784,12 @@
|
|
3748
3784
|
"members": [
|
3749
3785
|
{
|
3750
3786
|
"disabled": false,
|
3751
|
-
"document": "布局模式:动态布局(1:悬浮布局(默认),2:屏幕分享布局,3:九宫格布局),静态布局(4
|
3787
|
+
"document": "布局模式:动态布局(1:悬浮布局(默认),2:屏幕分享布局,3:九宫格布局),静态布局(4:自定义布局)。最多支持混入16路音视频流,如果用户只上行音频,也会被算作一路;自定义布局中,如果子画面只设置占位图,也被算作一路。",
|
3752
3788
|
"example": "4",
|
3753
3789
|
"member": "uint64",
|
3754
3790
|
"name": "MixLayoutMode",
|
3755
3791
|
"required": false,
|
3756
|
-
"type": "int"
|
3757
|
-
"value_allowed_null": false
|
3792
|
+
"type": "int"
|
3758
3793
|
},
|
3759
3794
|
{
|
3760
3795
|
"disabled": false,
|
@@ -3763,18 +3798,16 @@
|
|
3763
3798
|
"member": "uint64",
|
3764
3799
|
"name": "PureAudioHoldPlaceMode",
|
3765
3800
|
"required": false,
|
3766
|
-
"type": "int"
|
3767
|
-
"value_allowed_null": false
|
3801
|
+
"type": "int"
|
3768
3802
|
},
|
3769
3803
|
{
|
3770
3804
|
"disabled": false,
|
3771
|
-
"document": "
|
3805
|
+
"document": "自定义模板中有效,指定用户视频在混合画面中的位置,最多支持设置16个输入流。",
|
3772
3806
|
"example": "MixLayoutList",
|
3773
3807
|
"member": "McuLayout",
|
3774
3808
|
"name": "MixLayoutList",
|
3775
3809
|
"required": false,
|
3776
|
-
"type": "list"
|
3777
|
-
"value_allowed_null": false
|
3810
|
+
"type": "list"
|
3778
3811
|
},
|
3779
3812
|
{
|
3780
3813
|
"disabled": false,
|
@@ -3783,8 +3816,7 @@
|
|
3783
3816
|
"member": "MaxVideoUser",
|
3784
3817
|
"name": "MaxVideoUser",
|
3785
3818
|
"required": false,
|
3786
|
-
"type": "object"
|
3787
|
-
"value_allowed_null": false
|
3819
|
+
"type": "object"
|
3788
3820
|
},
|
3789
3821
|
{
|
3790
3822
|
"disabled": false,
|
@@ -3793,8 +3825,7 @@
|
|
3793
3825
|
"member": "uint64",
|
3794
3826
|
"name": "RenderMode",
|
3795
3827
|
"required": false,
|
3796
|
-
"type": "int"
|
3797
|
-
"value_allowed_null": false
|
3828
|
+
"type": "int"
|
3798
3829
|
}
|
3799
3830
|
],
|
3800
3831
|
"usage": "in"
|
@@ -3920,6 +3951,84 @@
|
|
3920
3951
|
],
|
3921
3952
|
"usage": "in"
|
3922
3953
|
},
|
3954
|
+
"McuRecordParams": {
|
3955
|
+
"document": "转推录制参数",
|
3956
|
+
"members": [
|
3957
|
+
{
|
3958
|
+
"disabled": false,
|
3959
|
+
"document": "转推录制模式, \n0/不填: 暂不支持,行为未定义;\n1: 不开启录制;\n2: 开启录制(使用控制台自动录制模板参数,参考:[跳转文档](https://cloud.tencent.com/document/product/647/111748#.E5.BD.95.E5.88.B6.E6.8E.A7.E5.88.B6.E6.96.B9.E6.A1.88));\n3: 开启录制(使用API指定参数)。",
|
3960
|
+
"example": "无",
|
3961
|
+
"member": "uint64",
|
3962
|
+
"name": "UniRecord",
|
3963
|
+
"required": false,
|
3964
|
+
"type": "int"
|
3965
|
+
},
|
3966
|
+
{
|
3967
|
+
"disabled": false,
|
3968
|
+
"document": "录制任务 key,标识一个录制任务;您可以通过该参数,将多个转推任务录制成一个文件。不指定该参数时,只录制当前转推任务。\n【限制长度为128字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线(_)和连词符(-)】",
|
3969
|
+
"example": "无",
|
3970
|
+
"member": "string",
|
3971
|
+
"name": "RecordKey",
|
3972
|
+
"required": false,
|
3973
|
+
"type": "string"
|
3974
|
+
},
|
3975
|
+
{
|
3976
|
+
"disabled": false,
|
3977
|
+
"document": "【仅当UniRecord=3时此参数有效】\n续录等待时间,对应录制模板“续录等待时长”,单位:秒。该值需大于等于 5,且小于等于 86400(24小时),默认值为 30。启用续录时,录制任务空闲超过RecordWaitTime的时长,自动结束。",
|
3978
|
+
"example": "无",
|
3979
|
+
"member": "uint64",
|
3980
|
+
"name": "RecordWaitTime",
|
3981
|
+
"required": false,
|
3982
|
+
"type": "int"
|
3983
|
+
},
|
3984
|
+
{
|
3985
|
+
"disabled": false,
|
3986
|
+
"document": "【仅当UniRecord=3时此参数有效】\n录制输出文件格式列表,对应录制模板“文件格式”,支持“hls”、\"mp4\"、\"aac\"三种格式,默认值为\"mp4\"。其中\"mp4\"和\"aac\"格式,不能同时指定。\n只录制 mp4格式,示例值:[\"mp4\"]。同时录制mp4 和 HLS 格式,示例值:[\"mp4\",\"hls\"]。",
|
3987
|
+
"example": "[\"mp4\",\"hls\"]",
|
3988
|
+
"member": "string",
|
3989
|
+
"name": "RecordFormat",
|
3990
|
+
"required": false,
|
3991
|
+
"type": "list"
|
3992
|
+
},
|
3993
|
+
{
|
3994
|
+
"disabled": false,
|
3995
|
+
"document": "【仅当UniRecord=3时此参数有效】\n单个文件录制时长,对应录制模板“单个录制文件时长”,单位:分钟。该值需大于等于 1,且小于等于 1440(24小时),默认值为 1440。只对\"mp4\"或\"aac\"格式生效。实际单文件录制时长还受单文件大小不超过 2G 限制,超过2G则强制拆分。",
|
3996
|
+
"example": "无",
|
3997
|
+
"member": "uint64",
|
3998
|
+
"name": "MaxMediaFileDuration",
|
3999
|
+
"required": false,
|
4000
|
+
"type": "int"
|
4001
|
+
},
|
4002
|
+
{
|
4003
|
+
"disabled": false,
|
4004
|
+
"document": "【仅当UniRecord=3时此参数有效】\n录制的音视频类型,对应录制模板“录制格式”,0:音视频,1:纯音频,2:纯视频。最终录制文件内容是录制指定类型和转推内容的交集。",
|
4005
|
+
"example": "0",
|
4006
|
+
"member": "uint64",
|
4007
|
+
"name": "StreamType",
|
4008
|
+
"required": false,
|
4009
|
+
"type": "int"
|
4010
|
+
},
|
4011
|
+
{
|
4012
|
+
"disabled": false,
|
4013
|
+
"document": "录制文件名前缀,不超过64字符。只有存储为vod时生效。\n【限制长度为64字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线(_)和连词符(-)】",
|
4014
|
+
"example": "\"\"",
|
4015
|
+
"member": "string",
|
4016
|
+
"name": "UserDefineRecordPrefix",
|
4017
|
+
"required": false,
|
4018
|
+
"type": "string"
|
4019
|
+
},
|
4020
|
+
{
|
4021
|
+
"disabled": false,
|
4022
|
+
"document": "【仅当UniRecord=3时此参数有效】\n录制文件存储参数,对应控制台“存储位置”及相关参数。目前支持云点播VOD和对象存储COS两种存储方式,只能填写一种。",
|
4023
|
+
"example": "无",
|
4024
|
+
"member": "McuStorageParams",
|
4025
|
+
"name": "McuStorageParams",
|
4026
|
+
"required": false,
|
4027
|
+
"type": "object"
|
4028
|
+
}
|
4029
|
+
],
|
4030
|
+
"usage": "in"
|
4031
|
+
},
|
3923
4032
|
"McuSeiParams": {
|
3924
4033
|
"document": "混流SEI参数",
|
3925
4034
|
"members": [
|
@@ -3946,6 +4055,99 @@
|
|
3946
4055
|
],
|
3947
4056
|
"usage": "in"
|
3948
4057
|
},
|
4058
|
+
"McuStorageParams": {
|
4059
|
+
"document": "Mcu转推录制,第三方存储参数。",
|
4060
|
+
"members": [
|
4061
|
+
{
|
4062
|
+
"disabled": false,
|
4063
|
+
"document": "第三方云存储的账号信息(特别说明:若您选择存储至对象存储COS将会收取录制文件投递至COS的费用,详见云端录制收费说明,存储至VOD将不收取此项费用。)。",
|
4064
|
+
"example": "无",
|
4065
|
+
"member": "CloudStorage",
|
4066
|
+
"name": "CloudStorage",
|
4067
|
+
"required": false,
|
4068
|
+
"type": "object"
|
4069
|
+
},
|
4070
|
+
{
|
4071
|
+
"disabled": false,
|
4072
|
+
"document": "腾讯云云点播的账号信息。",
|
4073
|
+
"example": "无",
|
4074
|
+
"member": "McuCloudVod",
|
4075
|
+
"name": "McuCloudVod",
|
4076
|
+
"required": false,
|
4077
|
+
"type": "object"
|
4078
|
+
}
|
4079
|
+
],
|
4080
|
+
"usage": "in"
|
4081
|
+
},
|
4082
|
+
"McuTencentVod": {
|
4083
|
+
"document": "Mcu转推录制,腾讯云点播相关参数。",
|
4084
|
+
"members": [
|
4085
|
+
{
|
4086
|
+
"disabled": false,
|
4087
|
+
"document": "媒体后续任务处理操作,即完成媒体上传后,可自动发起任务流操作。参数值为任务流模板名,云点播支持 创建任务流模板 并为模板命名。",
|
4088
|
+
"example": "\"\"",
|
4089
|
+
"member": "string",
|
4090
|
+
"name": "Procedure",
|
4091
|
+
"required": false,
|
4092
|
+
"type": "string"
|
4093
|
+
},
|
4094
|
+
{
|
4095
|
+
"disabled": false,
|
4096
|
+
"document": "媒体文件过期时间,为当前时间的绝对过期时间;保存一天,就填\"86400\",永久保存就填\"0\",默认永久保存。",
|
4097
|
+
"example": "86400",
|
4098
|
+
"member": "uint64",
|
4099
|
+
"name": "ExpireTime",
|
4100
|
+
"required": false,
|
4101
|
+
"type": "int"
|
4102
|
+
},
|
4103
|
+
{
|
4104
|
+
"disabled": false,
|
4105
|
+
"document": "指定上传园区,仅适用于对上传地域有特殊需求的用户。",
|
4106
|
+
"example": "ap-shanghai",
|
4107
|
+
"member": "string",
|
4108
|
+
"name": "StorageRegion",
|
4109
|
+
"required": false,
|
4110
|
+
"type": "string"
|
4111
|
+
},
|
4112
|
+
{
|
4113
|
+
"disabled": false,
|
4114
|
+
"document": "分类ID,用于对媒体进行分类管理,可通过 创建分类 接口,创建分类,获得分类 ID。\n默认值:0,表示其他分类。",
|
4115
|
+
"example": "0",
|
4116
|
+
"member": "uint64",
|
4117
|
+
"name": "ClassId",
|
4118
|
+
"required": false,
|
4119
|
+
"type": "int"
|
4120
|
+
},
|
4121
|
+
{
|
4122
|
+
"disabled": false,
|
4123
|
+
"document": "点播 子应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。",
|
4124
|
+
"example": "0",
|
4125
|
+
"member": "uint64",
|
4126
|
+
"name": "SubAppId",
|
4127
|
+
"required": false,
|
4128
|
+
"type": "int"
|
4129
|
+
},
|
4130
|
+
{
|
4131
|
+
"disabled": false,
|
4132
|
+
"document": "任务流上下文,任务完成回调时透传。",
|
4133
|
+
"example": "\"\"",
|
4134
|
+
"member": "string",
|
4135
|
+
"name": "SessionContext",
|
4136
|
+
"required": false,
|
4137
|
+
"type": "string"
|
4138
|
+
},
|
4139
|
+
{
|
4140
|
+
"disabled": false,
|
4141
|
+
"document": "上传上下文,上传完成回调时透传。",
|
4142
|
+
"example": "\"\"",
|
4143
|
+
"member": "string",
|
4144
|
+
"name": "SourceContext",
|
4145
|
+
"required": false,
|
4146
|
+
"type": "string"
|
4147
|
+
}
|
4148
|
+
],
|
4149
|
+
"usage": "in"
|
4150
|
+
},
|
3949
4151
|
"McuUserInfoParams": {
|
3950
4152
|
"document": "混流用户参数",
|
3951
4153
|
"members": [
|
@@ -5351,6 +5553,17 @@
|
|
5351
5553
|
"type": "list",
|
5352
5554
|
"value_allowed_null": false
|
5353
5555
|
},
|
5556
|
+
{
|
5557
|
+
"disabled": false,
|
5558
|
+
"document": "自定义参数,联系后台使用\n",
|
5559
|
+
"example": "无",
|
5560
|
+
"member": "string",
|
5561
|
+
"name": "CustomParam",
|
5562
|
+
"output_required": false,
|
5563
|
+
"required": false,
|
5564
|
+
"type": "string",
|
5565
|
+
"value_allowed_null": false
|
5566
|
+
},
|
5354
5567
|
{
|
5355
5568
|
"disabled": false,
|
5356
5569
|
"document": "语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。",
|
@@ -5739,7 +5952,7 @@
|
|
5739
5952
|
{
|
5740
5953
|
"disabled": false,
|
5741
5954
|
"document": "TTS配置,为JSON字符串,腾讯云TTS示例如下:\n <pre>{ <br>   \"AppId\": 您的应用ID, // Integer 必填<br>   \"TTSType\": \"TTS类型\", // String TTS类型, 固定为\"tencent\"<br>   \"SecretId\": \"您的密钥ID\", // String 必填<br>   \"SecretKey\": \"您的密钥Key\", // String 必填<br>   \"VoiceType\": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href=\"https://cloud.tencent.com/document/product/1073/34112\">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href=\"https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823\">语音合成音色列表</a>。<br>   \"Speed\": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href=\"https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz\">语速转换</a><br>   \"Volume\": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br>   \"PrimaryLanguage\": \"zh-CN\" // String 非必填,主要语言<br>  }</pre>",
|
5742
|
-
"example": "{\\\"TTSType\\\": \\\"tencent\\\", \\\"AppId\\\": 136666666, \\\"SecretId\\\": \\\"
|
5955
|
+
"example": "{\\\"TTSType\\\": \\\"tencent\\\", \\\"AppId\\\": 136666666, \\\"SecretId\\\": \\\"xxxxxxx\\\", \\\"SecretKey\\\": \\\"xxxxxxx\\\", \\\"VoiceType\\\": 1008, \\\"Speed\\\": 1}",
|
5743
5956
|
"member": "string",
|
5744
5957
|
"name": "TTSConfig",
|
5745
5958
|
"required": false,
|
@@ -6073,7 +6286,7 @@
|
|
6073
6286
|
},
|
6074
6287
|
{
|
6075
6288
|
"disabled": false,
|
6076
|
-
"document": "转推的CDN
|
6289
|
+
"document": "转推的CDN参数,一个任务最多支持10个推流URL。和回推房间参数必须要有一个。",
|
6077
6290
|
"example": "PublishCdnParams",
|
6078
6291
|
"member": "McuPublishCdnParam",
|
6079
6292
|
"name": "PublishCdnParams",
|
@@ -6091,12 +6304,21 @@
|
|
6091
6304
|
},
|
6092
6305
|
{
|
6093
6306
|
"disabled": false,
|
6094
|
-
"document": "
|
6307
|
+
"document": "回推房间信息,一个任务最多支持回推10个房间,和转推CDN参数必须要有一个。注:回推房间需使用10.4及以上SDK版本,如您有需求,请联系腾讯云技术支持。",
|
6095
6308
|
"example": "FeedBackRoomParams",
|
6096
6309
|
"member": "McuFeedBackRoomParams",
|
6097
6310
|
"name": "FeedBackRoomParams",
|
6098
6311
|
"required": false,
|
6099
6312
|
"type": "list"
|
6313
|
+
},
|
6314
|
+
{
|
6315
|
+
"disabled": false,
|
6316
|
+
"document": "转推录制参数,[参考文档](https://cloud.tencent.com/document/product/647/111748)。",
|
6317
|
+
"example": "RecordParams",
|
6318
|
+
"member": "McuRecordParams",
|
6319
|
+
"name": "RecordParams",
|
6320
|
+
"required": false,
|
6321
|
+
"type": "object"
|
6100
6322
|
}
|
6101
6323
|
],
|
6102
6324
|
"type": "object"
|
@@ -6107,7 +6329,7 @@
|
|
6107
6329
|
{
|
6108
6330
|
"disabled": false,
|
6109
6331
|
"document": "用于唯一标识转推任务,由腾讯云服务端生成,后续更新和停止请求都需要携带TaskiD参数。",
|
6110
|
-
"example": "
|
6332
|
+
"example": "\"\"",
|
6111
6333
|
"member": "string",
|
6112
6334
|
"name": "TaskId",
|
6113
6335
|
"output_required": true,
|
@@ -6251,6 +6473,15 @@
|
|
6251
6473
|
"name": "MaxDuration",
|
6252
6474
|
"required": false,
|
6253
6475
|
"type": "int"
|
6476
|
+
},
|
6477
|
+
{
|
6478
|
+
"disabled": false,
|
6479
|
+
"document": "音量,取值范围[0, 100],默认100,表示原音量。",
|
6480
|
+
"example": "90",
|
6481
|
+
"member": "uint64",
|
6482
|
+
"name": "Volume",
|
6483
|
+
"required": false,
|
6484
|
+
"type": "int"
|
6254
6485
|
}
|
6255
6486
|
],
|
6256
6487
|
"type": "object"
|
@@ -6351,6 +6582,15 @@
|
|
6351
6582
|
"name": "ReadyTimeout",
|
6352
6583
|
"required": false,
|
6353
6584
|
"type": "int"
|
6585
|
+
},
|
6586
|
+
{
|
6587
|
+
"disabled": false,
|
6588
|
+
"document": "渲染移动模式参数;不准备渲染移动模式页面时,请勿设置此参数。",
|
6589
|
+
"example": "无",
|
6590
|
+
"member": "EmulateMobileParams",
|
6591
|
+
"name": "EmulateMobileParams",
|
6592
|
+
"required": false,
|
6593
|
+
"type": "object"
|
6354
6594
|
}
|
6355
6595
|
],
|
6356
6596
|
"type": "object"
|
@@ -6518,11 +6758,20 @@
|
|
6518
6758
|
{
|
6519
6759
|
"disabled": false,
|
6520
6760
|
"document": "唯一标识转推任务。",
|
6521
|
-
"example": "
|
6761
|
+
"example": "\"\"",
|
6522
6762
|
"member": "string",
|
6523
6763
|
"name": "TaskId",
|
6524
6764
|
"required": true,
|
6525
6765
|
"type": "string"
|
6766
|
+
},
|
6767
|
+
{
|
6768
|
+
"disabled": false,
|
6769
|
+
"document": "录制任务 key,标识一个录制任务,对应转推任务发起时指定 RecordKey;\n如果填写该参数,表示调用者希望立即结束该录制任务。当RecordKey 指定的录制任务正在录制当前转推任务时,录制任务立即结束,否则录制任务不受影响。\n如果没有填写该参数,但是转推任务发起时填写了 RecordKey,则表示在续录等待时间结束后才结束录制任务,续录等待期间可以使用相同的 RecordKey 发起新的转推任务,和当前转推任务录制到同一文件。",
|
6770
|
+
"example": "\"\"",
|
6771
|
+
"member": "string",
|
6772
|
+
"name": "RecordKey",
|
6773
|
+
"required": false,
|
6774
|
+
"type": "string"
|
6526
6775
|
}
|
6527
6776
|
],
|
6528
6777
|
"type": "object"
|
@@ -6533,7 +6782,7 @@
|
|
6533
6782
|
{
|
6534
6783
|
"disabled": false,
|
6535
6784
|
"document": "转推任务唯一的String Id",
|
6536
|
-
"example": "
|
6785
|
+
"example": "\"\"",
|
6537
6786
|
"member": "string",
|
6538
6787
|
"name": "TaskId",
|
6539
6788
|
"output_required": true,
|
@@ -6728,23 +6977,6 @@
|
|
6728
6977
|
],
|
6729
6978
|
"usage": "in"
|
6730
6979
|
},
|
6731
|
-
"SummarizeTranscriptionRequest": {
|
6732
|
-
"document": "SummarizeTranscription请求参数结构体",
|
6733
|
-
"members": [],
|
6734
|
-
"type": "object"
|
6735
|
-
},
|
6736
|
-
"SummarizeTranscriptionResponse": {
|
6737
|
-
"document": "SummarizeTranscription返回参数结构体",
|
6738
|
-
"members": [
|
6739
|
-
{
|
6740
|
-
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
6741
|
-
"member": "string",
|
6742
|
-
"name": "RequestId",
|
6743
|
-
"type": "string"
|
6744
|
-
}
|
6745
|
-
],
|
6746
|
-
"type": "object"
|
6747
|
-
},
|
6748
6980
|
"TRTCDataResp": {
|
6749
6981
|
"document": "TRTC数据大盘/实时监控 API接口数据出参",
|
6750
6982
|
"members": [
|
@@ -6823,7 +7055,7 @@
|
|
6823
7055
|
{
|
6824
7056
|
"disabled": false,
|
6825
7057
|
"document": "媒体后续任务处理操作,即完成媒体上传后,可自动发起任务流操作。参数值为任务流模板名,云点播支持 创建任务流模板 并为模板命名。",
|
6826
|
-
"example": "
|
7058
|
+
"example": "LongVideoPreset",
|
6827
7059
|
"member": "string",
|
6828
7060
|
"name": "Procedure",
|
6829
7061
|
"required": false,
|
@@ -6859,7 +7091,7 @@
|
|
6859
7091
|
{
|
6860
7092
|
"disabled": false,
|
6861
7093
|
"document": "点播 子应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。",
|
6862
|
-
"example": "
|
7094
|
+
"example": "1",
|
6863
7095
|
"member": "uint64",
|
6864
7096
|
"name": "SubAppId",
|
6865
7097
|
"required": false,
|
@@ -6868,7 +7100,7 @@
|
|
6868
7100
|
{
|
6869
7101
|
"disabled": false,
|
6870
7102
|
"document": "任务流上下文,任务完成回调时透传。",
|
6871
|
-
"example": "
|
7103
|
+
"example": "\"\"",
|
6872
7104
|
"member": "string",
|
6873
7105
|
"name": "SessionContext",
|
6874
7106
|
"required": false,
|
@@ -6877,7 +7109,7 @@
|
|
6877
7109
|
{
|
6878
7110
|
"disabled": false,
|
6879
7111
|
"document": "上传上下文,上传完成回调时透传。",
|
6880
|
-
"example": "
|
7112
|
+
"example": "\"\"",
|
6881
7113
|
"member": "string",
|
6882
7114
|
"name": "SourceContext",
|
6883
7115
|
"required": false,
|
@@ -6895,7 +7127,7 @@
|
|
6895
7127
|
{
|
6896
7128
|
"disabled": false,
|
6897
7129
|
"document": "仅支持API录制上传vod,该参数表示用户可以自定义录制文件名前缀,【限制长度为64字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线和连词符】。前缀与自动生成的录制文件名之间用`__UserDefine_u_` 分开。",
|
6898
|
-
"example": "
|
7130
|
+
"example": "\"\"",
|
6899
7131
|
"member": "string",
|
6900
7132
|
"name": "UserDefineRecordId",
|
6901
7133
|
"required": false,
|
@@ -7257,12 +7489,21 @@
|
|
7257
7489
|
},
|
7258
7490
|
{
|
7259
7491
|
"disabled": false,
|
7260
|
-
"document": "源流URL
|
7492
|
+
"document": "源流URL。",
|
7261
7493
|
"example": "https://a.b/test.mp4",
|
7262
7494
|
"member": "string",
|
7263
7495
|
"name": "StreamUrl",
|
7264
|
-
"required":
|
7496
|
+
"required": false,
|
7265
7497
|
"type": "string"
|
7498
|
+
},
|
7499
|
+
{
|
7500
|
+
"disabled": false,
|
7501
|
+
"document": "音量,取值范围[0, 100],默认100,表示原音量。",
|
7502
|
+
"example": "90",
|
7503
|
+
"member": "uint64",
|
7504
|
+
"name": "Volume",
|
7505
|
+
"required": false,
|
7506
|
+
"type": "int"
|
7266
7507
|
}
|
7267
7508
|
],
|
7268
7509
|
"type": "object"
|
@@ -67,9 +67,9 @@
|
|
67
67
|
"DescribeCloudRecording": [
|
68
68
|
{
|
69
69
|
"document": "",
|
70
|
-
"input": "POST / HTTP/1.1\nHost: trtc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCloudRecording\n<公共请求参数>\n\n{\n \"TaskId\": \"
|
71
|
-
"output": "{\n \"Response\": {\n \"Status\": \"InProgress\",\n \"StorageFileList\": [],\n \"RequestId\": \"
|
72
|
-
"title": "查询SdkAppId 为
|
70
|
+
"input": "POST / HTTP/1.1\nHost: trtc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCloudRecording\n<公共请求参数>\n\n{\n \"TaskId\": \"m9-bVVU7nhKM5X3GsED6KNGVG********ndibWSn631uT6pbhE4PcPDSsggE.\",\n \"SdkAppId\": 1400188366\n}",
|
71
|
+
"output": "{\n \"Response\": {\n \"Status\": \"InProgress\",\n \"StorageFileList\": [],\n \"RequestId\": \"c4536bd1-c3ea-4e84-b2dd-a8491d2057e2\",\n \"TaskId\": \"m9-bVVU7nhKM5X3GsED6KNGVG********ndibWSn631uT6pbhE4PcPDSsggE.\"\n }\n}",
|
72
|
+
"title": "查询SdkAppId 为 1400***366 TaskId 为 m9-bVVU7nhKM5X3GsED6KNGVG********ndibWSn631uT6pbhE4PcPDSsggE.的录制状态。"
|
73
73
|
}
|
74
74
|
],
|
75
75
|
"DescribeMixTranscodingUsage": [
|
@@ -446,14 +446,6 @@
|
|
446
446
|
"title": "停止页面录制任务"
|
447
447
|
}
|
448
448
|
],
|
449
|
-
"SummarizeTranscription": [
|
450
|
-
{
|
451
|
-
"document": "",
|
452
|
-
"input": "POST / HTTP/1.1\nHost: trtc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SummarizeTranscription\n<公共请求参数>\n\n{}",
|
453
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"abc\"\n }\n}",
|
454
|
-
"title": "样例"
|
455
|
-
}
|
456
|
-
],
|
457
449
|
"UpdateAIConversation": [
|
458
450
|
{
|
459
451
|
"document": "在对话过程中,想要动态更新tts的音色",
|