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
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "metadata": {
54
54
  "apiVersion": "2021-08-11",
55
- "api_brief": "介绍如何使用API对二进制软件成分分析进行操作,包括新建分析、查看分析列表、查看报告等。",
56
- "serviceNameCN": "二进制软件成分分析",
55
+ "api_brief": "介绍如何使用API对软件成分分析进行操作,包括新建分析、查看分析列表、查看报告等。",
56
+ "serviceNameCN": "软件成分分析",
57
57
  "serviceShortName": "bsca"
58
58
  },
59
59
  "objects": {
@@ -274,17 +274,17 @@
274
274
  "example": "无",
275
275
  "member": "PURL",
276
276
  "name": "PURL",
277
- "required": true,
277
+ "output_required": true,
278
278
  "type": "object",
279
279
  "value_allowed_null": false
280
280
  },
281
281
  {
282
282
  "disabled": false,
283
283
  "document": "第三方组件的主页",
284
- "example": "http://example.com",
284
+ "example": "https://www.openssl.org",
285
285
  "member": "string",
286
286
  "name": "Homepage",
287
- "required": true,
287
+ "output_required": true,
288
288
  "type": "string",
289
289
  "value_allowed_null": false
290
290
  },
@@ -294,27 +294,27 @@
294
294
  "example": "OpenSSL is a toolkit for supporting cryptography.",
295
295
  "member": "string",
296
296
  "name": "Summary",
297
- "required": true,
297
+ "output_required": true,
298
298
  "type": "string",
299
299
  "value_allowed_null": false
300
300
  },
301
301
  {
302
302
  "disabled": false,
303
303
  "document": "第三方组件的别名列表\n注意:此字段可能返回 null,表示取不到有效值。",
304
- "example": "",
304
+ "example": "[\"gmock\", \"googlemock\", \"gmock-gtest-all\"]",
305
305
  "member": "string",
306
306
  "name": "NicknameList",
307
- "required": true,
307
+ "output_required": true,
308
308
  "type": "list",
309
309
  "value_allowed_null": true
310
310
  },
311
311
  {
312
312
  "disabled": false,
313
313
  "document": "第三方组件的代码位置列表\n注意:此字段可能返回 null,表示取不到有效值。",
314
- "example": "",
314
+ "example": "[\"https://github.com/google/googletest.git\",\"https://github.com/abseil/googletest.git\"]",
315
315
  "member": "string",
316
316
  "name": "CodeLocationList",
317
- "required": true,
317
+ "output_required": true,
318
318
  "type": "list",
319
319
  "value_allowed_null": true
320
320
  },
@@ -324,15 +324,69 @@
324
324
  "example": "apache-2.0",
325
325
  "member": "string",
326
326
  "name": "LicenseExpression",
327
- "required": true,
327
+ "output_required": true,
328
328
  "type": "string",
329
329
  "value_allowed_null": false
330
+ },
331
+ {
332
+ "disabled": false,
333
+ "document": "第三方组件的版本信息(如果匹配到版本)\n注意:此字段可能返回 null,表示取不到有效值。",
334
+ "example": "无",
335
+ "member": "ComponentVersionInfo",
336
+ "name": "VersionInfo",
337
+ "output_required": false,
338
+ "type": "object",
339
+ "value_allowed_null": true
340
+ },
341
+ {
342
+ "disabled": false,
343
+ "document": "第三方组件的最后更新时间\n注意:此字段可能返回 null,表示取不到有效值。",
344
+ "example": "2024-10-03T11:12:40Z",
345
+ "member": "string",
346
+ "name": "LastUpdateTime",
347
+ "output_required": false,
348
+ "type": "string",
349
+ "value_allowed_null": true
350
+ },
351
+ {
352
+ "disabled": false,
353
+ "document": "第三方组件的类型标签\n注意:此字段可能返回 null,表示取不到有效值。",
354
+ "example": "[\"hardware\"]",
355
+ "member": "string",
356
+ "name": "TagList",
357
+ "output_required": false,
358
+ "type": "list",
359
+ "value_allowed_null": true
330
360
  }
331
361
  ],
332
362
  "usage": "out"
333
363
  },
