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.
Files changed (282) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/argparser.py +1 -1
  3. tccli/command.py +2 -2
  4. tccli/configure.py +46 -1
  5. tccli/credentials.py +25 -0
  6. tccli/main.py +6 -2
  7. tccli/plugins/sso/__init__.py +61 -0
  8. tccli/plugins/sso/configs.py +4 -0
  9. tccli/plugins/sso/configure.py +45 -0
  10. tccli/plugins/sso/login.py +144 -0
  11. tccli/plugins/sso/logout.py +21 -0
  12. tccli/plugins/sso/terminal.py +161 -0
  13. tccli/plugins/sso/texts.py +40 -0
  14. tccli/services/__init__.py +6 -3
  15. tccli/services/acp/v20220105/api.json +7 -7
  16. tccli/services/acp/v20220105/examples.json +2 -2
  17. tccli/services/aiart/v20221229/api.json +29 -29
  18. tccli/services/aiart/v20221229/examples.json +8 -8
  19. tccli/services/apigateway/v20180808/api.json +18 -17
  20. tccli/services/apigateway/v20180808/examples.json +12 -12
  21. tccli/services/apm/v20210622/api.json +118 -4
  22. tccli/services/asr/v20190614/api.json +21 -20
  23. tccli/services/asr/v20190614/examples.json +13 -13
  24. tccli/services/autoscaling/v20180419/api.json +371 -309
  25. tccli/services/autoscaling/v20180419/examples.json +17 -17
  26. tccli/services/batch/v20170312/api.json +7 -7
  27. tccli/services/bda/v20200324/api.json +39 -31
  28. tccli/services/bda/v20200324/examples.json +9 -9
  29. tccli/services/bh/__init__.py +4 -0
  30. tccli/services/bh/bh_client.py +3428 -0
  31. tccli/services/bh/v20230418/api.json +8180 -0
  32. tccli/services/bh/v20230418/examples.json +519 -0
  33. tccli/services/bi/v20220105/api.json +80 -4
  34. tccli/services/bi/v20220105/examples.json +1 -1
  35. tccli/services/billing/billing_client.py +53 -0
  36. tccli/services/billing/v20180709/api.json +330 -24
  37. tccli/services/billing/v20180709/examples.json +8 -0
  38. tccli/services/bsca/v20210811/api.json +223 -18
  39. tccli/services/bsca/v20210811/examples.json +4 -4
  40. tccli/services/btoe/v20210514/api.json +4 -4
  41. tccli/services/btoe/v20210514/examples.json +2 -2
  42. tccli/services/ca/v20230228/api.json +60 -0
  43. tccli/services/cam/v20190116/api.json +11 -11
  44. tccli/services/cat/v20180409/api.json +9 -0
  45. tccli/services/cbs/v20170312/api.json +200 -188
  46. tccli/services/cbs/v20170312/examples.json +4 -4
  47. tccli/services/ccc/ccc_client.py +53 -0
  48. tccli/services/ccc/v20200210/api.json +541 -325
  49. tccli/services/ccc/v20200210/examples.json +26 -18
  50. tccli/services/cdb/cdb_client.py +13 -13
  51. tccli/services/cdb/v20170320/api.json +308 -274
  52. tccli/services/cdb/v20170320/examples.json +38 -38
  53. tccli/services/cdc/v20201214/api.json +283 -270
  54. tccli/services/cdc/v20201214/examples.json +26 -26
  55. tccli/services/cdn/v20180606/api.json +5 -3
  56. tccli/services/cds/v20180420/api.json +82 -76
  57. tccli/services/cds/v20180420/examples.json +1 -1
  58. tccli/services/cdwch/v20200915/api.json +1 -1
  59. tccli/services/cdwdoris/v20211228/api.json +54 -4
  60. tccli/services/cdz/v20221123/api.json +41 -5
  61. tccli/services/cfg/v20210820/api.json +31 -0
  62. tccli/services/cfs/v20190719/api.json +89 -1
  63. tccli/services/cfs/v20190719/examples.json +1 -1
  64. tccli/services/cfw/cfw_client.py +0 -53
  65. tccli/services/cfw/v20190904/api.json +1895 -2011
  66. tccli/services/cfw/v20190904/examples.json +175 -171
  67. tccli/services/ciam/v20220331/api.json +316 -315
  68. tccli/services/ciam/v20220331/examples.json +49 -49
  69. tccli/services/ckafka/v20190819/api.json +104 -75
  70. tccli/services/clb/v20180317/api.json +48 -26
  71. tccli/services/clb/v20180317/examples.json +1 -1
  72. tccli/services/cloudapp/v20220530/api.json +5 -1
  73. tccli/services/cloudaudit/cloudaudit_client.py +30 -30
  74. tccli/services/cloudaudit/v20190319/api.json +254 -211
  75. tccli/services/cloudaudit/v20190319/examples.json +19 -19
  76. tccli/services/cloudstudio/v20230508/api.json +38 -37
  77. tccli/services/cloudstudio/v20230508/examples.json +4 -4
  78. tccli/services/cls/cls_client.py +216 -4
  79. tccli/services/cls/v20201016/api.json +935 -147
  80. tccli/services/cls/v20201016/examples.json +43 -5
  81. tccli/services/csip/v20221121/api.json +2566 -2386
  82. tccli/services/csip/v20221121/examples.json +108 -108
  83. tccli/services/cvm/v20170312/api.json +191 -112
  84. tccli/services/cvm/v20170312/examples.json +2 -2
  85. tccli/services/cwp/cwp_client.py +4 -110
  86. tccli/services/cwp/v20180228/api.json +6498 -6252
  87. tccli/services/cwp/v20180228/examples.json +372 -412
  88. tccli/services/cynosdb/v20190107/api.json +170 -110
  89. tccli/services/cynosdb/v20190107/examples.json +91 -91
  90. tccli/services/dasb/v20191018/api.json +859 -637
  91. tccli/services/dasb/v20191018/examples.json +101 -101
  92. tccli/services/dcdb/dcdb_client.py +114 -61
  93. tccli/services/dcdb/v20180411/api.json +141 -7
  94. tccli/services/dcdb/v20180411/examples.json +32 -0
  95. tccli/services/dlc/v20210125/api.json +21 -11
  96. tccli/services/dnspod/dnspod_client.py +417 -46
  97. tccli/services/dnspod/v20210323/api.json +751 -30
  98. tccli/services/dnspod/v20210323/examples.json +62 -0
  99. tccli/services/domain/v20180808/api.json +3 -3
  100. tccli/services/domain/v20180808/examples.json +3 -3
  101. tccli/services/dts/v20211206/api.json +4 -4
  102. tccli/services/eb/v20210416/api.json +15 -15
  103. tccli/services/eb/v20210416/examples.json +1 -1
  104. tccli/services/ecm/v20190719/api.json +2 -2
  105. tccli/services/emr/v20190103/api.json +339 -114
  106. tccli/services/emr/v20190103/examples.json +64 -82
  107. tccli/services/es/es_client.py +249 -37
  108. tccli/services/es/v20180416/api.json +550 -0
  109. tccli/services/es/v20180416/examples.json +33 -1
  110. tccli/services/ess/ess_client.py +53 -0
  111. tccli/services/ess/v20201111/api.json +192 -38
  112. tccli/services/ess/v20201111/examples.json +35 -9
  113. tccli/services/essbasic/essbasic_client.py +106 -0
  114. tccli/services/essbasic/v20210526/api.json +287 -60
  115. tccli/services/essbasic/v20210526/examples.json +58 -18
  116. tccli/services/facefusion/v20181201/api.json +47 -45
  117. tccli/services/facefusion/v20181201/examples.json +2 -2
  118. tccli/services/facefusion/v20220927/api.json +54 -48
  119. tccli/services/facefusion/v20220927/examples.json +5 -5
  120. tccli/services/faceid/v20180301/api.json +497 -496
  121. tccli/services/faceid/v20180301/examples.json +219 -101
  122. tccli/services/fmu/v20191213/api.json +59 -67
  123. tccli/services/fmu/v20191213/examples.json +22 -22
  124. tccli/services/ft/v20200304/api.json +53 -57
  125. tccli/services/ft/v20200304/examples.json +14 -14
  126. tccli/services/gaap/v20180529/api.json +44 -26
  127. tccli/services/gaap/v20180529/examples.json +24 -30
  128. tccli/services/gme/v20180711/api.json +21 -11
  129. tccli/services/gme/v20180711/examples.json +1 -1
  130. tccli/services/hai/v20230812/api.json +116 -9
  131. tccli/services/hai/v20230812/examples.json +4 -4
  132. tccli/services/hunyuan/hunyuan_client.py +436 -12
  133. tccli/services/hunyuan/v20230901/api.json +1482 -118
  134. tccli/services/hunyuan/v20230901/examples.json +82 -18
  135. tccli/services/iai/v20180301/api.json +23 -19
  136. tccli/services/iai/v20180301/examples.json +2 -2
  137. tccli/services/iai/v20200303/api.json +530 -511
  138. tccli/services/iai/v20200303/examples.json +116 -86
  139. tccli/services/ig/__init__.py +4 -0
  140. tccli/services/ig/ig_client.py +195 -0
  141. tccli/services/ig/v20210518/api.json +83 -0
  142. tccli/services/ig/v20210518/examples.json +13 -0
  143. tccli/services/ioa/ioa_client.py +53 -0
  144. tccli/services/ioa/v20220601/api.json +662 -413
  145. tccli/services/ioa/v20220601/examples.json +24 -10
  146. tccli/services/iotexplorer/v20190423/api.json +73 -13
  147. tccli/services/iotexplorer/v20190423/examples.json +3 -3
  148. tccli/services/iotvideo/iotvideo_client.py +106 -0
  149. tccli/services/iotvideo/v20191126/api.json +256 -24
  150. tccli/services/iotvideo/v20191126/examples.json +19 -3
  151. tccli/services/iotvideo/v20201215/api.json +1 -1
  152. tccli/services/iotvideo/v20201215/examples.json +1 -1
  153. tccli/services/iotvideo/v20211125/api.json +1 -1
  154. tccli/services/iotvideo/v20211125/examples.json +2 -2
  155. tccli/services/iss/iss_client.py +69 -122
  156. tccli/services/iss/v20230517/api.json +10 -54
  157. tccli/services/iss/v20230517/examples.json +0 -14
  158. tccli/services/kms/v20190118/api.json +301 -268
  159. tccli/services/kms/v20190118/examples.json +45 -51
  160. tccli/services/lcic/lcic_client.py +159 -0
  161. tccli/services/lcic/v20220817/api.json +273 -1
  162. tccli/services/lcic/v20220817/examples.json +24 -0
  163. tccli/services/lighthouse/v20200324/api.json +56 -0
  164. tccli/services/live/live_client.py +159 -0
  165. tccli/services/live/v20180801/api.json +279 -9
  166. tccli/services/live/v20180801/examples.json +24 -0
  167. tccli/services/lke/v20231130/api.json +17 -17
  168. tccli/services/lke/v20231130/examples.json +19 -25
  169. tccli/services/mariadb/v20170312/api.json +7 -7
  170. tccli/services/market/v20191010/api.json +3 -3
  171. tccli/services/market/v20191010/examples.json +2 -2
  172. tccli/services/mmps/v20200710/api.json +47 -47
  173. tccli/services/mmps/v20200710/examples.json +3 -3
  174. tccli/services/mongodb/v20190725/api.json +10 -12
  175. tccli/services/monitor/v20180724/api.json +46 -19
  176. tccli/services/mps/v20190612/api.json +282 -5
  177. tccli/services/mps/v20190612/examples.json +25 -1
  178. tccli/services/mqtt/v20240516/api.json +2 -2
  179. tccli/services/mrs/v20200910/api.json +72 -34
  180. tccli/services/mrs/v20200910/examples.json +2 -2
  181. tccli/services/ms/v20180408/api.json +535 -506
  182. tccli/services/ms/v20180408/examples.json +25 -25
  183. tccli/services/oceanus/v20190422/api.json +130 -0
  184. tccli/services/ocr/ocr_client.py +232 -20
  185. tccli/services/ocr/v20181119/api.json +2263 -758
  186. tccli/services/ocr/v20181119/examples.json +200 -180
  187. tccli/services/omics/v20221128/api.json +614 -553
  188. tccli/services/omics/v20221128/examples.json +9 -9
  189. tccli/services/organization/organization_client.py +352 -34
  190. tccli/services/organization/v20210331/api.json +464 -4
  191. tccli/services/organization/v20210331/examples.json +49 -1
  192. tccli/services/partners/v20180321/api.json +244 -234
  193. tccli/services/partners/v20180321/examples.json +19 -19
  194. tccli/services/privatedns/privatedns_client.py +428 -4
  195. tccli/services/privatedns/v20201028/api.json +815 -11
  196. tccli/services/privatedns/v20201028/examples.json +64 -0
  197. tccli/services/pts/v20210728/api.json +18 -0
  198. tccli/services/pts/v20210728/examples.json +1 -1
  199. tccli/services/rce/rce_client.py +53 -0
  200. tccli/services/rce/v20201103/api.json +146 -0
  201. tccli/services/rce/v20201103/examples.json +8 -0
  202. tccli/services/redis/v20180412/api.json +42 -42
  203. tccli/services/redis/v20180412/examples.json +19 -19
  204. tccli/services/region/v20220627/api.json +1 -1
  205. tccli/services/rum/v20210622/api.json +9 -0
  206. tccli/services/scf/scf_client.py +269 -4
  207. tccli/services/scf/v20180416/api.json +569 -15
  208. tccli/services/scf/v20180416/examples.json +47 -1
  209. tccli/services/smop/v20201203/api.json +46 -42
  210. tccli/services/smop/v20201203/examples.json +2 -2
  211. tccli/services/soe/v20180724/api.json +10 -10
  212. tccli/services/sqlserver/v20180328/api.json +21 -8
  213. tccli/services/sqlserver/v20180328/examples.json +5 -5
  214. tccli/services/ssl/v20191205/api.json +98 -5
  215. tccli/services/ssm/v20190923/api.json +292 -231
  216. tccli/services/ssm/v20190923/examples.json +42 -42
  217. tccli/services/tat/v20201028/api.json +124 -122
  218. tccli/services/tat/v20201028/examples.json +24 -30
  219. tccli/services/tchd/v20230306/api.json +5 -5
  220. tccli/services/tchd/v20230306/examples.json +3 -3
  221. tccli/services/tcr/v20190924/api.json +1 -1
  222. tccli/services/tcr/v20190924/examples.json +1 -1
  223. tccli/services/tcss/v20201101/api.json +1984 -1437
  224. tccli/services/tcss/v20201101/examples.json +350 -368
  225. tccli/services/tdmq/v20200217/api.json +603 -464
  226. tccli/services/tdmq/v20200217/examples.json +105 -105
  227. tccli/services/tds/v20220801/api.json +4 -4
  228. tccli/services/tem/v20210701/api.json +429 -372
  229. tccli/services/tem/v20210701/examples.json +85 -85
  230. tccli/services/teo/teo_client.py +277 -12
  231. tccli/services/teo/v20220901/api.json +1029 -124
  232. tccli/services/teo/v20220901/examples.json +84 -8
  233. tccli/services/thpc/v20230321/api.json +5 -5
  234. tccli/services/tke/tke_client.py +270 -58
  235. tccli/services/tke/v20180525/api.json +79 -27
  236. tccli/services/tke/v20180525/examples.json +9 -1
  237. tccli/services/tke/v20220501/api.json +176 -0
  238. tccli/services/tke/v20220501/examples.json +24 -0
  239. tccli/services/tms/tms_client.py +4 -57
  240. tccli/services/tms/v20201229/api.json +0 -354
  241. tccli/services/tms/v20201229/examples.json +0 -8
  242. tccli/services/tmt/v20180321/api.json +38 -8
  243. tccli/services/trp/v20210515/api.json +86 -74
  244. tccli/services/trp/v20210515/examples.json +65 -65
  245. tccli/services/trro/v20220325/api.json +72 -71
  246. tccli/services/trro/v20220325/examples.json +8 -8
  247. tccli/services/trtc/trtc_client.py +8 -61
  248. tccli/services/trtc/v20190722/api.json +293 -52
  249. tccli/services/trtc/v20190722/examples.json +3 -11
  250. tccli/services/tse/tse_client.py +110 -4
  251. tccli/services/tse/v20201207/api.json +122 -7
  252. tccli/services/tse/v20201207/examples.json +25 -9
  253. tccli/services/vclm/v20240523/api.json +225 -82
  254. tccli/services/vclm/v20240523/examples.json +13 -19
  255. tccli/services/vod/v20180717/api.json +431 -4
  256. tccli/services/vod/v20180717/examples.json +25 -5
  257. tccli/services/vod/v20240718/api.json +11 -11
  258. tccli/services/vod/v20240718/examples.json +4 -4
  259. tccli/services/vod/vod_client.py +53 -0
  260. tccli/services/vpc/v20170312/api.json +1195 -892
  261. tccli/services/vpc/v20170312/examples.json +84 -68
  262. tccli/services/vpc/vpc_client.py +168 -62
  263. tccli/services/waf/v20180125/api.json +2611 -2187
  264. tccli/services/waf/v20180125/examples.json +224 -284
  265. tccli/services/waf/waf_client.py +225 -119
  266. tccli/services/wav/v20210129/api.json +48 -48
  267. tccli/services/wav/v20210129/examples.json +4 -4
  268. tccli/services/wedata/v20210820/api.json +1595 -25
  269. tccli/services/wedata/v20210820/examples.json +44 -4
  270. tccli/services/wedata/wedata_client.py +265 -0
  271. tccli/services/weilingwith/v20230427/api.json +6 -6
  272. tccli/services/weilingwith/v20230427/examples.json +3 -3
  273. tccli/sso.py +229 -0
  274. {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/METADATA +6 -2
  275. {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/RECORD +278 -265
  276. tccli/services/cr/__init__.py +0 -4
  277. tccli/services/cr/cr_client.py +0 -1626
  278. tccli/services/cr/v20180321/api.json +0 -2829
  279. tccli/services/cr/v20180321/examples.json +0 -235
  280. {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/WHEEL +0 -0
  281. {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/entry_points.txt +0 -0
  282. {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/license_files/LICENSE +0 -0
@@ -357,6 +357,27 @@
357
357
  "output": "DescribeCallbackRecordsListResponse",
358
358
  "status": "online"
359
359
  },
360
+ "DescribeCasterList": {
361
+ "document": "该接口用来查询账号下所有的导播台列表",
362
+ "input": "DescribeCasterListRequest",
363
+ "name": "查询导播台列表",
364
+ "output": "DescribeCasterListResponse",
365
+ "status": "online"
366
+ },
367
+ "DescribeCasterTransitionTypes": {
368
+ "document": "该接口用来获取所有的转场名称及其对应的素材url。",
369
+ "input": "DescribeCasterTransitionTypesRequest",
370
+ "name": "获取所有的转场列表",
371
+ "output": "DescribeCasterTransitionTypesResponse",
372
+ "status": "online"
373
+ },
374
+ "DescribeCasterUserStatus": {
375
+ "document": "本接口用来查询当前APPID导播台业务状态",
376
+ "input": "DescribeCasterUserStatusRequest",
377
+ "name": "查询当前APPID导播台业务状态",
378
+ "output": "DescribeCasterUserStatusResponse",
379
+ "status": "online"
380
+ },
360
381
  "DescribeConcurrentRecordStreamNum": {
361
382
  "document": "查询并发录制路数,对慢直播和普通直播适用。",
362
383
  "input": "DescribeConcurrentRecordStreamNumRequest",
@@ -1958,6 +1979,102 @@
1958
1979
  ],
1959
1980
  "type": "object"
1960
1981
  },
1982
+ "CasterBriefInfo": {
1983
+ "document": "导播台简略信息",
1984
+ "members": [
1985
+ {
1986
+ "disabled": false,
1987
+ "document": "导播台ID",
1988
+ "example": "无",
1989
+ "member": "uint64",
1990
+ "name": "CasterId",
1991
+ "output_required": true,
1992
+ "type": "int",
1993
+ "value_allowed_null": false
1994
+ },
1995
+ {
1996
+ "disabled": false,
1997
+ "document": "导播台名称\n注意:此字段可能返回 null,表示取不到有效值。",
1998
+ "example": "无",
1999
+ "member": "string",
2000
+ "name": "CasterName",
2001
+ "output_required": true,
2002
+ "type": "string",
2003
+ "value_allowed_null": true
2004
+ },
2005
+ {
2006
+ "disabled": false,
2007
+ "document": "导播台的描述\n注意:此字段可能返回 null,表示取不到有效值。",
2008
+ "example": "无",
2009
+ "member": "string",
2010
+ "name": "Description",
2011
+ "output_required": true,
2012
+ "type": "string",
2013
+ "value_allowed_null": true
2014
+ },
2015
+ {
2016
+ "disabled": false,
2017
+ "document": "开始计费时间,值为unix时间戳\n注意:此字段可能返回 null,表示取不到有效值。",
2018
+ "example": "无",
2019
+ "member": "uint64",
2020
+ "name": "StartBillingTime",
2021
+ "output_required": true,
2022
+ "type": "int",
2023
+ "value_allowed_null": true
2024
+ },
2025
+ {
2026
+ "disabled": false,
2027
+ "document": "结束计费时间,值为unix时间戳\n注意:此字段可能返回 null,表示取不到有效值。",
2028
+ "example": "无",
2029
+ "member": "uint64",
2030
+ "name": "StopBillingTime",
2031
+ "output_required": true,
2032
+ "type": "int",
2033
+ "value_allowed_null": true
2034
+ },
2035
+ {
2036
+ "disabled": false,
2037
+ "document": "创建时间,值为unix时间戳\n注意:此字段可能返回 null,表示取不到有效值。",
2038
+ "example": "无",
2039
+ "member": "uint64",
2040
+ "name": "CreateTime",
2041
+ "output_required": true,
2042
+ "type": "int",
2043
+ "value_allowed_null": true
2044
+ },
2045
+ {
2046
+ "disabled": false,
2047
+ "document": "导播台状态\n0:停止状态,无预监,无主监\n1:无预监,有主监\n2:有预监,无主监\n3:有预监,有主监\n注意:此字段可能返回 null,表示取不到有效值。",
2048
+ "example": "无",
2049
+ "member": "uint64",
2050
+ "name": "Status",
2051
+ "output_required": true,
2052
+ "type": "int",
2053
+ "value_allowed_null": true
2054
+ },
2055
+ {
2056
+ "disabled": false,
2057
+ "document": "导播台的过期时间,值为-1或unix时间戳。\n当值为-1时,代表永不过期。\n当值为特定unix时间戳时,代表过期时间为对应的时间,导播台在该时间自动停止。\n注意:此字段可能返回 null,表示取不到有效值。",
2058
+ "example": "无",
2059
+ "member": "int64",
2060
+ "name": "ExpireTime",
2061
+ "output_required": true,
2062
+ "type": "int",
2063
+ "value_allowed_null": true
2064
+ },
2065
+ {
2066
+ "disabled": false,
2067
+ "document": "计费字段,该字段暂无作用\n注意:此字段可能返回 null,表示取不到有效值。",
2068
+ "example": "无",
2069
+ "member": "int64",
2070
+ "name": "FeeType",
2071
+ "output_required": true,
2072
+ "type": "int",
2073
+ "value_allowed_null": true
2074
+ }
2075
+ ],
2076
+ "usage": "out"
2077
+ },
1961
2078
  "CdnPlayStatData": {
1962
2079
  "document": "下行播放统计指标",
1963
2080
  "members": [
@@ -5794,6 +5911,97 @@
5794
5911
  ],
5795
5912
  "type": "object"
5796
5913
  },
5914
+ "DescribeCasterListRequest": {
5915
+ "document": "DescribeCasterList请求参数结构体",
5916
+ "members": [],
5917
+ "type": "object"
5918
+ },
5919
+ "DescribeCasterListResponse": {
5920
+ "document": "DescribeCasterList返回参数结构体",
5921
+ "members": [
5922
+ {
5923
+ "disabled": false,
5924
+ "document": "用户对应的导播台简要信息列表\n注意:此字段可能返回 null,表示取不到有效值。",
5925
+ "example": "无",
5926
+ "member": "CasterBriefInfo",
5927
+ "name": "CasterList",
5928
+ "output_required": true,
5929
+ "type": "list",
5930
+ "value_allowed_null": true
5931
+ },
5932
+ {
5933
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
5934
+ "member": "string",
5935
+ "name": "RequestId",
5936
+ "type": "string"
5937
+ }
5938
+ ],
5939
+ "type": "object"
5940
+ },
5941
+ "DescribeCasterTransitionTypesRequest": {
5942
+ "document": "DescribeCasterTransitionTypes请求参数结构体",
5943
+ "members": [
5944
+ {
5945
+ "disabled": false,
5946
+ "document": "导播台ID",
5947
+ "example": "10",
5948
+ "member": "uint64",
5949
+ "name": "CasterId",
5950
+ "required": true,
5951
+ "type": "int"
5952
+ }
5953
+ ],
5954
+ "type": "object"
5955
+ },
5956
+ "DescribeCasterTransitionTypesResponse": {
5957
+ "document": "DescribeCasterTransitionTypes返回参数结构体",
5958
+ "members": [
5959
+ {
5960
+ "disabled": false,
5961
+ "document": "转场信息列表\n注意:此字段可能返回 null,表示取不到有效值。",
5962
+ "example": "无",
5963
+ "member": "TransitionTypeInfo",
5964
+ "name": "TransitionTypes",
5965
+ "output_required": true,
5966
+ "type": "list",
5967
+ "value_allowed_null": true
5968
+ },
5969
+ {
5970
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
5971
+ "member": "string",
5972
+ "name": "RequestId",
5973
+ "type": "string"
5974
+ }
5975
+ ],
5976
+ "type": "object"
5977
+ },
5978
+ "DescribeCasterUserStatusRequest": {
5979
+ "document": "DescribeCasterUserStatus请求参数结构体",
5980
+ "members": [],
5981
+ "type": "object"
5982
+ },
5983
+ "DescribeCasterUserStatusResponse": {
5984
+ "document": "DescribeCasterUserStatus返回参数结构体",
5985
+ "members": [
5986
+ {
5987
+ "disabled": false,
5988
+ "document": "0: 未开通导播台\n1:开通了导播台,且处于正常状态\n2:开通了导播台,但处于欠费状态\n3:开通了导播台,但处于封禁状态",
5989
+ "example": "1",
5990
+ "member": "int64",
5991
+ "name": "UserStatus",
5992
+ "required": true,
5993
+ "type": "int",
5994
+ "value_allowed_null": false
5995
+ },
5996
+ {
5997
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
5998
+ "member": "string",
5999
+ "name": "RequestId",
6000
+ "type": "string"
6001
+ }
6002
+ ],
6003
+ "type": "object"
6004
+ },
5797
6005
  "DescribeConcurrentRecordStreamNumRequest": {
5798
6006
  "document": "DescribeConcurrentRecordStreamNum请求参数结构体",
5799
6007
  "members": [
@@ -17054,7 +17262,7 @@
17054
17262
  "example": "无",
17055
17263
  "member": "string",
17056
17264
  "name": "DomainGroup",
17057
- "required": false,
17265
+ "output_required": true,
17058
17266
  "type": "string",
17059
17267
  "value_allowed_null": true
17060
17268
  },
@@ -17064,7 +17272,7 @@
17064
17272
  "example": "无",
17065
17273
  "member": "string",
17066
17274
  "name": "Domain",
17067
- "required": false,
17275
+ "output_required": true,
17068
17276
  "type": "string",
17069
17277
  "value_allowed_null": false
17070
17278
  },
@@ -17074,7 +17282,7 @@
17074
17282
  "example": "无",
17075
17283
  "member": "string",
17076
17284
  "name": "AppName",
17077
- "required": false,
17285
+ "output_required": true,
17078
17286
  "type": "string",
17079
17287
  "value_allowed_null": false
17080
17288
  },
@@ -17084,7 +17292,7 @@
17084
17292
  "example": "无",
17085
17293
  "member": "string",
17086
17294
  "name": "StreamName",
17087
- "required": false,
17295
+ "output_required": true,
17088
17296
  "type": "string",
17089
17297
  "value_allowed_null": false
17090
17298
  },
@@ -17094,7 +17302,7 @@
17094
17302
  "example": "无",
17095
17303
  "member": "int64",
17096
17304
  "name": "StartTime",
17097
- "required": false,
17305
+ "output_required": true,
17098
17306
  "type": "int",
17099
17307
  "value_allowed_null": false
17100
17308
  },
