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
@@ -16,6 +16,20 @@
16
16
  "title": "创建一个别名"
17
17
  }
18
18
  ],
19
+ "CreateCustomDomain": [
20
+ {
21
+ "document": "创建一个自定义域名,关闭了waf防护,路由配置开启重写策略,该策略是通配符匹配替换。",
22
+ "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateCustomDomain\n<公共请求参数>\n\n{\n \"Domain\": \"www.ccc.com\",\n \"Protocol\": \"HTTP&HTTPS\",\n \"CertConfig\": {\n \"CertificateId\": \"BxxJ3DK7\"\n },\n \"EndpointsConfig\": [\n {\n \"PathMatch\": \"/aa/*\",\n \"Namespace\": \"default\",\n \"FunctionName\": \"test1\",\n \"Qualifier\": \"$LATEST\",\n \"PathRewrite\": [\n {\n \"Path\": \"/aa/bb/*\",\n \"Type\": \"WildcardRules\",\n \"Rewrite\": \"/$\"\n }\n ]\n }\n ],\n \"WafConfig\": {\n \"WafOpen\": \"CLOSE\",\n \"WafInstanceId\": \"\"\n }\n}",
23
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
24
+ "title": "示例1"
25
+ },
26
+ {
27
+ "document": "创建一个自定义域名,开启了waf 防护,路由配置开启重写策略,该策略是精确路径匹配替换。",
28
+ "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateCustomDomain\n<公共请求参数>\n\n{\n \"Domain\": \"www.ccc.com\",\n \"Protocol\": \"HTTP&HTTPS\",\n \"CertConfig\": {\n \"CertificateId\": \"BxxJ3DK7\"\n },\n \"EndpointsConfig\": [\n {\n \"PathMatch\": \"/aa/\",\n \"Namespace\": \"default\",\n \"FunctionName\": \"test1\",\n \"Qualifier\": \"1\",\n \"PathRewrite\": [\n {\n \"Path\": \"/aa/\",\n \"Type\": \"WildcardRules\",\n \"Rewrite\": \"/\"\n }\n ]\n }\n ],\n \"WafConfig\": {\n \"WafOpen\": \"OPEN\",\n \"WafInstanceId\": \"waf-xxxxx\"\n }\n}",
29
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
30
+ "title": "示例2"
31
+ }
32
+ ],
19
33
  "CreateFunction": [
20
34
  {
21
35
  "document": "创建函数",
@@ -48,6 +62,14 @@
48
62
  "title": "删除别名"
49
63
  }
50
64
  ],
65
+ "DeleteCustomDomain": [
66
+ {
67
+ "document": "",
68
+ "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCustomDomain\n<公共请求参数>\n\n{\n \"Domain\": \"www.xxx.com\"\n}",
69
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
70
+ "title": "示例1"
71
+ }
72
+ ],
51
73
  "DeleteFunction": [
52
74
  {
53
75
  "document": "用户删除函数时需要使用,可指定版本与命名空间。",
@@ -120,6 +142,14 @@
120
142
  "title": "查询函数异步事件状态"
121
143
  }
122
144
  ],
