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
@@ -198,13 +198,13 @@
198
198
  "members": [
199
199
  {
200
200
  "disabled": false,
201
- "document": "删除失败的设备ID列表\n注意:此字段可能返回 null,表示取不到有效值。",
201
+ "document": "删除失败的设备ID列表",
202
202
  "example": "[\"dev1\"]",
203
203
  "member": "string",
204
204
  "name": "FailedDeviceIds",
205
- "required": true,
205
+ "output_required": true,
206
206
  "type": "list",
207
- "value_allowed_null": true
207
+ "value_allowed_null": false
208
208
  },
209
209
  {
210
210
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
@@ -420,7 +420,7 @@
420
420
  "example": "f3glr49rc96pralw",
421
421
  "member": "string",
422
422
  "name": "ProjectId",
423
- "required": true,
423
+ "output_required": true,
424
424
  "type": "string",
425
425
  "value_allowed_null": false
426
426
  },
@@ -1387,7 +1387,7 @@
1387
1387
  {
1388
1388
  "disabled": false,
1389
1389
  "document": "已经绑定licenseId列表\n注意:此字段可能返回 null,表示取不到有效值。",
1390
- "example": "",
1390
+ "example": "[\"341c4a1d-3852-4eeb-bbdd-7e216f5c7345\"]",
1391
1391
  "member": "string",
1392
1392
  "name": "LicenseIds",
1393
1393
  "output_required": true,
@@ -1516,6 +1516,7 @@
1516
1516
  "example": "12",
1517
1517
  "member": "int64",
1518
1518
  "name": "AvailableCount",
1519
+ "output_required": true,
1519
1520
  "type": "int",
1520
1521
  "value_allowed_null": false
1521
1522
  },
@@ -1757,63 +1758,63 @@
1757
1758
  "members": [
1758
1759
  {
1759
1760
  "disabled": false,
1760
- "document": "该类型的license个数\n注意:此字段可能返回 null,表示取不到有效值。",
1761
+ "document": "该类型的license个数",
1761
1762
  "example": "3",
1762
1763
  "member": "int64",
1763
1764
  "name": "Count",
1764
- "required": false,
1765
+ "output_required": false,
1765
1766
  "type": "int",
1766
- "value_allowed_null": true
1767
+ "value_allowed_null": false
1767
1768
  },
1768
1769
  {
1769
1770
  "disabled": false,
1770
- "document": "license状态:0:未绑定;1:已绑定;2:已停服;3:已退费\n注意:此字段可能返回 null,表示取不到有效值。",
1771
+ "document": "license状态:0:未绑定;1:已绑定;2:已停服;3:已退费",
1771
1772
  "example": "1",
1772
1773
  "member": "int64",
1773
1774
  "name": "Status",
1774
- "required": false,
1775
+ "output_required": false,
1775
1776
  "type": "int",
1776
- "value_allowed_null": true
1777
+ "value_allowed_null": false
1777
1778
  },
1778
1779
  {
1779
1780
  "disabled": false,
1780
- "document": "到期时间戳:s\n注意:此字段可能返回 null,表示取不到有效值。",
1781
+ "document": "到期时间戳:s",
1781
1782
  "example": "1678503945",
1782
1783
  "member": "string",
1783
1784
  "name": "ExpireTime",
1784
- "required": false,
1785
+ "output_required": false,
1785
1786
  "type": "string",
1786
- "value_allowed_null": true
1787
+ "value_allowed_null": false
1787
1788
  },
1788
1789
  {
1789
1790
  "disabled": false,
1790
- "document": "服务时长:s\n注意:此字段可能返回 null,表示取不到有效值。",
1791
+ "document": "服务时长:s",
1791
1792
  "example": "86400",
1792
1793
  "member": "string",
1793
1794
  "name": "Duration",
1794
- "required": false,
1795
+ "output_required": false,
1795
1796
  "type": "string",
1796
- "value_allowed_null": true
1797
+ "value_allowed_null": false
1797
1798
  },
1798
1799
  {
1799
1800
  "disabled": false,
1800
- "document": "剩余天数:天\n注意:此字段可能返回 null,表示取不到有效值。",
1801
+ "document": "剩余天数:天",
1801
1802
  "example": "30",
1802
1803
  "member": "int64",
1803
1804
  "name": "RemainDay",
1804
- "required": false,
1805
+ "output_required": false,
1805
1806
  "type": "int",
1806
- "value_allowed_null": true
1807
+ "value_allowed_null": false
1807
1808
  },
1808
1809
  {
1809
1810
  "disabled": false,
1810
- "document": "该类型的licenseId列表\n注意:此字段可能返回 null,表示取不到有效值。",
1811
- "example": "",
1811
+ "document": "该类型的licenseId列表",
1812
+ "example": "[ \"478c67c3-19a1-4e5d-ae11-ad68883793ec\", \"6d05a06f-db82-4f61-8dd2-996c3378ec26\" ]",
1812
1813
  "member": "string",
1813
1814
  "name": "LicenseIds",
1814
- "required": false,
1815
+ "output_required": false,
1815
1816
  "type": "list",
1816
- "value_allowed_null": true
1817
+ "value_allowed_null": false
1817
1818
  }
1818
1819
  ],
1819
1820
  "usage": "out"
@@ -1928,23 +1929,23 @@
1928
1929
  "members": [
1929
1930
  {
1930
1931
  "disabled": false,
1931
- "document": "添加关联失败的现场设备ID列表\n注意:此字段可能返回 null,表示取不到有效值。",
1932
+ "document": "添加关联失败的现场设备ID列表",
1932
1933
  "example": "无",
1933
1934
  "member": "string",
1934
1935
  "name": "FailedInsertIds",
1935
- "required": true,
1936
+ "output_required": false,
1936
1937
  "type": "list",
1937
- "value_allowed_null": true
1938
+ "value_allowed_null": false
1938
1939
  },
1939
1940
  {
1940
1941
  "disabled": false,
1941
- "document": "解除关联失败的现场设备ID列表\n注意:此字段可能返回 null,表示取不到有效值。",
1942
+ "document": "解除关联失败的现场设备ID列表",
1942
1943
  "example": "无",
1943
1944
  "member": "string",
1944
1945
  "name": "FailedDeleteIds",
1945
- "required": true,
1946
+ "output_required": false,
1946
1947
  "type": "list",
1947
- "value_allowed_null": true
1948
+ "value_allowed_null": false
1948
1949
  },
1949
1950
  {
1950
1951
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
@@ -2014,63 +2015,63 @@
2014
2015
  "members": [
2015
2016
  {
2016
2017
  "disabled": false,
2017
- "document": "网卡序号\n注意:此字段可能返回 null,表示取不到有效值。",
2018
+ "document": "网卡序号",
2018
2019
  "example": "0",
2019
2020
  "member": "int64",
2020
2021
  "name": "NetId",
2021
2022
  "output_required": false,
2022
2023
  "type": "int",
2023
- "value_allowed_null": true
2024
+ "value_allowed_null": false
2024
2025
  },
2025
2026
  {
2026
2027
  "disabled": false,
2027
- "document": "网卡IP\n注意:此字段可能返回 null,表示取不到有效值。",
2028
+ "document": "网卡IP",
2028
2029
  "example": "\"10.211.65.6\"",
2029
2030
  "member": "string",
2030
2031
  "name": "NetIp",
2031
2032
  "output_required": false,
2032
2033
  "type": "string",
2033
- "value_allowed_null": true
2034
+ "value_allowed_null": false
2034
2035
  },
2035
2036
  {
2036
2037
  "disabled": false,
2037
- "document": "时延,单位ms\n注意:此字段可能返回 null,表示取不到有效值。",
2038
+ "document": "时延,单位ms",
2038
2039
  "example": "[10,20,30,20,10]",
2039
2040
  "member": "int64",
2040
2041
  "name": "Rtt",
2041
2042
  "output_required": false,
2042
2043
  "type": "list",
2043
- "value_allowed_null": true
2044
+ "value_allowed_null": false
2044
2045
  },
2045
2046
  {
2046
2047
  "disabled": false,
2047
- "document": "丢包率,单位%\n注意:此字段可能返回 null,表示取不到有效值。",
2048
+ "document": "丢包率,单位%",
2048
2049
  "example": "[10,20,30,20,10]",
2049
2050
  "member": "int64",
2050
2051
  "name": "Lost",
2051
2052
  "output_required": false,
2052
2053
  "type": "list",
2053
- "value_allowed_null": true
2054
+ "value_allowed_null": false
2054
2055
  },
2055
2056
  {
2056
2057
  "disabled": false,
2057
- "document": "发送bps,单位kbps\n注意:此字段可能返回 null,表示取不到有效值。",
2058
+ "document": "发送bps,单位kbps",
2058
2059
  "example": "[10,20,30,20,10]",
2059
2060
  "member": "int64",
2060
2061
  "name": "SendBps",
2061
2062
  "output_required": false,
2062
2063
  "type": "list",
2063
- "value_allowed_null": true
2064
+ "value_allowed_null": false
2064
2065
  },
2065
2066
  {
2066
2067
  "disabled": false,
2067
- "document": "接收bps,单位kbps\n注意:此字段可能返回 null,表示取不到有效值。",
2068
+ "document": "接收bps,单位kbps",
2068
2069
  "example": "[10,20,30,20,10]",
2069
2070
  "member": "int64",
2070
2071
  "name": "RecvBps",
2071
2072
  "output_required": false,
2072
2073
  "type": "list",
2073
- "value_allowed_null": true
2074
+ "value_allowed_null": false
2074
2075
  }
2075
2076
  ],
2076
2077
  "usage": "out"
@@ -2120,7 +2121,7 @@
2120
2121
  "example": "f3glr49rc96pralw",
2121
2122
  "member": "string",
2122
2123
  "name": "ProjectId",
2123
- "required": true,
2124
+ "output_required": true,
2124
2125
  "type": "string",
2125
2126
  "value_allowed_null": false
2126
2127
  },
@@ -2130,17 +2131,17 @@
2130
2131
  "example": "project1",
2131
2132
  "member": "string",
2132
2133
  "name": "ProjectName",
2133
- "required": true,
2134
+ "output_required": true,
2134
2135
  "type": "string",
2135
2136
  "value_allowed_null": false
2136
2137
  },
2137
2138
  {
2138
2139
  "disabled": false,
2139
2140
  "document": "项目描述",
2140
- "example": "test",
2141
+ "example": "project1 description",
2141
2142
  "member": "string",
2142
2143
  "name": "ProjectDescription",
2143
- "required": true,
2144
+ "output_required": true,
2144
2145
  "type": "string",
2145
2146
  "value_allowed_null": false
2146
2147
  },
@@ -2150,7 +2151,7 @@
2150
2151
  "example": "black",
2151
2152
  "member": "string",
2152
2153
  "name": "PolicyMode",
2153
- "required": true,
2154
+ "output_required": true,
2154
2155
  "type": "string",
2155
2156
  "value_allowed_null": false
2156
2157
  },