364
+ "ComponentTagFilter": {
365
+ "document": "筛选条件,同一个Tag不能同时出现在IncludeTags和ExcludeTags,可能的Tag包括:\"CopyrightUpdated\", \"LicenseUpdated\", \"ContainsVulnerability\"",
366
+ "members": [
367
+ {
368
+ "disabled": false,
369
+ "document": "包括的Tag\n",
370
+ "example": "[\"CopyrightUpdated\"]",
371
+ "member": "string",
372
+ "name": "IncludeTags",
373
+ "required": false,
374
+ "type": "list"
375
+ },
376
+ {
377
+ "disabled": false,
378
+ "document": "排除的Tag",
379
+ "example": "[\"LicenseUpdated\"]",
380
+ "member": "string",
381
+ "name": "ExcludeTags",
382
+ "required": false,
383
+ "type": "list"
384
+ }
385
+ ],
386
+ "usage": "in"
387
+ },
334
388
  "ComponentVersion": {
335
- "document": "描述组件的一条版本信息。",
389
+ "document": "描述一个组件版本。",
336
390
  "members": [
337
391
  {
338
392
  "disabled": false,
@@ -353,6 +407,52 @@
353
407
  "output_required": true,
354
408
  "type": "string",
355
409
  "value_allowed_null": true
410
+ },
411
+ {
412
+ "disabled": false,
413
+ "document": "组件的版本信息\n注意:此字段可能返回 null,表示取不到有效值。",
414
+ "example": "无",
415
+ "member": "ComponentVersionInfo",
416
+ "name": "VersionInfo",
417
+ "output_required": false,
418
+ "type": "object",
419
+ "value_allowed_null": true
420
+ }
421
+ ],
422
+ "usage": "out"
423
+ },
424
+ "ComponentVersionInfo": {
425
+ "document": "描述组件版本的详情,包含组件发布时间、Copyright列表、组件描述Tag。",
426
+ "members": [
427
+ {
428
+ "disabled": false,
429
+ "document": "版本发布时间\n注意:此字段可能返回 null,表示取不到有效值。",
430
+ "example": "2024-04-17 08:50:11.000000",
431
+ "member": "string",
432
+ "name": "PublishTime",
433
+ "output_required": false,
434
+ "type": "string",
435
+ "value_allowed_null": true
436
+ },
437
+ {
438
+ "disabled": false,
439
+ "document": "当前版本的所有copyright\n注意:此字段可能返回 null,表示取不到有效值。",
440
+ "example": "[\"Copyright (c) 1998-2018 The OpenSSL Project\", \"Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com)\", \"holder is Tim Hudson (tjh@cryptsoft.com)\" ]",
441
+ "member": "string",
442
+ "name": "CopyrightList",
443
+ "output_required": false,
444
+ "type": "list",
445
+ "value_allowed_null": true
446
+ },
447
+ {
448
+ "disabled": false,
449
+ "document": "版本标签\n注意:此字段可能返回 null,表示取不到有效值。",
450
+ "example": "[\"ContainsVulnerability\", \"LicenseUpdated\"]",
451
+ "member": "string",
452
+ "name": "TagList",
453
+ "output_required": false,
454
+ "type": "list",
455
+ "value_allowed_null": true
356
456
  }
357
457
  ],
358
458
  "usage": "out"
@@ -473,7 +573,7 @@
473
573
  "example": "无",
474
574
  "member": "Component",
475
575
  "name": "Component",
476
- "required": true,
576
+ "output_required": true,
477
577
  "type": "object",
478
578
  "value_allowed_null": false
479
579
  },
@@ -497,6 +597,51 @@
497
597
  "name": "PURL",
498
598
  "required": true,
499
599
  "type": "object"
600
+ },
601
+ {
602
+ "disabled": false,
603
+ "document": "页号",
604
+ "example": "1",
605
+ "member": "uint64",
606
+ "name": "PageNumber",
607
+ "required": false,
608
+ "type": "int"
609
+ },
610
+ {
611
+ "disabled": false,
612
+ "document": "页大小",
613
+ "example": "10",
614
+ "member": "uint64",
615
+ "name": "PageSize",
616
+ "required": false,
617
+ "type": "int"
618
+ },
619
+ {
620
+ "disabled": false,
621
+ "document": "排序方式,可以是\"ASC\"或\"DESC\",默认\"DESC\"",
622
+ "example": "ASC",
623
+ "member": "string",
624
+ "name": "Order",
625
+ "required": false,
626
+ "type": "string"
627
+ },
628
+ {
629
+ "disabled": false,
630
+ "document": "排序字段,可能的字段包括“Version”、\"PublishTime\"",
631
+ "example": "[\"PublishTime\",\"Version\"]",
632
+ "member": "string",
633
+ "name": "OrderBy",
634
+ "required": false,
635
+ "type": "list"
636
+ },
637
+ {
638
+ "disabled": false,
639
+ "document": "Tag筛选",
640
+ "example": "无",
641
+ "member": "ComponentTagFilter",
642
+ "name": "Filter",
643
+ "required": false,
644
+ "type": "object"
500
645
  }
501
646
  ],