145
+ "GetCustomDomain": [
146
+ {
147
+ "document": "",
148
+ "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetCustomDomain\n<公共请求参数>\n\n{\n \"Domain\": \"www.xxx.com\"\n}",
149
+ "output": "{\n \"Response\": {\n \"CertConfig\": {\n \"CertificateId\": \"BfHJsadd7\"\n },\n \"Domain\": \"www.xxx.com\",\n \"EndpointsConfig\": [\n {\n \"FunctionName\": \"test1\",\n \"Namespace\": \"default\",\n \"PathMatch\": \"/cc/\",\n \"PathRewrite\": [\n {\n \"Path\": \"/cc/\",\n \"Rewrite\": \"/\",\n \"Type\": \"ExactRules\"\n }\n ],\n \"Qualifier\": \"$LATEST\"\n }\n ],\n \"Protocol\": \"HTTP&HTTPS\",\n \"RequestId\": \"6941ssdd162b-925f-4c3a-b90f-3558c0aebf97\",\n \"WafConfig\": {\n \"WafInstanceId\": \"\",\n \"WafOpen\": \"CLOSE\"\n }\n }\n}",
150
+ "title": "示例1"
151
+ }
152
+ ],
123
153
  "GetFunction": [
124
154
  {
125
155
  "document": "用户用此函数获取对应的函数信息,可指定版本与命名空间。",
@@ -156,7 +186,7 @@
156
186
  {
157
187
  "document": "获取层版本详情",
158
188
  "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetLayerVersion\n<公共请求参数>\n\n{\n \"LayerName\": \"abc\",\n \"LayerVersion\": 0\n}",
159
- "output": "{\n \"Response\": {\n \"Status\": \"Active\",\n \"LayerVersion\": 1,\n \"CodeSha256\": \"c7c8bda601817ce4faab4c4fb3e73b9a32040e0e9f31f7a649d84d4bdde9e4a5\",\n \"Description\": \"desc\",\n \"LicenseInfo\": \"\",\n \"AddTime\": \"2019-11-26 16:15:33\",\n \"Location\": \"https://lambdalayerin-1253665819.cos.ap-mumbai.myqcloud.com/1253970226/layer3/1/1253970226_layer3_1.zip?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDqbBtfGe4eSSK8CExGjmC0e8Qcnswv6yj%26q-sign-time%3D1582083327%3B1582093387%26q-key-time%3D1582083327%3B1582093387%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3D255d3e5aaa6c7224396b39f857e134a0dfb27c89&response-content-type=application/octet-stream\",\n \"CompatibleRuntimes\": [\n \"Nodejs8.9\",\n \"Nodejs6.10\"\n ],\n \"LayerName\": \"layer3\",\n \"RequestId\": \"6c7578ed-b816-4e50-930a-54e855452b8b\"\n }\n}",
189
+ "output": "{\n \"Response\": {\n \"Status\": \"Active\",\n \"LayerVersion\": 1,\n \"CodeSha256\": \"c7c8bda601817ce4faab4c4fb3e73b9a32040e0e9f31f7a649d84d4bdde9e4a5\",\n \"Description\": \"desc\",\n \"LicenseInfo\": \"\",\n \"AddTime\": \"2019-11-26 16:15:33\",\n \"Location\": \"https://lambdalayerin-1253665819.cos.ap-mumbai.myqcloud.com/1253970226/layer3/1/1253970226_layer3_1.zip?sign=q-sign-algorithm%3Dsha1%26q-ak%3Dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx%26q-sign-time%3D1582083327%3B1582093387%26q-key-time%3D1582083327%3B1582093387%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3D255d3e5aaa6c7224396b39f857e134a0dfb27c89&response-content-type=application/octet-stream\",\n \"CompatibleRuntimes\": [\n \"Nodejs8.9\",\n \"Nodejs6.10\"\n ],\n \"LayerName\": \"layer3\",\n \"RequestId\": \"6c7578ed-b816-4e50-930a-54e855452b8b\"\n }\n}",
160
190
  "title": "获取层版本详情"
161
191
  }
162
192
  ],
@@ -216,6 +246,14 @@
216
246
  "title": "拉取函数异步事件列表"
217
247
  }
218
248
  ],
249
+ "ListCustomDomains": [
250
+ {
251
+ "document": "",
252
+ "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ListCustomDomains\n<公共请求参数>\n\n{}",
253
+ "output": "{\n \"Response\": {\n \"Domains\": [\n {\n \"CertConfig\": {\n \"CertificateId\": \"ccccaas\"\n },\n \"Domain\": \"www.xxx.com\",\n \"EndpointsConfig\": [\n {\n \"FunctionName\": \"test1\",\n \"Namespace\": \"default\",\n \"PathMatch\": \"/cc/\",\n \"PathRewrite\": [\n {\n \"Path\": \"/cc/\",\n \"Rewrite\": \"/\",\n \"Type\": \"ExactRules\"\n }\n ],\n \"Qualifier\": \"$LATEST\"\n }\n ],\n \"Protocol\": \"HTTP&HTTPS\",\n \"WafConfig\": {\n \"WafInstanceId\": \"\",\n \"WafOpen\": \"CLOSE\"\n }\n }\n ],\n \"RequestId\": \"6941ssdd162b-925f-4c3a-b90f-3558c0aebf97\",\n \"Total\": 1\n }\n}",
254
+ "title": "示例1"
255
+ }
256
+ ],
219
257
  "ListFunctions": [
220
258
  {
221
259
  "document": "",
@@ -326,6 +364,14 @@
326
364
  "title": "更新别名的配置"
327
365
  }
328
366
  ],