@@ -2160,7 +2161,7 @@
2160
2161
  "example": "2022-03-25T09:12:11+08:00",
2161
2162
  "member": "datetime_iso",
2162
2163
  "name": "ModifyTime",
2163
- "required": true,
2164
+ "output_required": true,
2164
2165
  "type": "string",
2165
2166
  "value_allowed_null": false
2166
2167
  }
@@ -2173,30 +2174,30 @@
2173
2174
  {
2174
2175
  "disabled": false,
2175
2176
  "document": "会话ID",
2176
- "example": "xxx",
2177
+ "example": "0a6b3e53-9307-4358-a5b6-76e3e4d027da-0",
2177
2178
  "member": "string",
2178
2179
  "name": "SessionId",
2179
- "required": true,
2180
+ "output_required": true,
2180
2181
  "type": "string",
2181
2182
  "value_allowed_null": false
2182
2183
  },
2183
2184
  {
2184
2185
  "disabled": false,
2185
2186
  "document": "远端设备ID",
2186
- "example": "xxxxx",
2187
+ "example": "ctrl1",
2187
2188
  "member": "string",
2188
2189
  "name": "RemoteDeviceId",
2189
- "required": true,
2190
+ "output_required": true,
2190
2191
  "type": "string",
2191
2192
  "value_allowed_null": false
2192
2193
  },