502
647
  "type": "object"
@@ -560,6 +705,26 @@
560
705
  "type": "list",
561
706
  "value_allowed_null": true
562
707
  },
708
+ {
709
+ "disabled": false,
710
+ "document": "组件purl",
711
+ "example": "无",
712
+ "member": "PURL",
713
+ "name": "PURL",
714
+ "output_required": true,
715
+ "type": "object",
716
+ "value_allowed_null": false
717
+ },
718
+ {
719
+ "disabled": false,
720
+ "document": "推荐版本,当前版本中的所有漏洞都修复了的版本",
721
+ "example": "1.1.12",
722
+ "member": "string",
723
+ "name": "RecommendedVersion",
724
+ "output_required": false,
725
+ "type": "string",
726
+ "value_allowed_null": false
727
+ },
563
728
  {
564
729
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
565
730
  "member": "string",
@@ -1072,7 +1237,7 @@
1072
1237
  {
1073
1238
  "disabled": false,
1074
1239
  "document": "漏洞类别",
1075
- "example": "其他",
1240
+ "example": "反序列化",
1076
1241
  "member": "string",
1077
1242
  "name": "Category",
1078
1243
  "output_required": true,
@@ -1092,7 +1257,7 @@
1092
1257
  {
1093
1258
  "disabled": false,
1094
1259
  "document": "漏洞描述",
1095
- "example": "漏洞描述",
1260
+ "example": "ApacheLog4j是美国阿帕奇(Apache)基金会的一款基于Java的开源日志记录工具。ApacheLog4J存在输入验证错误漏洞.Log4j-2中存在JNDI注入漏洞,当程序将用户输入的数据进行日志记录时,即可触发此漏洞,成功利用此漏洞可以在目标服务器上执行任意代码。",
1096
1261
  "member": "string",
1097
1262
  "name": "Description",
1098
1263
  "output_required": true,
@@ -1112,7 +1277,7 @@
1112
1277
  {
1113
1278
  "disabled": false,
1114
1279
  "document": "漏洞信息参考列表",
1115
- "example": "",
1280
+ "example": "[\"https://logging.apache.org/log4j/2.x/security.html\", \"http://www.openwall.com/lists/oss-security/2021/12/10/1\"]",
1116
1281
  "member": "string",
1117
1282
  "name": "ReferenceList",
1118
1283
  "output_required": true,
@@ -1159,6 +1324,16 @@
1159
1324
  "type": "string",
1160
1325
  "value_allowed_null": false
1161
1326
  },
1327
+ {
1328
+ "disabled": false,
1329
+ "document": "漏洞更新时间",
1330
+ "example": "2019-09-11 01:15:00",
1331
+ "member": "string",
1332
+ "name": "UpdateTime",
1333
+ "output_required": true,
1334
+ "type": "string",
1335
+ "value_allowed_null": false
1336
+ },
1162
1337
  {
1163
1338
  "disabled": false,
1164
1339
  "document": "CWE编号",
@@ -1228,7 +1403,7 @@
1228
1403
  {
1229
1404
  "disabled": false,
1230
1405
  "document": "漏洞所属CNVD编号",
1231
- "example": "CNVD-XXX",
1406
+ "example": "CNVD-2021-100238",
1232
1407
  "member": "string",
1233
1408
  "name": "CNVDID",
1234
1409
  "output_required": true,
@@ -1238,7 +1413,7 @@
1238
1413
  {
1239
1414
  "disabled": false,
1240
1415
  "document": "漏洞所属CNNVD编号",
1241
- "example": "CNNVD-202012-579",
1416
+ "example": "CNNVD-202112-799",
1242
1417
  "member": "string",
1243
1418
  "name": "CNNVDID",
1244
1419
  "output_required": true,
@@ -1274,6 +1449,36 @@
1274
1449
  "output_required": true,
1275
1450
  "type": "string",
1276
1451
  "value_allowed_null": false
1452
+ },
1453
+ {
1454
+ "disabled": true,
1455
+ "document": "架构信息,如x86、ARM等,废弃,请使用ArchitectureList\n注意:此字段可能返回 null,表示取不到有效值。",
1456
+ "example": "[\"x86_64\"]",
1457
+ "member": "string",
1458
+ "name": "Architecture",
1459
+ "output_required": false,
1460
+ "type": "list",
1461
+ "value_allowed_null": true
1462
+ },
1463
+ {
1464
+ "disabled": false,
1465
+ "document": "架构信息,如x86、ARM等\n注意:此字段可能返回 null,表示取不到有效值。",
1466
+ "example": "[\"x86_64\"]",
1467
+ "member": "string",
1468
+ "name": "ArchitectureList",
1469
+ "output_required": false,
1470
+ "type": "list",
1471
+ "value_allowed_null": true
1472
+ },
1473
+ {
1474
+ "disabled": false,
1475
+ "document": "patch链接\n注意:此字段可能返回 null,表示取不到有效值。",
1476
+ "example": "[\"https://github.com/apache/logging-log4j2/commit/c77b3cb39312b83b053d23a2158b99ac7de44dd3\"]",
1477
+ "member": "string",
1478
+ "name": "PatchUrlList",
1479
+ "output_required": false,
1480
+ "type": "list",
1481
+ "value_allowed_null": true
1277
1482
  }
1278
1483
  ],
1279
1484
  "usage": "out"
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "document": "",
6
6
  "input": "POST / HTTP/1.1\nHost: bsca.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeKBComponent\n<公共请求参数>\n\n{\n \"PURL\": {\n \"Name\": \"openssl\"\n }\n}",
7
- "output": "{\n \"Response\": {\n \"Component\": {\n \"CodeLocationList\": null,\n \"Homepage\": \"https://www.openssl.org\",\n \"LicenseExpression\": \"openssl-ssleay\",\n \"NicknameList\": null,\n \"PURL\": {\n \"Name\": \"openssl\",\n \"Namespace\": \"\",\n \"Protocol\": \"generic\",\n \"Qualifiers\": null,\n \"Subpath\": \"\",\n \"Version\": \"\"\n },\n \"Summary\": \"OpenSSL is a toolkit for supporting cryptography. The openssl-static\\npackage contains static libraries needed for static linking of\\napplications which support various cryptographic algorithms and\\nprotocols.\"\n },\n \"RequestId\": \"56dabf5e-0887-4960-bf6f-595ea9a9a0d7\"\n }\n}",
7
+ "output": "{\n \"Response\": {\n \"Component\": {\n \"CodeLocationList\": [\n \"https://github.com/openssl/openssl.git\",\n \"https://android.googlesource.com/platform/external/openssl\"\n ],\n \"Homepage\": \"https://www.openssl.org\",\n \"LastUpdateTime\": \"2023-09-11 22:08:48.000000\",\n \"LicenseExpression\": \"openssl-ssleay\",\n \"NicknameList\": null,\n \"PURL\": {\n \"Name\": \"openssl\",\n \"Namespace\": \"\",\n \"Protocol\": \"generic\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"1.0.0\"\n },\n \"Summary\": \"OpenSSL is a robust, commercial-grade, full-featured Open Source Toolkit for the Transport Layer Security (TLS) protocol formerly known as the Secure Sockets Layer (SSL) protocol. The protocol implementation is based on a full-strength general purpose cryptographic library, which can also be used stand-alone.\",\n \"TagList\": [\n \"network\"\n ],\n \"VersionInfo\": {\n \"CopyrightList\": [\n \"Copyright (c) 1998-2008 The OpenSSL Project\",\n \"Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com)\",\n \"holder is Tim Hudson (tjh@cryptsoft.com)\"\n ],\n \"PublishTime\": \"2015-01-22 09:46:52.000000\",\n \"TagList\": [\n \"copyright_updated\"\n ]\n }\n },\n \"RequestId\": \"deadc0de-3ab7-45dd-9def-6b3e087dd354\"\n }\n}",
8
8
  "title": "查询openssl组件信息"
9
9
  }
10
10
  ],
@@ -12,15 +12,15 @@
12
12
  {
13
13
  "document": "查询ristretto组件的版本列表",
14
14
  "input": "POST / HTTP/1.1\nHost: bsca.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeKBComponentVersionList\n<公共请求参数>\n\n{\n \"PURL\": {\n \"Name\": \"ristretto\",\n \"Protocol\": \"golang\",\n \"Namespace\": \"\",\n \"Subpath\": \"\",\n \"Version\": \"\"\n }\n}",
15
- "output": "{\n \"Response\": {\n \"RequestId\": \"1df9b437-4e92-4ad5-b422-abeb45bbaf03\",\n \"VersionList\": [\n {\n \"LicenseExpression\": \"apache-2.0\",\n \"PURL\": {\n \"Name\": \"ristretto\",\n \"Namespace\": \"github.com/sergiub32\",\n \"Protocol\": \"golang\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"v0.2.1\"\n }\n }\n ]\n }\n}",
15
+ "output": "{\n \"Response\": {\n \"VersionList\": [\n {\n \"LicenseExpression\": \"gpl-3.0\",\n \"PURL\": {\n \"Name\": \"xxl-job-core\",\n \"Namespace\": \"com.xuxueli\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.4.1\"\n },\n \"VersionInfo\": {\n \"CopyrightList\": [],\n \"PublishTime\": \"2024-04-17 08:50:11.000000\",\n \"TagList\": [\n \"ContainsVulnerability\"\n ]\n }\n }\n ],\n \"RequestId\": \"101705d6-b972-4dbf-9d10-0b075d509d3d\"\n }\n}",
16
16
  "title": "查询知识库组件的版本列表"
17
17
  }
18
18
  ],
19
19
  "DescribeKBComponentVulnerability": [
20
20
  {
21
21
  "document": "",
22
- "input": "POST / HTTP/1.1\nHost: bsca.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeKBComponentVulnerability\n<公共请求参数>\n\n{\n \"PURL\": {\n \"Version\": \"1.1.1\",\n \"Name\": \"openssl\"\n }\n}",
23
- "output": "{\n \"Response\": {\n \"VulnerabilityList\": [\n {\n \"Summary\": {\n \"CNNVDID\": \"CNNVD-201909-447\",\n \"CNVDID\": \"CNVD-2019-38485\",\n \"CVEID\": \"CVE-2019-1547\",\n \"IsSuggest\": false,\n \"Name\": \"OpenSSL 安全漏洞\",\n \"Severity\": \"Medium\",\n \"VulID\": \"pcmgr-124087\"\n },\n \"SummaryInComponent\": {\n \"AffectedComponent\": \"openssl\",\n \"AffectedVersion\": \"1.1.1\",\n \"CanBeFixed\": true,\n \"FixedVersion\": \">1.0.2s,>1.1.0k,>1.1.1c\",\n \"PURL\": {\n \"Name\": \"openssl\",\n \"Namespace\": \"\",\n \"Protocol\": \"\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"1.1.1\"\n },\n \"RiskLevel\": \"Medium\"\n }\n }\n ],\n \"RequestId\": \"278a8e3b-f491-4396-b6b2-984a354ff5b0\"\n }\n}",
22
+ "input": "POST / HTTP/1.1\nHost: bsca.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeKBComponentVulnerability\n<公共请求参数>\n\n{\n \"PURL\": {\n \"Name\": \"xxl-job-core\",\n \"Protocol\": \"maven\",\n \"Namespace\": \"com.xuxueli\",\n \"Version\": \"2.2.0\"\n }\n}",
23
+ "output": "{\n \"Response\": {\n \"PURL\": {\n \"Name\": \"com.xuxueli:xxl-job-core\",\n \"Namespace\": \"\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.2.0\"\n },\n \"RecommendedVersion\": \"2.4.1\",\n \"VulnerabilityList\": [\n {\n \"Summary\": {\n \"ArchitectureList\": [],\n \"CNNVDID\": \"CNNVD-202408-1426\",\n \"CNVDID\": \"\",\n \"CVEID\": \"CVE-2024-42681\",\n \"IsSuggest\": true,\n \"Name\": \"XXL-JOB 安全漏洞\",\n \"PatchUrlList\": null,\n \"Severity\": \"High\",\n \"VulID\": \"pcmgr-513695\"\n },\n \"SummaryInComponent\": {\n \"AffectedComponent\": \"com.xuxueli:xxl-job-core\",\n \"AffectedVersion\": \"2.2.0\",\n \"CanBeFixed\": true,\n \"FixedVersion\": \">2.4.1\",\n \"PURL\": {\n \"Name\": \"com.xuxueli:xxl-job-core\",\n \"Namespace\": \"\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.2.0\"\n },\n \"RiskLevel\": \"High\"\n }\n },\n {\n \"Summary\": {\n \"ArchitectureList\": [],\n \"CNNVDID\": \"CNNVD-202012-1604\",\n \"CNVDID\": \"CNVD-2021-44699\",\n \"CVEID\": \"CVE-2020-29204\",\n \"IsSuggest\": false,\n \"Name\": \"XXL-JOB跨站脚本漏洞(CVE-2020-29204)\",\n \"PatchUrlList\": null,\n \"Severity\": \"Medium\",\n \"VulID\": \"pcmgr-304614\"\n },\n \"SummaryInComponent\": {\n \"AffectedComponent\": \"com.xuxueli:xxl-job-core\",\n \"AffectedVersion\": \"2.2.0\",\n \"CanBeFixed\": true,\n \"FixedVersion\": \">2.2.0,2.3.0\",\n \"PURL\": {\n \"Name\": \"com.xuxueli:xxl-job-core\",\n \"Namespace\": \"\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.2.0\"\n },\n \"RiskLevel\": \"Medium\"\n }\n },\n {\n \"Summary\": {\n \"ArchitectureList\": [],\n \"CNNVDID\": \"CNNVD-202209-2891\",\n \"CNVDID\": \"\",\n \"CVEID\": \"CVE-2022-40929\",\n \"IsSuggest\": true,\n \"Name\": \"XXL-JOB 命令注入漏洞\",\n \"PatchUrlList\": null,\n \"Severity\": \"Critical\",\n \"VulID\": \"pcmgr-368382\"\n },\n \"SummaryInComponent\": {\n \"AffectedComponent\": \"com.xuxueli:xxl-job-core\",\n \"AffectedVersion\": \"2.2.0\",\n \"CanBeFixed\": true,\n \"FixedVersion\": \">2.2.0\",\n \"PURL\": {\n \"Name\": \"com.xuxueli:xxl-job-core\",\n \"Namespace\": \"\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.2.0\"\n },\n \"RiskLevel\": \"Critical\"\n }\n },\n {\n \"Summary\": {\n \"ArchitectureList\": [],\n \"CNNVDID\": \"\",\n \"CNVDID\": \"CNVD-2022-81229\",\n \"CVEID\": \"CVE-2022-43183\",\n \"IsSuggest\": true,\n \"Name\": \"XXL-JOB代码问题漏洞(CVE-2022-43183)\",\n \"PatchUrlList\": null,\n \"Severity\": \"High\",\n \"VulID\": \"pcmgr-378820\"\n },\n \"SummaryInComponent\": {\n \"AffectedComponent\": \"com.xuxueli:xxl-job-core\",\n \"AffectedVersion\": \"2.2.0\",\n \"CanBeFixed\": true,\n \"FixedVersion\": \">2.3.0,2.3.1\",\n \"PURL\": {\n \"Name\": \"com.xuxueli:xxl-job-core\",\n \"Namespace\": \"\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.2.0\"\n },\n \"RiskLevel\": \"High\"\n }\n },\n {\n \"Summary\": {\n \"ArchitectureList\": [],\n \"CNNVDID\": \"CNNVD-202404-775\",\n \"CNVDID\": \"\",\n \"CVEID\": \"CVE-2024-3366\",\n \"IsSuggest\": false,\n \"Name\": \"XXL-JOB 注入漏洞(CVE-2024-3366)\",\n \"PatchUrlList\": null,\n \"Severity\": \"High\",\n \"VulID\": \"pcmgr-485156\"\n },\n \"SummaryInComponent\": {\n \"AffectedComponent\": \"com.xuxueli:xxl-job-core\",\n \"AffectedVersion\": \"2.2.0\",\n \"CanBeFixed\": true,\n \"FixedVersion\": \">2.4.0,2.4.1\",\n \"PURL\": {\n \"Name\": \"com.xuxueli:xxl-job-core\",\n \"Namespace\": \"\",\n \"Protocol\": \"maven\",\n \"Qualifiers\": [],\n \"Subpath\": \"\",\n \"Version\": \"2.2.0\"\n },\n \"RiskLevel\": \"High\"\n }\n }\n ],\n \"RequestId\": \"3eed4bda-8f2c-444f-bac8-d64555eb0e05\"\n }\n}",
24
24
  "title": "查询openssl 1.1.1的漏洞信息"
25
25
  }
26
26
  ],
@@ -812,7 +812,7 @@
812
812
  "example": "无",
813
813
  "member": "string",
814
814
  "name": "EvidenceId",
815
- "required": true,
815
+ "output_required": true,
816
816
  "type": "string",
817
817
  "value_allowed_null": false
818
818
  },