367
+ "UpdateCustomDomain": [
368
+ {
369
+ "document": "更新自定义域名的证书Id,并关闭waf",
370
+ "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateCustomDomain\n<公共请求参数>\n\n{\n \"Domain\": \"www.ccc.com\",\n \"Protocol\": \"HTTP&HTTPS\",\n \"CertConfig\": {\n \"CertificateId\": \"cvvxxJ3DK7\"\n },\n \"WafConfig\": {\n \"WafOpen\": \"CLOSE\",\n \"WafInstanceId\": \"\"\n }\n}",
371
+ "output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
372
+ "title": "示例1"
373
+ }
374
+ ],
329
375
  "UpdateFunctionCode": [
330
376
  {
331
377
  "document": "",
@@ -20,8 +20,8 @@
20
20
  "members": [
21
21
  {
22
22
  "disabled": false,
23
- "document": "用户ID",
24
- "example": "littleMing7",
23
+ "document": "用户唯一标识,最大长度为64",
24
+ "example": "5Gsl********VfPd",
25
25
  "member": "string",
26
26
  "name": "AccountId",
27
27
  "required": true,
@@ -29,8 +29,8 @@
29
29
  },
30
30
  {
31
31
  "disabled": false,
32
- "document": "设备ID",
33
- "example": "Huawei",
32
+ "document": "用户设备ID,最大长度为64",
33
+ "example": "oPD5********G0zr",
34
34
  "member": "string",
35
35
  "name": "DeviceId",
36
36
  "required": true,
@@ -38,8 +38,8 @@
38
38
  },
39
39
  {
40
40
  "disabled": false,
41
- "document": "订单ID",
42
- "example": "123456789",
41
+ "document": "任务的唯一订单号,只能是数字、大小写字母,且在同一个产品ID下唯一,最大长度为64",
42
+ "example": "xFUDBDgn4lv403u5",
43
43
  "member": "string",
44
44
  "name": "OrderId",
45
45
  "required": true,
@@ -47,8 +47,8 @@
47
47
  },
48
48
  {
49
49
  "disabled": false,
50
- "document": "任务事件Code",
51
- "example": "1",
50
+ "document": "任务事件Code,在腾讯安心用户运营平台下的任务事件列表中设置并获取",
51
+ "example": "addType",
52
52
  "member": "string",
53
53
  "name": "Code",
54
54
  "required": true,
@@ -56,7 +56,7 @@
56
56
  },
57
57
  {
58
58
  "disabled": false,
59
- "document": "同步异步方式:0为同步、1位异步",
59
+ "document": "任务结果是否异步通知。0表示任务结果在返回信息中同步返回;1表示任务结果通过回调结果异步通知。",
60
60
  "example": "0",
61
61
  "member": "int64",
62
62
  "name": "Async",
@@ -65,8 +65,8 @@
65
65
  },
66
66
  {
67
67
  "disabled": false,
68
- "document": "产品ID",
69
- "example": "1",
68
+ "document": "产品ID,可在腾讯安心用户运营平台的企业管理中获取",
69
+ "example": "7999",
70
70
  "member": "int64",
71
71
  "name": "ProductId",
72
72
  "required": true,
@@ -74,8 +74,8 @@
74
74
  },
75
75
  {
76
76
  "disabled": false,
77
- "document": "回调地址",
78
- "example": "https://testgmall.m.qq.com/ext/testReceiveTaskNotify",
77
+ "document": "异步接收任务结果通知的回调地址。在Async为1的时候,会将任务结果通过该回调地址进行通知。",
78
+ "example": "https://gmall.m.qq.com/api/ReceiveTaskNotify",
79
79
  "member": "string",
80
80
  "name": "NotifyURL",
81
81
  "required": false,
@@ -89,28 +89,31 @@
89
89
  "members": [
90
90
  {
91
91
  "disabled": false,
92
- "document": "订单ID\n注意:此字段可能返回 null,表示取不到有效值。",
93
- "example": "123456789",
92
+ "document": "任务的唯一订单号\n注意:此字段可能返回 null,表示取不到有效值。",
93
+ "example": "xFUDBDgn4lv403u5",
94
94
  "member": "string",
95
95
  "name": "OrderId",
96
+ "output_required": true,
96
97
  "type": "string",
97
98
  "value_allowed_null": true
98
99
  },
99
100
  {
100
101
  "disabled": false,
101
- "document": "信息码\n注意:此字段可能返回 null,表示取不到有效值。",
102
+ "document": "信息码。0表示成功,-1标识失败\n注意:此字段可能返回 null,表示取不到有效值。",
102
103
  "example": "0",
103
104
  "member": "int64",
104
105
  "name": "Code",
106
+ "output_required": true,
105
107
  "type": "int",
106
108
  "value_allowed_null": true
107
109
  },
108
110
  {
109
111
  "disabled": false,
110
- "document": "success\n注意:此字段可能返回 null,表示取不到有效值。",
111
- "example": "提示信息",
112
+ "document": "提示信息\n注意:此字段可能返回 null,表示取不到有效值。",
113
+ "example": "success",
112
114
  "member": "string",
113
115
  "name": "Message",
116
+ "output_required": true,
114
117
  "type": "string",
115
118
  "value_allowed_null": true
116
119
  },
@@ -120,6 +123,7 @@
120
123
  "example": "无",
121
124
  "member": "TaskEventData",
122
125
  "name": "Data",
126
+ "output_required": true,
123
127
  "type": "list",
124
128
  "value_allowed_null": true
125
129
  },
@@ -137,11 +141,11 @@
137
141
  "members": [
138
142
  {
139
143
  "disabled": false,
140
- "document": "状态码\n注意:此字段可能返回 null,表示取不到有效值。",
144
+ "document": "状态码,0为成功,-1为失败\n注意:此字段可能返回 null,表示取不到有效值。",
141
145
  "example": "0",
142
146
  "member": "int64",
143
147
  "name": "Code",
144
- "required": false,
148
+ "output_required": true,
145
149
  "type": "int",
146
150
  "value_allowed_null": true
147
151
  },
@@ -151,7 +155,7 @@
151
155
  "example": "success",
152
156
  "member": "string",
153
157
  "name": "Message",
154
- "required": false,
158
+ "output_required": true,
155
159
  "type": "string",
156
160
  "value_allowed_null": true
157
161
  },
@@ -161,37 +165,37 @@
161
165
  "example": "11100",
162
166
  "member": "int64",
163
167
  "name": "TaskId",
164
- "required": false,
168
+ "output_required": true,
165
169
  "type": "int",
166
170
  "value_allowed_null": true
167
171
  },
168
172
  {
169
173
  "disabled": false,
170
- "document": "当前完成或正在完成的任务订单ID\n注意:此字段可能返回 null,表示取不到有效值。",
174
+ "document": "当前完成或正在完成的安心用户运营平台的任务订单ID\n注意:此字段可能返回 null,表示取不到有效值。",
171
175
  "example": "3772179646188093549",
172
176
  "member": "string",
173
177
  "name": "TaskOrderId",
174
- "required": false,
178
+ "output_required": true,
175
179
  "type": "string",
176
180
  "value_allowed_null": true
177
181
  },
178
182
  {
179
183
  "disabled": false,
180
- "document": "当前任务订单状态码\n注意:此字段可能返回 null,表示取不到有效值。",
181
- "example": "0",
184
+ "document": "当前任务订单状态码。1代表未完成;2代表已完成但未提交任务;3表示已完成,且已提交获得积分任务;4表示过期任务,提交后不获得积分。\n注意:此字段可能返回 null,表示取不到有效值。",
185
+ "example": "1",
182
186
  "member": "int64",
183
187
  "name": "TaskCode",
184
- "required": false,
188
+ "output_required": true,
185
189
  "type": "int",
186
190
  "value_allowed_null": true
187
191
  },
188
192
  {
189
193
  "disabled": false,
190
- "document": "获得积分数/成长值\n注意:此字段可能返回 null,表示取不到有效值。",
191
- "example": "1",
194
+ "document": "获得积分数\n注意:此字段可能返回 null,表示取不到有效值。",
195
+ "example": "10",
192
196
  "member": "int64",
193
197
  "name": "TaskCoinNumber",
194
- "required": false,
198
+ "output_required": true,
195
199
  "type": "int",
196
200
  "value_allowed_null": true
197
201
  },
@@ -201,27 +205,27 @@
201
205
  "example": "1151",
202
206
  "member": "int64",
203
207
  "name": "TaskType",
204
- "required": false,
208
+ "output_required": true,
205
209
  "type": "int",
206
210
  "value_allowed_null": true
207
211
  },
208
212
  {
209
213
  "disabled": false,
210
- "document": "当前积分\n注意:此字段可能返回 null,表示取不到有效值。",
214
+ "document": "用户的当前积分\n注意:此字段可能返回 null,表示取不到有效值。",
211
215
  "example": "100",
212
216
  "member": "int64",
213
217
  "name": "TotalCoin",
214
- "required": false,
218
+ "output_required": true,
215
219
  "type": "int",
216
220
  "value_allowed_null": true
217
221
  },
218
222
  {
219
223
  "disabled": false,
220
- "document": "用户透传的代码块\n注意:此字段可能返回 null,表示取不到有效值。",
221
- "example": "function(){}",
224
+ "document": "用户透传的附加数据\n注意:此字段可能返回 null,表示取不到有效值。",
225
+ "example": "自定义数据说明",
222
226
  "member": "string",
223
227
  "name": "Attach",
224
- "required": false,
228
+ "output_required": true,
225
229
  "type": "string",
226
230
  "value_allowed_null": true
227
231
  },
@@ -231,7 +235,7 @@
231
235
  "example": "1",
232
236
  "member": "int64",
233
237
  "name": "DoneTimes",
234
- "required": false,
238
+ "output_required": true,
235
239
  "type": "int",
236
240
  "value_allowed_null": true
237
241
  },
@@ -241,7 +245,7 @@
241
245
  "example": "3",
242
246
  "member": "int64",
243
247
  "name": "TotalTimes",
244
- "required": false,
248
+ "output_required": true,
245
249
  "type": "int",
246
250
  "value_allowed_null": true
247
251
  },