2193
2194
  {
2194
2195
  "disabled": false,
2195
2196
  "document": "现场设备ID",
2196
- "example": "xxxxx",
2197
+ "example": "dev1",
2197
2198
  "member": "string",
2198
2199
  "name": "FieldDeviceId",
2199
- "required": true,
2200
+ "output_required": true,
2200
2201
  "type": "string",
2201
2202
  "value_allowed_null": false
2202
2203
  },
@@ -2206,7 +2207,7 @@
2206
2207
  "example": "1920*1080",
2207
2208
  "member": "string",
2208
2209
  "name": "Resolution",
2209
- "required": true,
2210
+ "output_required": true,
2210
2211
  "type": "string",
2211
2212
  "value_allowed_null": false
2212
2213
  },
@@ -2216,7 +2217,7 @@
2216
2217
  "example": "1650000000",
2217
2218
  "member": "uint64",
2218
2219
  "name": "StartTime",
2219
- "required": true,
2220
+ "output_required": true,
2220
2221
  "type": "int",
2221
2222
  "value_allowed_null": false
2222
2223
  },
@@ -2226,7 +2227,7 @@
2226
2227
  "example": "1650000060",
2227
2228
  "member": "uint64",
2228
2229
  "name": "LatestUpdateTime",
2229
- "required": true,
2230
+ "output_required": true,
2230
2231
  "type": "int",
2231
2232
  "value_allowed_null": false
2232
2233
  }