@@ -17104,7 +17312,7 @@
17104
17312
  "example": "无",
17105
17313
  "member": "int64",
17106
17314
  "name": "EndTime",
17107
- "required": false,
17315
+ "output_required": true,
17108
17316
  "type": "int",
17109
17317
  "value_allowed_null": false
17110
17318
  },
@@ -17114,7 +17322,7 @@
17114
17322
  "example": "无",
17115
17323
  "member": "uint64",
17116
17324
  "name": "TransCodeId",
17117
- "required": false,
17325
+ "output_required": true,
17118
17326
  "type": "int",
17119
17327
  "value_allowed_null": true
17120
17328
  },
@@ -17124,7 +17332,7 @@
17124
17332
  "example": "无",
17125
17333
  "member": "int64",
17126
17334
  "name": "StreamType",
17127
- "required": false,
17335
+ "output_required": true,
17128
17336
  "type": "int",
17129
17337
  "value_allowed_null": false
17130
17338
  },
@@ -17134,9 +17342,35 @@
17134
17342
  "example": "无",
17135
17343
  "member": "uint64",
17136
17344
  "name": "Duration",
17137
- "required": false,
17345
+ "output_required": true,
17138
17346
  "type": "int",
17139
17347
  "value_allowed_null": true
17348
+ },
17349
+ {
17350
+ "disabled": false,
17351
+ "document": "时移自适应码率子流列表。\n注意:此字段可能返回 null,表示取不到有效值。",
17352
+ "example": "无",
17353
+ "member": "TimeShiftSubStream",
17354
+ "name": "TimeShiftSubStreams",
17355
+ "output_required": false,
17356
+ "type": "list",
17357
+ "value_allowed_null": true
17358
+ }
17359
+ ],
17360
+ "usage": "out"
17361
+ },
17362
+ "TimeShiftSubStream": {
17363
+ "document": "时移自适应码率子流信息。",
17364
+ "members": [
17365
+ {
17366
+ "disabled": false,
17367
+ "document": "时移自适应码率子流转码模板ID。",
17368
+ "example": "无",
17369
+ "member": "uint64",
17370
+ "name": "TransCodeId",
17371
+ "output_required": true,
17372
+ "type": "int",
17373
+ "value_allowed_null": false
17140
17374
  }
17141
17375
  ],
17142
17376
  "usage": "out"
@@ -17441,6 +17675,42 @@
17441
17675
  ],