@@ -251,17 +255,17 @@
251
255
  "example": "自定义任务",
252
256
  "member": "string",
253
257
  "name": "TaskName",
254
- "required": false,
258
+ "output_required": true,
255
259
  "type": "string",
256
260
  "value_allowed_null": true
257
261
  },
258
262
  {
259
263
  "disabled": false,
260
- "document": "当前成长值\n注意:此字段可能返回 null,表示取不到有效值。",
261
- "example": "1",
264
+ "document": "用户当前成长值\n注意:此字段可能返回 null,表示取不到有效值。",
265
+ "example": "100",
262
266
  "member": "int64",
263
267
  "name": "GrowScore",
264
- "required": false,
268
+ "output_required": true,
265
269
  "type": "int",
266
270
  "value_allowed_null": true
267
271
  }
@@ -3,8 +3,8 @@
3
3
  "SubmitTaskEvent": [
4
4
  {
5
5
  "document": "提交任务事件",
6
- "input": "POST / HTTP/1.1\nHost: smop.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SubmitTaskEvent\n<公共请求参数>\n\n{\n \"AccountId\": \"abc\",\n \"DeviceId\": \"abc\",\n \"OrderId\": \"abc\",\n \"Code\": \"abc\",\n \"Async\": 0,\n \"NotifyURL\": \"abc\",\n \"ProductId\": 0\n}",
7
- "output": "{\n \"Response\": {\n \"OrderId\": \"abc\",\n \"Code\": 0,\n \"Message\": \"abc\",\n \"Data\": [\n {\n \"Code\": 0,\n \"Message\": \"abc\",\n \"TaskId\": 0,\n \"TaskOrderId\": \"abc\",\n \"TaskCode\": 0,\n \"TaskCoinNumber\": 0,\n \"TaskType\": 0,\n \"TotalCoin\": 0,\n \"Attach\": \"abc\",\n \"DoneTimes\": 0,\n \"TotalTimes\": 0,\n \"TaskName\": \"abc\",\n \"GrowScore\": 0\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
6
+ "input": "POST / HTTP/1.1\nHost: smop.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SubmitTaskEvent\n<公共请求参数>\n\n{\n \"AccountId\": \"5Gsl****VfPd\",\n \"DeviceId\": \"oPD5****G0zr\",\n \"OrderId\": \"xFUDBDgn4lv403u5\",\n \"Code\": \"addType\",\n \"Async\": 1,\n \"NotifyURL\": \"https://gmall.m.qq.com/api/ReceiveTaskNotify\",\n \"ProductId\": 7999\n}",
7
+ "output": "{\n \"Response\": {\n \"OrderId\": \"xFUDBDgn4lv403u5\",\n \"Code\": 0,\n \"Message\": \"success\",\n \"Data\": [\n {\n \"Code\": 0,\n \"Message\": \"success\",\n \"TaskId\": 11100,\n \"TaskOrderId\": \"3772179646188093549\",\n \"TaskCode\": 1,\n \"TaskCoinNumber\": 10,\n \"TaskType\": 1151,\n \"TotalCoin\": 100,\n \"Attach\": \"自定义数据说明\",\n \"DoneTimes\": 1,\n \"TotalTimes\": 3,\n \"TaskName\": \"自定义任务\",\n \"GrowScore\": 100\n }\n ],\n \"RequestId\": \"afc7e79d-b282-154e-5389-f5a6592d2408\"\n }\n}",
8
8
  "title": "SubmitTaskEvent"
9
9
  }
10
10
  ]