@@ -2269,7 +2270,7 @@
2269
2270
  {
2270
2271
  "disabled": false,
2271
2272
  "document": "会话ID",
2272
- "example": "xxxx",
2273
+ "example": "0a6b3e53-9307-4358-a5b6-76e3e4d027da-1",
2273
2274
  "member": "string",
2274
2275
  "name": "SessionId",
2275
2276
  "output_required": true,
@@ -2359,7 +2360,7 @@
2359
2360
  {
2360
2361
  "disabled": false,
2361
2362
  "document": "项目ID",
2362
- "example": "xxx",
2363
+ "example": "m82k5408n675phvb",
2363
2364
  "member": "string",
2364
2365
  "name": "ProjectId",
2365
2366
  "output_required": true,
@@ -2369,7 +2370,7 @@
2369
2370
  {
2370
2371
  "disabled": false,
2371
2372
  "document": "设备ID",
2372
- "example": "xxx",
2373
+ "example": "dev1",
2373
2374
  "member": "string",
2374
2375
  "name": "DeviceId",
2375
2376
  "output_required": true,
@@ -2589,7 +2590,7 @@
2589
2590
  {
2590
2591
  "disabled": false,
2591
2592
  "document": "多网卡信息\n注意:此字段可能返回 null,表示取不到有效值。",
2592
- "example": "",
2593
+ "example": "[ { \"NetId\": 0, \"NetIp\": \"192.168.12.4\", \"Rtt\": [ 132, 126 ], \"Lost\": [ 0, 0 ], \"SendBps\": [ 300, 847 ], \"RecvBps\": [ 202, 75 ] }, { \"NetId\": 1, \"NetIp\": \"192.168.21.2\", \"Rtt\": [ 0, 0 ], \"Lost\": [ 0, 1 ], \"SendBps\": [ 7, 2 ], \"RecvBps\": [ 0, 10 ] } ]",
2593
2594
  "member": "MultiNet",
2594
2595
  "name": "MultiNet",
2595
2596
  "output_required": false,
@@ -2605,30 +2606,30 @@
2605
2606
  {
2606
2607
  "disabled": false,
2607
2608
  "document": "会话ID",
2608
- "example": "xxx",
2609
+ "example": "6c03e6d8-cac1-44bd-3c17-90148b37d1a8-0",
2609
2610
  "member": "string",
2610
2611
  "name": "SessionId",
2611
- "required": true,
2612
+ "output_required": true,
2612
2613
  "type": "string",
2613
2614
  "value_allowed_null": false
2614
2615
  },
2615
2616
  {
2616
2617
  "disabled": false,
2617
2618
  "document": "远端设备ID",
2618
- "example": "xxxxx",
2619
+ "example": "ctrl1",
2619
2620
  "member": "string",
2620
2621
  "name": "RemoteDeviceId",
2621
- "required": true,
2622
+ "output_required": true,
2622
2623
  "type": "string",
2623
2624
  "value_allowed_null": false
2624
2625
  },
2625
2626
  {
2626
2627
  "disabled": false,
2627
2628
  "document": "现场设备ID",
2628
- "example": "xxxxx",
2629
+ "example": "dev1",
2629
2630
  "member": "string",
2630
2631
  "name": "FieldDeviceId",
2631
- "required": true,
2632
+ "output_required": true,
2632
2633
  "type": "string",
2633
2634
  "value_allowed_null": false
2634
2635
  },
@@ -2638,7 +2639,7 @@
2638
2639
  "example": "1920*1080",
2639
2640
  "member": "string",
2640
2641
  "name": "Resolution",
2641
- "required": true,
2642
+ "output_required": true,
2642
2643
  "type": "string",
2643
2644
  "value_allowed_null": false
2644
2645
  },
@@ -2648,7 +2649,7 @@
2648
2649
  "example": "1650000000",
2649
2650
  "member": "uint64",
2650
2651
  "name": "StartTime",
2651
- "required": true,
2652
+ "output_required": true,
2652
2653
  "type": "int",
2653
2654
  "value_allowed_null": false
2654
2655
  },
@@ -2658,7 +2659,7 @@
2658
2659
  "example": "1650000060",
2659
2660
  "member": "uint64",
2660
2661
  "name": "EndTime",
2661
- "required": true,
2662
+ "output_required": true,
2662
2663
  "type": "int",
2663
2664
  "value_allowed_null": false
2664
2665
  },
@@ -2668,7 +2669,7 @@
2668
2669
  "example": "good",
2669
2670
  "member": "string",
2670
2671
  "name": "Quality",
2671
- "required": true,
2672
+ "output_required": true,
2672
2673
  "type": "string",
2673
2674
  "value_allowed_null": false
2674
2675
  }