@@ -822,7 +822,7 @@
822
822
  "example": "无",
823
823
  "member": "string",
824
824
  "name": "EvidenceCert",
825
- "required": true,
825
+ "output_required": true,
826
826
  "type": "string",
827
827
  "value_allowed_null": false
828
828
  },
@@ -859,7 +859,7 @@
859
859
  "example": "无",
860
860
  "member": "string",
861
861
  "name": "EvidenceId",
862
- "required": true,
862
+ "output_required": true,
863
863
  "type": "string",
864
864
  "value_allowed_null": false
865
865
  },
@@ -869,7 +869,7 @@
869
869
  "example": "无",
870
870
  "member": "string",
871
871
  "name": "EvidenceFile",
872
- "required": true,
872
+ "output_required": true,
873
873
  "type": "string",
874
874
  "value_allowed_null": false
875
875
  },
@@ -74,7 +74,7 @@
74
74
  {
75
75
  "document": "用户通过存证编码向BTOE查询存证电子凭证信息。",
76
76
  "input": "POST / HTTP/1.1\nHost: btoe.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetDepositCert\n<公共请求参数>\n\n{\n \"EvidenceId\": \"testt222e32278733387121ststtest\"\n}",
77
- "output": "{\n \"Response\": {\n \"RequestId\": \"testtest33111113333111\",\n \"EvidenceId\": \"testt222e32278733387121ststtest\",\n \"EvidenceCert\": \"http://test-1251451924.cos.ap-nanjing.myqcloud.com/btoe%2620210326%26testt222e32278733387121ststtest.png?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDkIyS6YfpfH3bcTuzz05uWr1vwkMjrra6%26q-sign-time%3D1617003400%3B1617007000%26q-key-time%3D1617003400%3B1617007000%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2c2c544622742db817848beff9580c51804ec7f0\"\n }\n}",
77
+ "output": "{\n \"Response\": {\n \"RequestId\": \"testtest33111113333111\",\n \"EvidenceId\": \"testt222e32278733387121ststtest\",\n \"EvidenceCert\": \"http://xxxxx.cos.xxxxx.myqcloud.com/btoe%2620210326%26testt222e32278733387121ststtest.png?sign=q-sign-algorithm%3Dsha1%26q-ak%3Dasdfjalsdjlkfasndlncajsdfasd%26q-sign-time%3D1617003400%3B1617007000%26q-key-time%3D1617003400%3B1617007000%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2c2c544622742db817848beff9580c51804ec7f0\"\n }\n}",
78
78
  "title": "BTOE存证电子凭证查询"
79
79
  }