@@ -527,7 +527,7 @@
527
527
  "example": "1",
528
528
  "member": "int64",
529
529
  "name": "SentenceId",
530
- "required": true,
530
+ "output_required": true,
531
531
  "type": "int",
532
532
  "value_allowed_null": false
533
533
  },
@@ -537,7 +537,7 @@
537
537
  "example": "word",
538
538
  "member": "WordRsp",
539
539
  "name": "Words",
540
- "required": true,
540
+ "output_required": true,
541
541
  "type": "list",
542
542
  "value_allowed_null": false
543
543
  },
@@ -547,7 +547,7 @@
547
547
  "example": "99.9",
548
548
  "member": "float",
549
549
  "name": "PronAccuracy",
550
- "required": true,
550
+ "output_required": true,
551
551
  "type": "float",
552
552
  "value_allowed_null": false
553
553
  },
@@ -557,7 +557,7 @@
557
557
  "example": "0.99",
558
558
  "member": "float",
559
559
  "name": "PronFluency",
560
- "required": true,
560
+ "output_required": true,
561
561
  "type": "float",
562
562
  "value_allowed_null": false
563
563
  },
@@ -567,17 +567,17 @@
567
567
  "example": "0.99",
568
568
  "member": "float",
569
569
  "name": "PronCompletion",