@@ -35,7 +35,7 @@
35
35
  "CreateProject": [
36
36
  {
37
37
  "document": "",
38
- "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateProject\n<公共请求参数>\n\n{\n \"ProjectName\": \"mytest\",\n \"ProjectDescription\": \"test\",\n \"PolicyMode\": \"black\"\n}",
38
+ "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateProject\n<公共请求参数>\n\n{\n \"ProjectName\": \"my_project\",\n \"ProjectDescription\": \"project description info\",\n \"PolicyMode\": \"black\"\n}",
39
39
  "output": "{\n \"Response\": {\n \"RequestId\": \"8979fc1e-9564-4fc9-bf7d-2958ce679b72\",\n \"ProjectId\": \"f3glr49r3axn0fu2\"\n }\n}",
40
40
  "title": "创建项目示例"
41
41
  }
@@ -59,16 +59,16 @@
59
59
  "DescribeDeviceList": [
60
60
  {
61
61
  "document": "",
62
- "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDeviceList\n<公共请求参数>\n\n{\n \"ProjectId\": \"abc\",\n \"DeviceType\": \"field\",\n \"SearchWords\": \"abc\",\n \"PageSize\": 10,\n \"PageNumber\": 1,\n \"DeviceStatus\": \"\"\n}",
63
- "output": "{\n \"Response\": {\n \"Total\": 1,\n \"Num\": 1,\n \"RequestId\": \"8979fc1e-9564-4fc9-bf7d-2958ce679b72\",\n \"Devices\": [\n {\n \"DeviceName\": \"test1\",\n \"ProjectId\": \"abc\",\n \"LastReportTime\": \"2022-03-22T08:00:00+08:00\",\n \"DeviceStatus\": \"offline\",\n \"DeviceType\": \"field\",\n \"DeviceId\": \"dev1\",\n \"ModifyTime\": \"2022-03-21T08:00:00+08:00\"\n }\n ]\n }\n}",
62
+ "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDeviceList\n<公共请求参数>\n\n{\n \"ProjectId\": \"f3glr49r3axn0fu2\",\n \"DeviceType\": \"field\",\n \"SearchWords\": \"dev1\",\n \"PageSize\": 10,\n \"PageNumber\": 1,\n \"DeviceStatus\": \"offline\"\n}",
63
+ "output": "{\n \"Response\": {\n \"Total\": 1,\n \"Num\": 1,\n \"RequestId\": \"8979fc1e-9564-4fc9-bf7d-2958ce679b72\",\n \"Devices\": [\n {\n \"DeviceName\": \"key\",\n \"ProjectId\": \"f3glr49r3axn0fu2\",\n \"LastReportTime\": \"2022-03-22T08:00:00+08:00\",\n \"DeviceStatus\": \"offline\",\n \"DeviceType\": \"field\",\n \"DeviceId\": \"dev1\",\n \"ModifyTime\": \"2022-03-21T08:00:00+08:00\"\n }\n ]\n }\n}",
64
64
  "title": "设备列表获取示例"
65
65
  }
66
66
  ],
67
67
  "DescribeDeviceSessionDetails": [
68
68
  {
69
69
  "document": "",
70
- "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDeviceSessionDetails\n<公共请求参数>\n\n{\n \"SessionId\": \"abcde-50f7-4c60-9c89-e7076c8529a9-0\"\n}",
71
- "output": "{\n \"Response\": {\n \"Details\": [\n {\n \"DeviceType\": \"abc\",\n \"StartTime\": 1,\n \"EndTime\": 1,\n \"SessionId\": \"abc\",\n \"Rate\": [\n 0\n ],\n \"Fps\": [\n 0\n ],\n \"Lost\": [\n 0\n ],\n \"NetworkLatency\": [\n 0\n ],\n \"VideoLatency\": [\n 0\n ],\n \"CpuUsed\": [\n 0\n ],\n \"MemUsed\": [\n 0\n ],\n \"TimeOffset\": [\n 1\n ],\n \"ProjectId\": \"abc\",\n \"DeviceId\": \"abc\",\n \"Ver\": \"abc\",\n \"SdkMode\": \"abc\",\n \"DecodeCost\": [\n 0\n ],\n \"RenderConst\": [\n 0\n ],\n \"K100\": [\n 0\n ],\n \"K150\": [\n 0\n ],\n \"NACK\": [\n 0\n ],\n \"BitRateEstimate\": [\n 0\n ],\n \"Width\": 0,\n \"Height\": 0,\n \"EncodeCost\": [\n 0\n ],\n \"CaptureCost\": [\n 0\n ],\n \"RenderCost\": [\n 0\n ],\n \"ConfigWidth\": 0,\n \"ConfigHeight\": 0,\n \"FrameDelta\": [\n 0\n ],\n \"MaxFrameDelta\": [\n 0\n ],\n \"TotalBitrateEstimate\": [\n 0\n ],\n \"Lag100Duration\": [\n 0\n ],\n \"Lag150Duration\": [\n 0\n ],\n \"MultiMode\": 0,\n \"MultiNet\": [\n {\n \"NetId\": 0,\n \"NetIp\": \"abc\",\n \"Rtt\": [\n 0\n ],\n \"Lost\": [\n 0\n ],\n \"SendBps\": [\n 0\n ],\n \"RecvBps\": [\n 0\n ]\n }\n ]\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
70
+ "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDeviceSessionDetails\n<公共请求参数>\n\n{\n \"SessionId\": \"c52cc0cc-3663-467b-a6d1-2f01d20ad7ae-1\"\n}",
71
+ "output": "{\n \"Response\": {\n \"RequestId\": \"0000etst1\",\n \"Details\": [\n {\n \"DeviceType\": \"field\",\n \"StartTime\": 1731399569,\n \"EndTime\": 1731399627,\n \"SessionId\": \"c52cc0cc-3663-467b-a6d1-2f01d20ad7ae-1\",\n \"Rate\": [\n 0,\n 0,\n 267,\n 213,\n 411,\n 562,\n 432,\n 617,\n 626,\n 709,\n 572,\n 569,\n 493,\n 540,\n 709,\n 681,\n 652,\n 732,\n 681,\n 714,\n 659,\n 690,\n 751,\n 719,\n 680,\n 541,\n 629,\n 759,\n 533,\n 416\n ],\n \"Fps\": [\n 0,\n 0,\n 15,\n 19,\n 19,\n 19,\n 18,\n 19,\n 19,\n 19,\n 18,\n 19,\n 18,\n 20,\n 20,\n 20,\n 19,\n 19,\n 19,\n 19,\n 19,\n 19,\n 19,\n 19,\n 19,\n 17,\n 19,\n 21,\n 19,\n 18\n ],\n \"Lost\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"NetworkLatency\": [\n -1,\n -1,\n 100,\n 326,\n 93,\n 89,\n 72,\n 79,\n 80,\n 91,\n 104,\n 503,\n 93,\n 76,\n 72,\n 72,\n 80,\n 88,\n 77,\n 77,\n 79,\n 89,\n 83,\n 89,\n 81,\n 79,\n 80,\n 82,\n 100,\n 75\n ],\n \"VideoLatency\": [],\n \"CpuUsed\": [\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02,\n 35.02\n ],\n \"MemUsed\": [\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25,\n 71.25\n ],\n \"TimeOffset\": [\n 0,\n 2,\n 4,\n 6,\n 8,\n 10,\n 12,\n 14,\n 16,\n 18,\n 20,\n 22,\n 24,\n 26,\n 28,\n 30,\n 32,\n 34,\n 36,\n 38,\n 40,\n 42,\n 44,\n 46,\n 48,\n 50,\n 52,\n 54,\n 56,\n 58\n ],\n \"ProjectId\": \"bhmerlz6dysrptnl\",\n \"DeviceId\": \"dev_0240702040008\",\n \"Ver\": \"2.4\",\n \"SdkMode\": \"server2\",\n \"DecodeCost\": [],\n \"RenderCost\": [],\n \"K100\": [],\n \"K150\": [],\n \"NACK\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"BitRateEstimate\": [\n 0,\n 975,\n 1214,\n 958,\n 1354,\n 1970,\n 1987,\n 1756,\n 2000,\n 2000,\n 2000,\n 2000,\n 1883,\n 2000,\n 1982,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000,\n 2000\n ],\n \"Width\": 1280,\n \"Height\": 720,\n \"EncodeCost\": [\n 0,\n 0,\n 9,\n 12,\n 22,\n 26,\n 24,\n 28,\n 12,\n 8,\n 13,\n 8,\n 10,\n 13,\n 22,\n 10,\n 16,\n 8,\n 10,\n 7,\n 8,\n 11,\n 8,\n 8,\n 19,\n 9,\n 8,\n 8,\n 7,\n 12\n ],\n \"CaptureCost\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"ConfigWidth\": 1920,\n \"ConfigHeight\": 1536,\n \"FrameDelta\": [\n 0,\n 48,\n 50,\n 49,\n 50,\n 50,\n 50,\n 50,\n 50,\n 50,\n 51,\n 50,\n 51,\n 50,\n 51,\n 50,\n 50,\n 50,\n 50,\n 50,\n 50,\n 50,\n 50,\n 50,\n 51,\n 51,\n 51,\n 50,\n 50,\n 51\n ],\n \"MaxFrameDelta\": [\n 0,\n 59,\n 60,\n 62,\n 58,\n 64,\n 67,\n 61,\n 62,\n 70,\n 64,\n 71,\n 70,\n 68,\n 79,\n 73,\n 67,\n 73,\n 76,\n 77,\n 67,\n 84,\n 65,\n 67,\n 73,\n 81,\n 68,\n 68,\n 73,\n 87\n ],\n \"TotalBitrateEstimate\": [\n 0,\n 2635,\n 3407,\n 2588,\n 3871,\n 5902,\n 5958,\n 5196,\n 6266,\n 6322,\n 6411,\n 6043,\n 5617,\n 6785,\n 5941,\n 7000,\n 6000,\n 7000,\n 7200,\n 7200,\n 7200,\n 7200,\n 6098,\n 6124,\n 6146,\n 6173,\n 6203,\n 6239,\n 6281,\n 6330\n ],\n \"Lag100Duration\": [],\n \"Lag150Duration\": [],\n \"MultiMode\": 1,\n \"MultiNet\": [\n {\n \"NetId\": 0,\n \"NetIp\": \"192.168.11.2\",\n \"Rtt\": [\n 0,\n 0,\n 62,\n 65,\n 64,\n 66,\n 66,\n 68,\n 69,\n 67,\n 64,\n 63,\n 61,\n 66,\n 68,\n 62,\n 61,\n 63,\n 71,\n 66,\n 63,\n 63,\n 63,\n 62,\n 66,\n 65,\n 66,\n 67,\n 63,\n 63\n ],\n \"Lost\": [\n 0,\n 0,\n 1,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"SendBps\": [\n 0,\n 77,\n 36,\n 112,\n 416,\n 1212,\n 579,\n 658,\n 666,\n 791,\n 33,\n 283,\n 570,\n 582,\n 704,\n 655,\n 670,\n 718,\n 704,\n 702,\n 688,\n 726,\n 1472,\n 761,\n 696,\n 617,\n 659,\n 750,\n 706,\n 706\n ],\n \"RecvBps\": [\n 0,\n 53,\n 27,\n 28,\n 28,\n 54,\n 27,\n 27,\n 26,\n 49,\n 23,\n 23,\n 23,\n 23,\n 23,\n 23,\n 23,\n 22,\n 23,\n 23,\n 22,\n 24,\n 44,\n 23,\n 23,\n 22,\n 23,\n 23,\n 23,\n 23\n ]\n },\n {\n \"NetId\": 1,\n \"NetIp\": \"192.168.10.2\",\n \"Rtt\": [\n 0,\n 94,\n 141,\n 262,\n 118,\n 113,\n 149,\n 132,\n 116,\n 111,\n 113,\n 265,\n 118,\n 109,\n 104,\n 106,\n 107,\n 106,\n 113,\n 107,\n 107,\n 109,\n 118,\n 115,\n 110,\n 116,\n 107,\n 109,\n 113,\n 113\n ],\n \"Lost\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"SendBps\": [\n 0,\n 82,\n 727,\n 317,\n 38,\n 75,\n 36,\n 36,\n 36,\n 752,\n 669,\n 379,\n 33,\n 34,\n 32,\n 32,\n 30,\n 32,\n 32,\n 32,\n 30,\n 32,\n 64,\n 32,\n 30,\n 32,\n 32,\n 30,\n 32,\n 32\n ],\n \"RecvBps\": [\n 0,\n 75,\n 96,\n 38,\n 39,\n 79,\n 36,\n 38,\n 36,\n 74,\n 34,\n 32,\n 34,\n 35,\n 34,\n 34,\n 35,\n 33,\n 33,\n 35,\n 33,\n 35,\n 69,\n 34,\n 33,\n 34,\n 34,\n 33,\n 35,\n 35\n ]\n }\n ]\n },\n {\n \"DeviceType\": \"remote\",\n \"StartTime\": 1731399572,\n \"EndTime\": 1731399664,\n \"SessionId\": \"c52cc0cc-3663-467b-a6d1-2f01d20ad7ae-1\",\n \"Rate\": [\n 0,\n 263,\n 257,\n 128,\n 250,\n 186,\n 404,\n 433,\n 583,\n 374,\n 542,\n 346,\n 372,\n 451,\n 456,\n 469,\n 572,\n 469,\n 481,\n 522,\n 549,\n 582,\n 522,\n 506,\n 0,\n 716,\n 706,\n 687,\n 731,\n 0,\n 637,\n 597,\n 0,\n 745,\n 0,\n 4241,\n 453,\n 469,\n 0,\n 7812\n ],\n \"Fps\": [\n 0,\n 15,\n 20,\n 19,\n 19,\n 18,\n 19,\n 18,\n 19,\n 19,\n 19,\n 18,\n 18,\n 18,\n 19,\n 19,\n 19,\n 19,\n 19,\n 19,\n 18,\n 19,\n 18,\n 19,\n 0,\n 19,\n 20,\n 19,\n 19,\n 0,\n 19,\n 19,\n 0,\n 22,\n 0,\n 141,\n 19,\n 19,\n 0,\n 267\n ],\n \"Lost\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"NetworkLatency\": [\n -1,\n 5,\n 5,\n 5,\n 7,\n 7,\n 5,\n 5,\n 5,\n 5,\n 5,\n 5,\n 5,\n 6,\n 5,\n 5,\n 5,\n 6,\n 5,\n 5,\n 5,\n 6,\n 7,\n 5,\n -1,\n 6,\n 6,\n 7,\n 11,\n -1,\n 9,\n 6,\n -1,\n 5,\n -1,\n 5,\n 5,\n 5,\n -1,\n 5\n ],\n \"VideoLatency\": [\n 0,\n 0,\n 0,\n 81,\n 55,\n 53,\n 56,\n 59,\n 99,\n 102,\n 48,\n 62,\n 58,\n 64,\n 66,\n 69,\n 58,\n 64,\n 54,\n 64,\n 77,\n 78,\n 83,\n 56,\n 61,\n 69,\n 71,\n 67,\n 60,\n 0,\n 66,\n 60,\n 0,\n 63,\n 0,\n 0,\n 0,\n 61,\n 0,\n 63\n ],\n \"CpuUsed\": [\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.39,\n 15.4,\n 15.4,\n 15.4,\n 15.4,\n 15.4,\n 15.4,\n 15.4,\n 15.4\n ],\n \"MemUsed\": [\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.08,\n 44.17,\n 44.17,\n 44.17,\n 44.01,\n 44.01,\n 44.04,\n 44.04,\n 44.04,\n 44.17,\n 44.17,\n 44.27,\n 44.27,\n 44.27,\n 44.27,\n 44.64,\n 44.64\n ],\n \"TimeOffset\": [\n 0,\n 2,\n 4,\n 6,\n 8,\n 10,\n 12,\n 14,\n 16,\n 18,\n 20,\n 22,\n 24,\n 26,\n 28,\n 30,\n 32,\n 34,\n 36,\n 38,\n 40,\n 42,\n 44,\n 46,\n 49,\n 51,\n 53,\n 59,\n 61,\n 65,\n 67,\n 69,\n 73,\n 75,\n 79,\n 81,\n 83,\n 85,\n 90,\n 92\n ],\n \"ProjectId\": \"bhmerlz6dysrptnl\",\n \"DeviceId\": \"driver_456\",\n \"Ver\": \"2.4\",\n \"SdkMode\": \"server2\",\n \"DecodeCost\": [\n 0,\n 1,\n 2,\n 1,\n 3,\n 1,\n 2,\n 2,\n 3,\n 2,\n 2,\n 3,\n 3,\n 1,\n 2,\n 2,\n 2,\n 3,\n 2,\n 2,\n 3,\n 3,\n 3,\n 3,\n 2,\n 2,\n 2,\n 7,\n 9,\n 2,\n 2,\n 2,\n 2,\n 3,\n 2,\n 2,\n 2,\n 2,\n 2,\n 4\n ],\n \"RenderCost\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"K100\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 0,\n 0,\n 0,\n 0.32,\n 0.32,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0.09,\n 0.09\n ],\n \"K150\": [\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0.57,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"NACK\": [\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 23,\n 23,\n 23,\n 23,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 1,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"BitRateEstimate\": [],\n \"Width\": 1280,\n \"Height\": 720,\n \"EncodeCost\": [],\n \"CaptureCost\": [],\n \"ConfigWidth\": 0,\n \"ConfigHeight\": 0,\n \"FrameDelta\": [\n 19,\n 63,\n 49,\n 50,\n 49,\n 50,\n 50,\n 51,\n 51,\n 50,\n 48,\n 51,\n 50,\n 51,\n 50,\n 50,\n 50,\n 49,\n 49,\n 50,\n 50,\n 50,\n 51,\n 49,\n 45,\n 50,\n 50,\n 11,\n 50,\n 4,\n 17,\n 50,\n 4,\n 15,\n 4,\n 8,\n 51,\n 49,\n 4,\n 5\n ],\n \"MaxFrameDelta\": [\n 49,\n 359,\n 93,\n 75,\n 70,\n 83,\n 99,\n 95,\n 102,\n 98,\n 109,\n 78,\n 81,\n 93,\n 88,\n 84,\n 99,\n 106,\n 116,\n 95,\n 195,\n 80,\n 98,\n 153,\n 83,\n 98,\n 95,\n 89,\n 108,\n 18,\n 96,\n 74,\n 18,\n 83,\n 19,\n 75,\n 95,\n 79,\n 15,\n 103\n ],\n \"TotalBitrateEstimate\": [],\n \"Lag100Duration\": [\n 0,\n 372,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 2,\n 0,\n 11,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 6,\n 16,\n 0,\n 95,\n 0,\n 0,\n 53,\n 0,\n 0,\n 0,\n 0,\n 13,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 3\n ],\n \"Lag150Duration\": [\n 0,\n 219,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 45,\n 0,\n 0,\n 3,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0,\n 0\n ],\n \"MultiMode\": 0,\n \"MultiNet\": []\n }\n ]\n }\n}",
72
72
  "title": "示例1"
73
73
  }
74
74
  ],