17442
17676
  "usage": "out"
17443
17677
  },
17678
+ "TransitionTypeInfo": {
17679
+ "document": "转场信息",
17680
+ "members": [
17681
+ {
17682
+ "disabled": false,
17683
+ "document": "转场名称\n注意:此字段可能返回 null,表示取不到有效值。",
17684
+ "example": "heart",
17685
+ "member": "string",
17686
+ "name": "TransitionType",
17687
+ "output_required": true,
17688
+ "type": "string",
17689
+ "value_allowed_null": true
17690
+ },
17691
+ {
17692
+ "disabled": false,
17693
+ "document": "素材url\n注意:此字段可能返回 null,表示取不到有效值。",
17694
+ "example": "http://www.example.com/url/example",
17695
+ "member": "string",
17696
+ "name": "SourceUrl",
17697
+ "output_required": true,
17698
+ "type": "string",
17699
+ "value_allowed_null": true
17700
+ },
17701
+ {
17702
+ "disabled": false,
17703
+ "document": "转场的下标,可用来排序,从1开始递增\n注意:此字段可能返回 null,表示取不到有效值。",
17704
+ "example": "1",
17705
+ "member": "uint64",
17706
+ "name": "Index",
17707
+ "output_required": true,
17708
+ "type": "int",
17709
+ "value_allowed_null": true
17710
+ }
17711
+ ],
17712
+ "usage": "out"
17713
+ },
17444
17714
  "UnBindLiveDomainCertRequest": {
17445
17715
  "document": "UnBindLiveDomainCert请求参数结构体",
17446
17716
  "members": [
@@ -432,6 +432,30 @@
432
432
  "title": "请求示例"
433
433
  }
434
434
  ],