570
- "required": true,
570
+ "output_required": true,
571
571
  "type": "float",
572
572
  "value_allowed_null": false
573
573
  },
574
574
  {
575
575
  "disabled": false,
576
- "document": "建议评分,取值范围[0,100],评分方式为建议评分 = 准确度(PronAccuracyfloat)* 完整度(PronCompletionfloat)*(2 - 完整度(PronCompletionfloat)),如若评分策略不符合请参考Words数组中的详细分数自定义评分逻辑。",
576
+ "document": "建议评分,取值范围[0,100],评分方式为建议评分 = 准确度(PronAccuracyfloat)× 完整度(PronCompletionfloat)×(2 - 完整度(PronCompletionfloat)),如若评分策略不符合请参考Words数组中的详细分数自定义评分逻辑。",
577
577
  "example": "99",
578
578
  "member": "float",
579
579
  "name": "SuggestedScore",
580
- "required": true,
580
+ "output_required": true,
581
581
  "type": "float",
582
582
  "value_allowed_null": false
583
583
  },
@@ -587,7 +587,7 @@
587
587
  "example": "1",
588
588
  "member": "int64",
589
589
  "name": "RefTextId",
590
- "required": true,
590
+ "output_required": true,
591
591
  "type": "int",
592
592
  "value_allowed_null": true
593
593
  },
@@ -597,7 +597,7 @@
597
597
  "example": "[0,1]",
598
598
  "member": "float",
599
599
  "name": "KeyWordHits",
600
- "required": true,
600
+ "output_required": true,
601
601
  "type": "list",
602
602
  "value_allowed_null": true
603
603
  },
@@ -607,7 +607,7 @@
607
607
  "example": "[0,1]",
608
608
  "member": "float",
609
609
  "name": "UnKeyWordHits",
610
- "required": true,
610
+ "output_required": true,
611
611
  "type": "list",
612
612
  "value_allowed_null": true
613
613
  }
@@ -6021,6 +6021,7 @@
6021
6021
  "example": "1234568",
6022
6022
  "member": "uint64",
6023
6023
  "name": "Id",
6024
+ "output_required": true,
6024
6025
  "type": "int",
6025
6026
  "value_allowed_null": false
6026
6027
  },
@@ -6030,6 +6031,7 @@
6030
6031
  "example": "autoed_instance_58037_20200728011545.bak.tar",
6031
6032
  "member": "string",
6032
6033
  "name": "FileName",
6034
+ "output_required": true,
6033
6035
  "type": "string",
6034
6036
  "value_allowed_null": false
6035
6037
  },
@@ -6039,6 +6041,7 @@
6039
6041
  "example": "mssql-6upluvd5_202007311206",
6040
6042
  "member": "string",
6041
6043
  "name": "BackupName",
6044
+ "output_required": true,
6042
6045
  "type": "string",
6043
6046
  "value_allowed_null": false
6044
6047
  },
@@ -6048,6 +6051,7 @@
6048
6051
  "example": "2020-07-31 14:28:51",