@@ -131,7 +131,7 @@
131
131
  "GetDeviceLicense": [
132
132
  {
133
133
  "document": "获取设备可用license数量",
134
- "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetDeviceLicense\n<公共请求参数>\n\n{\n \"ProjectId\": \"abc\",\n \"DeviceId\": \"abc\"\n}",
134
+ "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetDeviceLicense\n<公共请求参数>\n\n{\n \"ProjectId\": \"m82k5408n675phvb\",\n \"DeviceId\": \"dev1\"\n}",
135
135
  "output": "{\n \"Response\": {\n \"AvailableCount\": 12,\n \"RequestId\": \"abc\"\n }\n}",
136
136
  "title": "获取设备license"
137
137
  }
@@ -139,8 +139,8 @@
139
139
  "GetDevices": [
140
140
  {
141
141
  "document": "查询用户购买的license列表以及设备绑定情况",
142
- "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetDevices\n<公共请求参数>\n\n{\n \"PageNum\": 1,\n \"PageSize\": 10,\n \"ProjectId\": \"abc\",\n \"DeviceId\": \"abc\"\n}",
143
- "output": "{\n \"Response\": {\n \"RequestId\": \"468bf31b-b5f7-44c4-8663-8d9548693cf5\",\n \"Devices\": [\n {\n \"DeviceId\": \"xxx\",\n \"DeviceName\": \"xxx\",\n \"LicenseCount\": 2,\n \"RemainDay\": 30,\n \"ExpireTime\": \"167840945\",\n \"Duration\": \"86400\",\n \"MonthlyRemainTime\": 66000,\n \"LicenseIds\": [\n \"trro-2e24a74a-67ea-1732-076d-75bf772529a\",\n \"trro-2e24a74a-67ea-1732-073d-75bf772579a\"\n ]\n },\n {\n \"DeviceId\": \"xxx\",\n \"DeviceName\": \"xxx\",\n \"LicenseCount\": 2,\n \"RemainDay\": 30,\n \"ExpireTime\": \"167840945\",\n \"Duration\": \"86400\",\n \"MonthlyRemainTime\": 66000,\n \"LicenseIds\": [\n \"trro-2e24a74a-67ea-1732-076d-75bf772529a\",\n \"trro-2e24a74a-67ea-1732-073d-75bf772579a\"\n ]\n }\n ],\n \"TotalCount\": 2\n }\n}",
142
+ "input": "POST / HTTP/1.1\nHost: trro.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetDevices\n<公共请求参数>\n\n{\n \"PageNum\": 1,\n \"PageSize\": 10,\n \"ProjectId\": \"m82k5408n675phvb\",\n \"DeviceId\": \"dev1\"\n}",
143
+ "output": "{\n \"Response\": {\n \"RequestId\": \"468bf31b-b5f7-44c4-8663-8d9548693cf5\",\n \"Devices\": [\n {\n \"DeviceId\": \"dev1\",\n \"DeviceName\": \"vin234\",\n \"LicenseCount\": 2,\n \"RemainDay\": 30,\n \"ExpireTime\": \"167840945\",\n \"Duration\": \"86400\",\n \"MonthlyRemainTime\": 66000,\n \"LicenseIds\": [\n \"trro-2e24a74a-67ea-1732-076d-75bf772529a\",\n \"trro-2e24a74a-67ea-1732-073d-75bf772579a\"\n ]\n },\n {\n \"DeviceId\": \"dev1\",\n \"DeviceName\": \"vin123\",\n \"LicenseCount\": 2,\n \"RemainDay\": 30,\n \"ExpireTime\": \"167840945\",\n \"Duration\": \"86400\",\n \"MonthlyRemainTime\": 66000,\n \"LicenseIds\": [\n \"trro-2e24a74a-67ea-1732-076d-75bf772529a\",\n \"trro-2e24a74a-67ea-1732-073d-75bf772579a\"\n ]\n }\n ],\n \"TotalCount\": 2\n }\n}",
144
144
  "title": "查询license列表"
145
145
  }
146
146
  ],