435
+ "DescribeCasterList": [
436
+ {
437
+ "document": "获取某个账号下的所有导播台列表",
438
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCasterList\n<公共请求参数>\n\n{}",
439
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\",\n \"CasterList\": [\n {\n \"CasterId\": 10,\n \"CasterName\": \"example\",\n \"StartBillingTime\": 0,\n \"StopBillingTime\": 1731964027,\n \"Description\": \"\",\n \"CreateTime\": 1603158528,\n \"Status\": 0,\n \"ExpireTime\": -1,\n \"FeeType\": 0\n }\n ]\n }\n}",
440
+ "title": "请求示例"
441
+ }
442
+ ],
443
+ "DescribeCasterTransitionTypes": [
444
+ {
445
+ "document": "",
446
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCasterTransitionTypes\n<公共请求参数>\n\n{\n \"CasterId\": \"10\"\n}",
447
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\",\n \"TransitionTypes\": [\n {\n \"Index\": 1,\n \"SourceUrl\": \"http://www.example.com/url/example\",\n \"TransitionType\": \"heart\"\n }\n ]\n }\n}",
448
+ "title": "请求示例"
449
+ }
450
+ ],
451
+ "DescribeCasterUserStatus": [
452
+ {
453
+ "document": "",
454
+ "input": "POST / HTTP/1.1\nHost: live.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCasterUserStatus\n<公共请求参数>\n\n{}",
455
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\",\n \"UserStatus\": 1\n }\n}",
456
+ "title": "请求示例"
457
+ }
458
+ ],
435
459
  "DescribeConcurrentRecordStreamNum": [
436
460
  {
437
461
  "document": "查询并发录制路数,对慢直播和普通直播适用。",
@@ -15,11 +15,11 @@
15
15
  "status": "online"
16
16
  },
17
17
  "ConvertDocument": {
18
- "document": "接口支持图片和PDF转可编辑word格式文件,将文件中的图片、文本、表格等元素识别,并根据位置进行还原。",
18
+ "document": "产品规划\n\n接口支持图片和PDF转可编辑word格式文件,将文件中的图片、文本、表格等元素识别,并根据位置进行还原。",
19
19
  "input": "ConvertDocumentRequest",
20
20
  "name": "文档转换",
21
21
  "output": "ConvertDocumentResponse",
22
- "status": "online"
22
+ "status": "deprecated"
23
23
  },
24
24
  "CreateApp": {
25
25
  "document": "创建知识引擎应用。",
@@ -1975,7 +1975,7 @@
1975
1975
  "members": [
1976
1976
  {
1977
1977
  "disabled": false,
1978
- "document": "文件类型。支持的文件类型:PDF、DOC、DOCX、PPT、PPTX、MD、TXT、XLS、XLSX、CSV、PNG、JPG、JPEG、BMP、GIF、WEBP、HEIC、EPS、ICNS、IM、PCX、PPM、TIFF、XBM、HEIF、JP2",
1978
+ "document": "文件类型。支持的文件类型:PDF、DOC、DOCX、PPT、PPTX、MD、TXT、XLS、XLSX、CSV、PNG、JPG、JPEG、BMP、GIF、WEBP、HEIC、EPS、ICNS、IM、PCX、PPM、TIFF、XBM、HEIF、JP2",
1979
1979
  "example": "PDF",
1980
1980
  "member": "string",
1981
1981
  "name": "FileType",
@@ -1993,7 +1993,7 @@
1993
1993
  },
1994
1994
  {
1995
1995
  "disabled": false,
1996
- "document": "文件的 Url 地址。支持的文件大小:所下载文件经 Base64 编码后不超过 100M。文件下载时间不超过 15 秒。支持的图片像素:单边介于20-10000px之间。 文件存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。",
1996
+ "document": "<p>文件的Url地址。文件下载时间不超过15秒。支持的图片像素:单边介于20-10000px之间。文件存储于腾讯云的Url可保障更高的下载速度和稳定性,建议文件存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。所下载文件经 Base64 编码后不超过支持的文件大小:</p><table> <tbody> <tr> <td>文件类型</td> <td>支持的文件大小</td> </tr> <tr> <td>PDF</td> <td>200M</td> </tr> <tr> <td>DOC</td> <td>200M</td> </tr> <tr> <td>DOCX</td> <td>200M</td> </tr> <tr> <td>PPT</td> <td>200M</td> </tr> <tr> <td>PPTX</td> <td>200M</td> </tr> <tr> <td>MD</td> <td>10M</td> </tr> <tr> <td>TXT</td> <td>10M</td> </tr> <tr> <td>XLS</td> <td>20M</td> </tr> <tr> <td>XLSX</td> <td>20M</td> </tr> <tr> <td>CSV</td> <td>20M</td> </tr> <tr> <td>PNG</td> <td>20M</td> </tr> <tr> <td>JPG</td> <td>20M</td> </tr> <tr> <td>JPEG</td> <td>20M</td> </tr> <tr> <td>BMP</td> <td>20M</td> </tr> <tr> <td>GIF</td> <td>20M</td> </tr> <tr> <td>WEBP</td> <td>20M</td> </tr> <tr> <td>HEIC</td> <td>20M</td> </tr> <tr> <td>EPS</td> <td>20M</td> </tr> <tr> <td>ICNS</td> <td>20M</td> </tr> <tr> <td>IM</td> <td>20M</td> </tr> <tr> <td>PCX</td> <td>20M</td> </tr> <tr> <td>PPM</td> <td>20M</td> </tr> <tr> <td>TIFF</td> <td>20M</td> </tr> <tr> <td>XBM</td> <td>20M</td> </tr> <tr> <td>HEIF</td> <td>20M</td> </tr> <tr> <td>JP2</td> <td>20M</td> </tr> </tbody> <colgroup> <col> <col> </colgroup></table>",
1997
1997
  "example": "无",
1998
1998
  "member": "string",
1999
1999
  "name": "FileUrl",
@@ -2002,7 +2002,7 @@
2002
2002
  },
2003
2003
  {
2004
2004
  "disabled": false,
2005
- "document": "当传入文件是PDF类型时,用来指定pdf识别的起始页码,识别的页码包含当前值。默认为1,表示从pdf文件的第1页开始识别。",
2005
+ "document": "当传入文件类型为PDF、DOC、DOCX、PPT、PPTX,用来指定文件识别的起始页码,识别的页码包含当前值。默认为1,表示从文件的第1页开始识别。",
2006
2006
  "example": "1",
2007
2007
  "member": "int64",
2008
2008
  "name": "FileStartPageNumber",
@@ -2011,8 +2011,8 @@
2011
2011
  },
2012
2012
  {
2013
2013
  "disabled": false,
2014
- "document": "当传入文件是PDF类型时,用来指定pdf识别的结束页码,识别的页码包含当前值。默认为100,表示识别到pdf文件的第100页。单次调用最多支持识别100页内容,即FileEndPageNumber-FileStartPageNumber需要不大于100。",
2015
- "example": "3",
2014
+ "document": "当传入文件类型为PDF、DOC、DOCX、PPT、PPTX,用来指定文件识别的结束页码,识别的页码包含当前值。默认为100,表示识别到文件的第100页。单次调用最多支持识别1000页内容,即FileEndPageNumber-FileStartPageNumber需要不大于1000。",
2015
+ "example": "100",
2016
2016
  "member": "int64",
2017
2017
  "name": "FileEndPageNumber",
2018
2018
  "required": false,
@@ -2020,7 +2020,7 @@
2020
2020
  },
2021
2021
  {
2022
2022
  "disabled": false,
2023
- "document": "创建文档解析任务配置信息",
2023
+ "document": "创建文档解析任务配置信息。",
2024
2024
  "example": "{\"TableResultType\":\"1\"}",
2025
2025
  "member": "CreateReconstructDocumentFlowConfig",
2026
2026
  "name": "Config",
@@ -2035,7 +2035,7 @@
2035
2035
  "members": [
2036
2036
  {
2037
2037
  "disabled": false,
2038
- "document": "任务唯一id。30天内可以通过GetReconstructDocumentResult接口查询TaskId对应的处理结果。",
2038
+ "document": "任务唯一ID。30天内可以通过[GetReconstructDocumentResult](https://cloud.tencent.com/document/product/1759/107505)接口查询TaskId对应的处理结果。",
2039
2039
  "example": "无",
2040
2040
  "member": "string",
2041
2041
  "name": "TaskId",
@@ -4128,7 +4128,7 @@
4128
4128
  },
4129
4129
  {
4130
4130
  "disabled": false,
4131
- "document": "IsPublic为空用于上传文件时选择场景,当上传为图片文件是IsPublic为true,上传文档文件时场景IsPublic为false",
4131
+ "document": "IsPublic用于上传文件时选择场景,当上传为对话端文件时IsPublic为true,上传文档库文件时场景IsPublic为false",
4132
4132
  "example": "false",
4133
4133
  "member": "bool",
4134
4134
  "name": "IsPublic",
@@ -5455,7 +5455,7 @@
5455
5455
  "members": [
5456
5456
  {
5457
5457
  "disabled": false,
5458
- "document": "文档业务ID",
5458
+ "document": "文档BizID",
5459
5459
  "example": "无",
5460
5460
  "member": "string",
5461
5461
  "name": "DocBizId",
@@ -5849,7 +5849,7 @@
5849
5849
  "members": [
5850
5850
  {
5851
5851
  "disabled": false,
5852
- "document": "任务唯一id",
5852
+ "document": "任务唯一Id。[CreateReconstructDocumentFlow](https://cloud.tencent.com/document/product/1759/107506) 返回的TaskId。",
5853
5853
  "example": "无",
5854
5854
  "member": "string",
5855
5855
  "name": "TaskId",
@@ -5864,7 +5864,7 @@
5864
5864
  "members": [
5865
5865
  {
5866
5866
  "disabled": false,
5867
- "document": "任务状态: Success->执行完成;Processing->执行中;Failed->执行失败;WaitExecute->等待执行;",
5867
+ "document": "任务状态: Success->执行完成;Processing->执行中;Failed->执行失败;WaitExecute->等待执行。",
5868
5868
  "example": "无",
5869
5869
  "member": "string",
5870
5870
  "name": "Status",
@@ -5874,7 +5874,7 @@
5874
5874
  },
5875
5875
  {
5876
5876
  "disabled": false,
5877
- "document": "输入文件中嵌入的图片中文字内容的识别结果,存储在腾讯云cos的下载地址",
5877
+ "document": "本次文档解析的结果文件,存储在腾讯云COS的下载URL,下载URL的有效期为10分钟。",
5878
5878
  "example": "无",
5879
5879
  "member": "string",
5880
5880
  "name": "DocumentRecognizeResultUrl",
@@ -5884,7 +5884,7 @@
5884
5884
  },
5885
5885
  {
5886
5886
  "disabled": false,
5887
- "document": "文档解析失败的页码",
5887
+ "document": "本次文档解析失败的页码信息。",
5888
5888
  "example": "无",
5889
5889
  "member": "ReconstructDocumentFailedPage",
5890
5890
  "name": "FailedPages",
@@ -6118,7 +6118,7 @@
6118
6118
  },
6119
6119
  {
6120
6120
  "disabled": false,
6121
- "document": "QA业务ID列表",
6121
+ "document": "QaBizID列表",
6122
6122
  "example": "无",
6123
6123
  "member": "string",
6124
6124
  "name": "QaBizIds",
@@ -8176,7 +8176,7 @@
8176
8176
  },
8177
8177
  {
8178
8178
  "disabled": false,
8179
- "document": "发布业务ID",
8179
+ "document": "发布单ID",
8180
8180
  "example": "无",
8181
8181
  "member": "string",
8182
8182
  "name": "ReleaseBizId",