6049
6052
  "member": "datetime",
6050
6053
  "name": "StartTime",
6054
+ "output_required": true,
6051
6055
  "type": "string",
6052
6056
  "value_allowed_null": false
6053
6057
  },
@@ -6057,6 +6061,7 @@
6057
6061
  "example": "2020-07-31 15:10:27",
6058
6062
  "member": "datetime",
6059
6063
  "name": "EndTime",
6064
+ "output_required": true,
6060
6065
  "type": "string",
6061
6066
  "value_allowed_null": false
6062
6067
  },
@@ -6066,6 +6071,7 @@
6066
6071
  "example": "1356532",
6067
6072
  "member": "uint64",
6068
6073
  "name": "Size",
6074
+ "output_required": true,
6069
6075
  "type": "int",
6070
6076
  "value_allowed_null": false
6071
6077
  },
@@ -6075,6 +6081,7 @@
6075
6081
  "example": "0",
6076
6082
  "member": "int64",
6077
6083
  "name": "Strategy",
6084
+ "output_required": true,
6078
6085
  "type": "int",
6079
6086
  "value_allowed_null": false
6080
6087
  },
@@ -6084,6 +6091,7 @@
6084
6091
  "example": "1",
6085
6092
  "member": "int64",
6086
6093
  "name": "Status",
6094
+ "output_required": true,
6087
6095
  "type": "int",
6088
6096
  "value_allowed_null": false
6089
6097
  },
@@ -6093,6 +6101,7 @@
6093
6101
  "example": "0",
6094
6102
  "member": "int64",
6095
6103
  "name": "BackupWay",
6104
+ "output_required": true,
6096
6105
  "type": "int",
6097
6106
  "value_allowed_null": false
6098
6107
  },
@@ -6102,24 +6111,27 @@
6102
6111
  "example": "[\"db1\",\"db2\"]",
6103
6112
  "member": "string",
6104
6113
  "name": "DBs",
6114
+ "output_required": true,
6105
6115
  "type": "list",
6106
6116
  "value_allowed_null": false
6107
6117
  },
6108
6118
  {
6109
6119
  "disabled": false,
6110
6120
  "document": "内网下载地址,对于单库备份文件只返回第一条记录的内网下载地址;单库备份文件需要通过DescribeBackupFiles接口获取全部记录的下载地址",
6111
- "example": "https://cosback-appid.cos.ap-guangzhou.myqcloud.com/appid%2fsqlserver%2fmssql-mgq355n0%2fbackup%2fautoed_instance_58037_20200728011545.bak.tar?sign=q-sign-algorithm%3dsha1%26q-ak%3dAKIDpY8YnsLYAbq352rW0KaAnIeqrgJjE0ra%26q-sign-time%3d1596176966%3b1596177266%26q-key-time%3d1596176966%3b1596177266%26q-header-list%3d%26q-url-param-list%3d%26q-signature%3d3ea8139b631fa13d54b2c03313cbf3850d1e0c2c",
6121
+ "example": "https://cosback-appid.cos.ap-guangzhou.myqcloud.com/appid%2fsqlserver%2fmssql-mgq355n0%2fbackup%2fautoed_instance_58037_20200728011545.bak.tar?sign=q-sign-algorithm%3dsha1%26q-ak%3d*************************%3b1596177266%26q-key-time%3d1596176966%3b1596177266%26q-header-list%3d%26q-url-param-list%3d%26q-signature%3d3ea8139b631fa13d54b2c03313cbf3850d1e0c2c",
6112
6122
  "member": "string",
6113
6123
  "name": "InternalAddr",
6124
+ "output_required": true,
6114
6125
  "type": "string",
6115
6126
  "value_allowed_null": false
6116
6127
  },