80
80
  ],
@@ -82,7 +82,7 @@
82
82
  {
83
83
  "document": "用户通过存证编码向BTOE获取存证文件的下载URL。",
84
84
  "input": "POST / HTTP/1.1\nHost: btoe.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetDepositFile\n<公共请求参数>\n\n{\n \"EvidenceId\": \"存证编码\"\n}",
85
- "output": "{\n \"Response\": {\n \"RequestId\": \"testtest33111113333111\",\n \"EvidenceId\": \"testt222e32278733387121ststtest\",\n \"EvidenceFile\": \"http://test-1251451924.cos.ap-nanjing.myqcloud.com/btoe%2620210326%26testt222e32278733387121ststtest.png?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDkIyS6YfpfH3bcTuzz05uWr1vwkMjrra6%26q-sign-time%3D1617003400%3B1617007000%26q-key-time%3D1617003400%3B1617007000%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2c2c544622742db817848beff9580c51804ec7f0\"\n }\n}",
85
+ "output": "{\n \"Response\": {\n \"RequestId\": \"testtest33111113333111\",\n \"EvidenceId\": \"testt222e32278733387121ststtest\",\n \"EvidenceFile\": \"http://xxxx.cos.xxxx.myqcloud.com/btoe%2620210326%26testt222e32278733387121ststtest.png?sign=q-sign-algorithm%3Dsha1%26q-ak%3Dsdfgsdfgsdvsevrsdfgsdfg%26q-sign-time%3D1617003400%3B1617007000%26q-key-time%3D1617003400%3B1617007000%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2c2c544622742db817848beff9580c51804ec7f0\"\n }\n}",
86
86
  "title": "存证文件查询"
87
87
  }
88
88
  ],
@@ -29,6 +29,57 @@
29
29
  "serviceShortName": "ca"
30
30
  },
31
31
  "objects": {
32
+ "CertificateIdentityUser": {
33
+ "document": "证书用户信息和身份鉴别信息。则该字段无需传入,默认为空。对电子签名者身份鉴别类型及措施有特殊展示要求的可使用该字段。",
34
+ "members": [
35
+ {
36
+ "disabled": false,
37
+ "document": "姓名",
38
+ "example": "无",
39
+ "member": "string",
40
+ "name": "Name",
41
+ "required": false,
42
+ "type": "string"
43
+ },
44
+ {
45
+ "disabled": false,
46
+ "document": "唯一身份id",
47
+ "example": "无",
48
+ "member": "string",
49
+ "name": "IdentityUniqueId",
50
+ "required": false,
51
+ "type": "string"
52
+ },
53
+ {
54
+ "disabled": false,
55
+ "document": "身份证号",
56
+ "example": "无",
57
+ "member": "string",
58
+ "name": "IdCardNumber",
59
+ "required": false,
60
+ "type": "string"
61
+ },
62
+ {
63
+ "disabled": false,
64
+ "document": "身份鉴别类型\n1:授权金融机构身份鉴别",
65
+ "example": "1",
66
+ "member": "string",
67
+ "name": "IdentificationType",
68
+ "required": false,
69
+ "type": "string"
70
+ },
71
+ {
72
+ "disabled": false,
73
+ "document": "身份鉴别措施\n1、身份证鉴别\n2、银行卡鉴别\n3、支付账户密码验证\n4、人脸识别验证",
74
+ "example": "1",
75
+ "member": "string",
76
+ "name": "IdentificationMeasures",
77
+ "required": false,
78
+ "type": "list"
79
+ }
80
+ ],
81
+ "usage": "in"
82
+ },
32
83
  "CreateVerifyReportRequest": {
33
84
  "document": "CreateVerifyReport请求参数结构体",
34
85
  "members": [
@@ -85,6 +136,15 @@
85
136
  "name": "ApplyEmail",
86
137
  "required": false,
87
138
  "type": "string"
139
+ },
140
+ {
141
+ "disabled": false,
142
+ "document": "证书用户身份及身份鉴别信息",
143
+ "example": "无",
144
+ "member": "CertificateIdentityUser",
145
+ "name": "CertificateIdentityUsers",
146
+ "required": false,
147
+ "type": "list"
88
148
  }
89
149
  ],
90
150
  "type": "object"
@@ -4745,7 +4745,7 @@
4745
4745
  "members": [
4746
4746
  {
4747
4747
  "disabled": false,
4748
- "document": "分页条数,缺省为20",
4748
+ "document": "分页的条数,默认是20条。",
4749
4749
  "example": "20",
4750
4750
  "member": "uint64",
4751
4751
  "name": "Limit",
@@ -4754,7 +4754,7 @@
4754
4754
  },
4755
4755
  {
4756
4756
  "disabled": false,
4757
- "document": "分页起始值,缺省为0",
4757
+ "document": "分页的起始值,默认从0开始。",
4758
4758
  "example": "0",
4759
4759
  "member": "uint64",
4760
4760
  "name": "Offset",
@@ -5561,12 +5561,12 @@
5561
5561
  "type": "object"
5562
5562
  },
5563
5563
  "LoginActionFlag": {
5564
- "document": "登录和敏感操作flag",
5564
+ "document": "登录和敏感操作flag(校验方式是单选)",
5565
5565
  "members": [
5566
5566
  {
5567
5567
  "disabled": false,
5568
- "document": "手机",
5569
- "example": "0",
5568
+ "document": "0: 非安全手机校验 1: 安全手机校验。",
5569
+ "example": "1",
5570
5570
  "member": "uint64",
5571
5571
  "name": "Phone",
5572
5572
  "output_required": true,
@@ -5576,7 +5576,7 @@
5576
5576
  },
5577
5577
  {
5578
5578
  "disabled": false,
5579
- "document": "硬token",
5579
+ "document": "0: 非硬token校验 1: 硬token校验。",
5580
5580
  "example": "0",
5581
5581
  "member": "uint64",
5582
5582
  "name": "Token",
@@ -5587,7 +5587,7 @@
5587
5587
  },
5588
5588
  {
5589
5589
  "disabled": false,
5590
- "document": "软token",
5590
+ "document": "0: 非软token校验 1: 软token校验",
5591
5591
  "example": "0",
5592
5592
  "member": "uint64",
5593
5593
  "name": "Stoken",
@@ -5598,7 +5598,7 @@
5598
5598
  },
5599
5599
  {
5600
5600
  "disabled": false,
5601
- "document": "微信",
5601
+ "document": "0: 非微信校验 1: 微信校验",
5602
5602
  "example": "0",
5603
5603
  "member": "uint64",
5604
5604
  "name": "Wechat",
@@ -5609,7 +5609,7 @@
5609
5609
  },
5610
5610
  {
5611
5611
  "disabled": false,
5612
- "document": "自定义",
5612
+ "document": "0: 非自定义校验 1: 自定义校验",
5613
5613
  "example": "0",
5614
5614
  "member": "uint64",
5615
5615
  "name": "Custom",
@@ -5620,7 +5620,7 @@
5620
5620
  },
5621
5621
  {
5622
5622
  "disabled": false,
5623
- "document": "邮箱",
5623
+ "document": "0: 非邮箱校验 1: 邮箱校验",
5624
5624
  "example": "0",
5625
5625
  "member": "uint64",
5626
5626
  "name": "Mail",
@@ -5631,7 +5631,7 @@
5631
5631
  },
5632
5632
  {
5633
5633
  "disabled": false,
5634
- "document": "u2f硬件token\n注意:此字段可能返回 null,表示取不到有效值。",
5634
+ "document": "0: 非u2f硬件token 1: u2f硬件token\n注意:此字段可能返回 null,表示取不到有效值。",
5635
5635
  "example": "0",
5636
5636
  "member": "uint64",
5637
5637
  "name": "U2FToken",