6117
6128
  {
6118
6129
  "disabled": false,
6119
6130
  "document": "外网下载地址,对于单库备份文件只返回第一条记录的外网下载地址;单库备份文件需要通过DescribeBackupFiles接口获取全部记录的下载地址",
6120
- "example": "https://cosback-appid.cos.ap-guangzhou.myqcloud.com/appid%2fsqlserver%2fmssql-mgq355n0%2fbackup%2fautoed_instance_58037_20200728011545.bak.tar?sign=q-sign-algorithm%3dsha1%26q-ak%3dAKIDpY8YnsLYAbq352rW0KaAnIeqrgJjE0ra%26q-sign-time%3d1596176966%3b1596177266%26q-key-time%3d1596176966%3b1596177266%26q-header-list%3d%26q-url-param-list%3d%26q-signature%3d3ea8139b631fa13d54b2c03313cbf3850d1e0c2c",
6131
+ "example": "https://cosback-appid.cos.ap-guangzhou.myqcloud.com/appid%2fsqlserver%2fmssql-mgq355n0%2fbackup%2fautoed_instance_58037_20200728011545.bak.tar?sign=q-sign-algorithm%3dsha1%26q-ak%3d*************************%26q-sign-time%3d1596176966%3b1596177266%26q-key-time%3d1596176966%3b1596177266%26q-header-list%3d%26q-url-param-list%3d%26q-signature%3d3ea8139b631fa13d54b2c03313cbf3850d1e0c2c",
6121
6132
  "member": "string",
6122
6133
  "name": "ExternalAddr",
6134
+ "output_required": true,
6123
6135
  "type": "string",
6124
6136
  "value_allowed_null": false
6125
6137
  },
@@ -6129,6 +6141,7 @@
6129
6141
  "example": "558800",
6130
6142
  "member": "string",
6131
6143
  "name": "GroupId",
6144
+ "output_required": true,
6132
6145
  "type": "string",
6133
6146
  "value_allowed_null": false
6134
6147
  },
@@ -11203,7 +11216,7 @@
11203
11216
  {
11204
11217
  "disabled": false,
11205
11218
  "document": "临时密钥ID",
11206
- "example": "AKID44fDXXXXXXXXXXXXXXXXXXXXXXXXX",
11219
+ "example": "**************************",
11207
11220
  "member": "string",
11208
11221
  "name": "TmpSecretId",
11209
11222
  "output_required": true,
@@ -11213,7 +11226,7 @@
11213
11226
  {
11214
11227
  "disabled": false,
11215
11228
  "document": "临时密钥Key",
11216
- "example": "2jWOoltcvf21JIsNUaXXXXXXXXXXXXXXXXXXXXXXXXX",
11229
+ "example": "***************************************************************************",
11217
11230
  "member": "string",
11218
11231
  "name": "TmpSecretKey",
11219
11232
  "output_required": true,
@@ -11223,7 +11236,7 @@
11223
11236
  {
11224
11237
  "disabled": true,
11225
11238
  "document": "临时密钥Token",
11226
- "example": "J6nJk8Q30PaQwyvn4OF4oOezabX61kra1cf794342ff14c39705aa17584f81650YmAxWf4vkrV2ZK2Gcr_-kzjJ7a_fRRCeQtXd547VoWnmbJ2txpX6Kj_SywpVdS4c4sMrIn2aFir1nmTu--k_a9NDyykODaR2O3n-PP_k84qacwjb-XXXXXXXXXXXXXXXXXXXXXXXXX",
11239
+ "example": "**************************",
11227
11240
  "member": "string",
11228
11241
  "name": "XCosSecurityToken",
11229
11242
  "output_required": true,
@@ -11253,7 +11266,7 @@
11253
11266
  {
11254
11267
  "disabled": false,
11255
11268
  "document": "临时密钥Token",
11256
- "example": "J6nJk8Q30PaQwyvn4OF4oOezabX61kra1cf794342ff14c39705aa17584f81650YmAxWf4vkrV2ZK2Gcr_-kzjJ7a_fRRCeQtXd547VoWnmbJ2txpX6Kj_SywpVdS4c4sMrIn2aFir1nmTu--k_a9NDyykODaR2O3n-PP_k84qacwjb-XXXXXXXXXXXXXXXXXXXXXXXXX",
11269
+ "example": "********************************************************",
11257
11270
  "member": "string",
11258
11271
  "name": "CosSecurityToken",
11259
11272
  "output_required": false,
@@ -11338,7 +11351,7 @@
11338
11351
  {
11339
11352
  "disabled": false,
11340
11353
  "document": "临时密钥ID",
11341
- "example": "AKIDOxJelHkinofTdXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
11354
+ "example": "*************************",
11342
11355
  "member": "string",
11343
11356
  "name": "TmpSecretId",
11344
11357
  "output_required": true,
@@ -11348,7 +11361,7 @@
11348
11361
  {
11349
11362
  "disabled": false,
11350
11363
  "document": "临时密钥Key",
11351
- "example": "gzfh3Olpe5HKiviXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
11364
+ "example": "*************************",
11352
11365
  "member": "string",
11353
11366
  "name": "TmpSecretKey",
11354
11367
  "output_required": true,