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
@@ -70,6 +70,22 @@
70
70
  "title": "创建域名分组"
71
71
  }
72
72
  ],
73
+ "CreateLineGroup": [
74
+ {
75
+ "document": "添加自定义线路分组",
76
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateLineGroup\n<公共请求参数>\n\n{\n \"Domain\": \"dnspod.cn\",\n \"Name\": \"testgroup99\",\n \"Lines\": \"电信,移动\"\n}",
77
+ "output": "{\n \"Response\": {\n \"RequestId\": \"ab4f1426-ea15-42ea-8183-dc1b44151166\",\n \"Data\": {\n \"Id\": 10,\n \"Name\": \"testgroup99\",\n \"Lines\": [\n \"电信\",\n \"移动\"\n ]\n }\n }\n}",
78
+ "title": "添加自定义线路分组"
79
+ }
80
+ ],
81
+ "CreateLineGroupCopy": [
82
+ {
83
+ "document": "复制自定义线路分组",
84
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateLineGroupCopy\n<公共请求参数>\n\n{\n \"Domain\": \"dnspod.cn\",\n \"DomainIds\": \"1002\"\n}",
85
+ "output": "{\n \"Response\": {\n \"RequestId\": \"ab4f1426-ea15-42ea-8183-dc1b44151166\"\n }\n}",
86
+ "title": "复制自定义线路分组"
87
+ }
88
+ ],
73
89
  "CreateRecord": [
74
90
  {
75
91
  "document": " ",
@@ -102,6 +118,14 @@
102
118
  "title": "创建快照"
103
119
  }
104
120
  ],
121
+ "CreateTXTRecord": [
122
+ {
123
+ "document": "添加TXT记录",
124
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateTXTRecord\n<公共请求参数>\n\n{\n \"Domain\": \"1777.cn\",\n \"RecordLine\": \"默认\",\n \"Value\": \"43045375\",\n \"TTL\": 600,\n \"Status\": \"ENABLE\"\n}",
125
+ "output": "{\n \"Response\": {\n \"RecordId\": 16412959,\n \"RequestId\": \"5fc6eba2-3a28-41da-b3c6-70b8e55c447e\"\n }\n}",
126
+ "title": "添加TXT记录"
127
+ }
128
+ ],
105
129
  "DeleteDomain": [
106
130
  {
107
131
  "document": " ",
@@ -140,6 +164,14 @@
140
164
  "title": "删除域名的自定义线路"
141
165
  }
142
166
  ],
167
+ "DeleteLineGroup": [
168
+ {
169
+ "document": "删除自定义线路分组",
170
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteLineGroup\n<公共请求参数>\n\n{\n \"Domain\": \"dnspod.cn\",\n \"LineGroupId\": 10\n}",
171
+ "output": "{\n \"Response\": {\n \"RequestId\": \"ab4f1426-ea15-42ea-8183-dc1b44151166\"\n }\n}",
172
+ "title": "删除自定义线路分组"
173
+ }
174
+ ],
143
175
  "DeleteRecord": [
144
176
  {
145
177
  "document": " ",
@@ -292,6 +324,14 @@
292
324
  "title": "获取域名Whois信息"
293
325
  }
294
326
  ],
327
+ "DescribeLineGroupList": [
328
+ {
329
+ "document": "获取域名的自定义线路分组列表",
330
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeLineGroupList\n<公共请求参数>\n\n{\n \"Domain\": \"dnspod.cn\",\n \"Offset\": 0,\n \"Length\": 20,\n \"SortType\": \"desc\"\n}",
331
+ "output": "{\n \"Response\": {\n \"RequestId\": \"ab4f1426-ea15-42ea-8183-dc1b44151166\",\n \"LineGroups\": [\n {\n \"Id\": 9,\n \"DomainId\": 1005,\n \"Name\": \"group06\",\n \"Lines\": [\n \"必应\"\n ],\n \"CreatedOn\": \"2021-11-18 16:45:15\",\n \"UpdatedOn\": \"2021-11-19 10:55:13\"\n },\n {\n \"Id\": 8,\n \"DomainId\": 1005,\n \"Name\": \"group04\",\n \"Lines\": [\n \"搜索引擎\"\n ],\n \"CreatedOn\": \"2021-11-18 16:43:36\",\n \"UpdatedOn\": \"2021-11-18 16:43:36\"\n },\n {\n \"Id\": 7,\n \"DomainId\": 1005,\n \"Name\": \"group03\",\n \"Lines\": [\n \"联通\",\n \"教育网\"\n ],\n \"CreatedOn\": \"2021-11-18 16:42:36\",\n \"UpdatedOn\": \"2021-11-18 16:42:36\"\n },\n {\n \"Id\": 6,\n \"DomainId\": 1005,\n \"Name\": \"group02\",\n \"Lines\": [\n \"电信\",\n \"移动\"\n ],\n \"CreatedOn\": \"2021-11-18 16:42:05\",\n \"UpdatedOn\": \"2021-11-18 16:42:05\"\n },\n {\n \"Id\": 5,\n \"DomainId\": 1005,\n \"Name\": \"group01\",\n \"Lines\": [\n \"百度\",\n \"谷歌\"\n ],\n \"CreatedOn\": \"2021-11-18 16:41:19\",\n \"UpdatedOn\": \"2021-11-18 16:41:19\"\n }\n ],\n \"Info\": {\n \"NowTotal\": 5,\n \"Total\": 5,\n \"AvailableCount\": 0\n }\n }\n}",
332
+ "title": "获取域名的自定义线路分组列表"
333
+ }
334
+ ],
295
335
  "DescribePackageDetail": [
296
336
  {
297
337
  "document": "获取各套餐配置详情",
@@ -506,6 +546,14 @@
506
546
  "title": "更新动态 DNS 记录"
507
547
  }
508
548
  ],
549
+ "ModifyLineGroup": [
550
+ {
551
+ "document": "修改自定义线路分组",
552
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyLineGroup\n<公共请求参数>\n\n{\n \"Domain\": \"dnspod.cn\",\n \"Name\": \"testgroup99\",\n \"Lines\": \"电信,移动\",\n \"LineGroupId\": 10\n}",
553
+ "output": "{\n \"Response\": {\n \"RequestId\": \"ab4f1426-ea15-42ea-8183-dc1b44151166\"\n }\n}",
554
+ "title": "修改自定义线路分组"
555
+ }
556
+ ],
509
557
  "ModifyPackageAutoRenew": [
510
558
  {
511
559
  "document": " ",
@@ -598,6 +646,20 @@
598
646
  "title": "暂停www子域名A/TXT/CNAME类型的解析记录"
599
647
  }
600
648
  ],
649
+ "ModifyTXTRecord": [
650
+ {
651
+ "document": "成功修改TXT记录",
652
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyTXTRecord\n<公共请求参数>\n\n{\n \"Domain\": \"1777.cn\",\n \"RecordLine\": \"默认\",\n \"Value\": \"test for txt record\",\n \"RecordId\": 16412960,\n \"SubDomain\": \"www\",\n \"TTL\": 600,\n \"Status\": \"ENABLE\"\n}",
653
+ "output": "{\n \"Response\": {\n \"RecordId\": 16412960,\n \"RequestId\": \"2e55974f-37b6-431e-891a-038de497f839\"\n }\n}",
654
+ "title": "修改TXT记录"
655
+ },
656
+ {
657
+ "document": "修改其他类型的记录时报错",
658
+ "input": "POST / HTTP/1.1\nHost: dnspod.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyTXTRecord\n<公共请求参数>\n\n{\n \"Domain\": \"1777.cn\",\n \"RecordLine\": \"电信\",\n \"Value\": \"3495743\",\n \"RecordId\": 16412961,\n \"SubDomain\": \"yyy\",\n \"TTL\": 600,\n \"Status\": \"ENABLE\",\n \"Remark\": \"这是备注\"\n}",
659
+ "output": "{\n \"Response\": {\n \"Error\": {\n \"Code\": \"InvalidParameter.RecordIdInvalid\",\n \"Message\": \"记录编号错误。\"\n },\n \"RequestId\": \"afdeaa85-02b3-41e2-88c0-66fc001aea71\"\n }\n}",
660
+ "title": "修改非TXT记录"
661
+ }
662
+ ],
601
663
  "ModifyVasAutoRenewStatus": [
602
664
  {
603
665
  "document": " ",
@@ -4886,7 +4886,7 @@
4886
4886
  {
4887
4887
  "disabled": false,
4888
4888
  "document": "模板ID",
4889
- "example": "字符串",
4889
+ "example": "temp-xxxxdowf",
4890
4890
  "member": "string",
4891
4891
  "name": "TemplateId",
4892
4892
  "required": true,
@@ -4904,7 +4904,7 @@
4904
4904
  "example": "无",
4905
4905
  "member": "TemplateInfo",
4906
4906
  "name": "Template",
4907
- "required": true,
4907
+ "output_required": true,
4908
4908
  "type": "object",
4909
4909
  "value_allowed_null": false
4910
4910
  },
@@ -6105,7 +6105,7 @@
6105
6105
  {
6106
6106
  "disabled": false,
6107
6107
  "document": "资质照片,照片的base64编码。",
6108
- "example": "照片的base64编码",
6108
+ "example": "54Wn54mH55qEYmFzZTY057yW56CB",
6109
6109
  "member": "string",
6110
6110
  "name": "ImageFile",
6111
6111
  "required": true,
@@ -148,7 +148,7 @@
148
148
  {
149
149
  "document": "",
150
150
  "input": "https://domain.tencentcloudapi.com/?Action=DescribeBatchOperationLogs\n&Offset=1\n&Limit=20\n&<公共请求参数>",
151
- "output": "{\n \"Response\": {\n \"TotalCount\": 0,\n \"DomainBatchLogSet\": [\n {\n \"LogId\": 0,\n \"Number\": 0,\n \"Status\": \"abc\",\n \"CreatedOn\": \"abc\",\n \"Success\": 0,\n \"Doing\": 0,\n \"Failed\": 0\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
151
+ "output": "{\n \"Response\": {\n \"TotalCount\": 0,\n \"DomainBatchLogSet\": [\n {\n \"LogId\": 10001,\n \"Number\": 1,\n \"Status\": \"doing\",\n \"CreatedOn\": \"2023-01-01 20:30:00\",\n \"Success\": 0,\n \"Doing\": 0,\n \"Failed\": 0\n }\n ],\n \"RequestId\": \"xxxx-xxx-xxx-xxxx\"\n }\n}",
152
152
  "title": "批量操作日志"
153
153
  }
154
154
  ],
@@ -314,7 +314,7 @@
314
314
  {
315
315
  "document": "信息模板列表",
316
316
  "input": "https://domain.tencentcloudapi.com/?Action=DescribeTemplateList\n&Offset=0\n&Limit=20\n&Status=InAudit\n&Type=E\n&Keyword=abc\n&<公共请求参数>",
317
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"TemplateSet\": [\n {\n \"TemplateId\": \"abc\",\n \"AuditStatus\": \"abc\",\n \"CreatedOn\": \"abc\",\n \"UpdatedOn\": \"abc\",\n \"UserUin\": \"abc\",\n \"IsDefault\": \"abc\",\n \"AuditReason\": \"abc\",\n \"CertificateInfo\": {\n \"CertificateCode\": \"abc\",\n \"CertificateType\": \"abc\",\n \"ImgUrl\": \"abc\",\n \"OriginImgUrl\": \"abc\",\n \"RegistrantCertificateCode\": \"abc\",\n \"RegistrantCertificateType\": \"abc\",\n \"RegistrantImgUrl\": \"abc\"\n },\n \"ContactInfo\": {\n \"OrganizationNameCN\": \"abc\",\n \"OrganizationName\": \"abc\",\n \"RegistrantNameCN\": \"abc\",\n \"RegistrantName\": \"abc\",\n \"ProvinceCN\": \"abc\",\n \"Province\": \"abc\",\n \"CityCN\": \"abc\",\n \"City\": \"abc\",\n \"StreetCN\": \"abc\",\n \"Street\": \"abc\",\n \"CountryCN\": \"abc\",\n \"Country\": \"abc\",\n \"Telephone\": \"abc\",\n \"Email\": \"abc\",\n \"ZipCode\": \"abc\",\n \"RegistrantType\": \"abc\"\n },\n \"IsValidTemplate\": 0,\n \"InvalidReason\": \"abc\",\n \"IsBlack\": true\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
317
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"TemplateSet\": [\n {\n \"AuditReason\": \"\",\n \"ContactInfo\": {\n \"Province\": \"hu nan sheng\",\n \"RegistrantType\": \"I\",\n \"OrganizationName\": \"ce shi\",\n \"OrganizationNameCN\": \"测试\",\n \"Country\": \"CN\",\n \"RegistrantName\": \"ce shi\",\n \"ZipCode\": \"425000\",\n \"Telephone\": \"155*********\",\n \"City\": \"ce shi\",\n \"RegistrantNameCN\": \"测试\",\n \"StreetCN\": \"咸嘉湖街道\",\n \"Street\": \"xian jia hu jie dao\",\n \"ProvinceCN\": \"湖南省\",\n \"CityCN\": \"长沙市\",\n \"CountryCN\": \"中国\",\n \"Email\": \"dnspod@dnspod.com\"\n },\n \"UpdatedOn\": \"2020-07-28 13:33:55\",\n \"AuditStatus\": \"InAudit\",\n \"IsBlack\": false,\n \"CreatedOn\": \"2020-07-28 12:50:23\",\n \"UserUin\": \"12334********\",\n \"IsDefault\": \"no\",\n \"TemplateId\": \"tmpl-dgmgwpe2\",\n \"InvalidReason\": \"\",\n \"IsValidTemplate\": 1,\n \"CertificateInfo\": {\n \"CertificateType\": \"SFZ\",\n \"CertificateCode\": \"12345679\",\n \"ImgUrl\": \"https://image.com/******\",\n \"OriginImgUrl\": \"https://tencentyun.com/******\",\n \"RegistrantCertificateCode\": \"12345679\",\n \"RegistrantCertificateType\": \"SFZ\",\n \"RegistrantImgUrl\": \"https://image.com/******\"\n }\n }\n ],\n \"RequestId\": \"skdwd-eoffew-dwdwq-dwdw\"\n }\n}",
318
318
  "title": "信息模板列表"
319
319
  }
320
320
  ],
@@ -370,7 +370,7 @@
370
370
  {
371
371
  "document": "",
372
372
  "input": "https://domain.tencentcloudapi.com/?Action=ModifyTemplate\n&TemplateId=字符串\n&CertificateInfo.CertificateCode=字符串\n&CertificateInfo.CertificateType=字符串\n&CertificateInfo.ImgUrl=字符串\n&ContactInfo.OrganizationNameCN=字符串\n&ContactInfo.OrganizationName=字符串\n&ContactInfo.RegistrantNameCN=字符串\n&ContactInfo.RegistrantName=字符串\n&ContactInfo.ProvinceCN=字符串\n&ContactInfo.Province=字符串\n&ContactInfo.CityCN=字符串\n&ContactInfo.City=字符串\n&ContactInfo.StreetCN=字符串\n&ContactInfo.Street=字符串\n&ContactInfo.CountryCN=字符串\n&ContactInfo.Country=字符串\n&ContactInfo.Telephone=字符串\n&ContactInfo.Email=字符串\n&ContactInfo.ZipCode=字符串\n&ContactInfo.RegistrantType=字符串\n&<公共请求参数>",
373
- "output": "{\n \"Response\": {\n \"RequestId\": \"c9308288-2016-4197-bba1-baf0a9ea0a6f\",\n \"Template\": {\n \"AuditReason\": \"\",\n \"IsValidTemplate\": 1,\n \"UpdatedOn\": \"2020-07-30 16:44:04\",\n \"AuditStatus\": \"InAudit\",\n \"CreatedOn\": \"2020-07-30 16:44:04\",\n \"InvalidReason\": \"\",\n \"CertificateInfo\": {\n \"CertificateType\": \"YYZZ\",\n \"CertificateCode\": \"441900000553075\",\n \"ImgUrl\": \"https://wss-10039692.cos.ap-shanghai.myqcloudXj\"\n },\n \"TemplateId\": \"tmpl-3mm9fxug\",\n \"UserUin\": \"1213059621\",\n \"ContactInfo\": {\n \"Province\": \"shen zhen shi\",\n \"RegistrantType\": \"E\",\n \"OrganizationName\": \"niubihonghong\",\n \"OrganizationNameCN\": \"牛逼哄哄\",\n \"Country\": \"CN\",\n \"RegistrantName\": \"niubihonghong\",\n \"ZipCode\": \"100011\",\n \"Email\": \"1213059621@qq.com\",\n \"City\": \"nan shan qu\",\n \"RegistrantNameCN\": \"牛逼哄哄\",\n \"StreetCN\": \"万利达大厦\",\n \"Street\": \"wanlidadasha\",\n \"ProvinceCN\": \"深圳市\",\n \"CountryCN\": \"中国\",\n \"CityCN\": \"南山区\",\n \"Telephone\": \"13600147752\"\n },\n \"IsDefault\": \"no\"\n }\n }\n}",
373
+ "output": "{\n \"Response\": {\n \"RequestId\": \"c9308288-2016-4197-bba1-baf0a9ea0a6f\",\n \"Template\": {\n \"IsBlack\": false,\n \"AuditReason\": \"\",\n \"IsValidTemplate\": 1,\n \"UpdatedOn\": \"2020-07-30 16:44:04\",\n \"AuditStatus\": \"InAudit\",\n \"CreatedOn\": \"2020-07-30 16:44:04\",\n \"InvalidReason\": \"\",\n \"CertificateInfo\": {\n \"CertificateType\": \"YYZZ\",\n \"CertificateCode\": \"44190****075\",\n \"ImgUrl\": \"https://xyz.cos.ap-shanghai.myqcloud/mkdiwe.jpeg\",\n \"OriginImgUrl\": \"https://xyz.cos.ap-shanghai.myqcloud/mkdiwe.jpeg\",\n \"RegistrantCertificateType\": \"\",\n \"RegistrantCertificateCode\": \"\",\n \"RegistrantImgUrl\": \"\"\n },\n \"TemplateId\": \"tmpl-3mm9fxug\",\n \"UserUin\": \"1213059621\",\n \"ContactInfo\": {\n \"Province\": \"shen zhen shi\",\n \"RegistrantType\": \"E\",\n \"OrganizationName\": \"qiyeming\",\n \"OrganizationNameCN\": \"企业名\",\n \"Country\": \"CN\",\n \"RegistrantName\": \"qiyeming\",\n \"ZipCode\": \"100011\",\n \"Email\": \"121****@qq.com\",\n \"City\": \"nan shan qu\",\n \"RegistrantNameCN\": \"企业名\",\n \"StreetCN\": \"万利达大厦\",\n \"Street\": \"wanlidadasha\",\n \"ProvinceCN\": \"深圳市\",\n \"CountryCN\": \"中国\",\n \"CityCN\": \"南山区\",\n \"Telephone\": \"13****52\"\n },\n \"IsDefault\": \"no\"\n }\n }\n}",
374
374
  "title": "修改模板"
375
375
  }
376
376
  ],
@@ -2593,7 +2593,7 @@
2593
2593
  {
2594
2594
  "disabled": false,
2595
2595
  "document": "临时密钥Id,可通过申请扮演角色临时访问凭证获取临时密钥https://cloud.tencent.com/document/product/1312/48197,其中角色资源RoleArn的定义可参考DTS跨账号迁移文档(https://cloud.tencent.com/document/product/571/54117)第4节中关于角色的定义。\n注意:此字段可能返回 null,表示取不到有效值。",
2596
- "example": "AKID5XXXXX",
2596
+ "example": "AKIDXXXXXX",
2597
2597
  "member": "string",
2598
2598
  "name": "TmpSecretId",
2599
2599
  "output_required": true,
@@ -3624,7 +3624,7 @@
3624
3624
  {
3625
3625
  "disabled": false,
3626
3626
  "document": "临时密钥Id,可通过申请扮演角色临时访问凭证获取临时密钥https://cloud.tencent.com/document/product/1312/48197,其中角色资源RoleArn的定义可参考DTS跨账号迁移文档(https://cloud.tencent.com/document/product/571/54117)第4节中关于角色的定义。",
3627
- "example": "AKIDJXXXXX",
3627
+ "example": "AKIDXXXXXX",
3628
3628
  "member": "string",
3629
3629
  "name": "TmpSecretId",
3630
3630
  "required": false,
@@ -3633,7 +3633,7 @@
3633
3633
  {
3634
3634
  "disabled": false,
3635
3635
  "document": "临时密钥Id,可通过申请扮演角色临时访问凭证获取临时密钥https://cloud.tencent.com/document/product/1312/48197,其中角色资源RoleArn的定义可参考DTS跨账号迁移文档(https://cloud.tencent.com/document/product/571/54117)第4节中关于角色的定义。",
3636
- "example": "vobJwXXXXX",
3636
+ "example": "vobJXXXXXX",
3637
3637
  "member": "string",
3638
3638
  "name": "TmpSecretKey",
3639
3639
  "required": false,
@@ -3642,7 +3642,7 @@
3642
3642
  {
3643
3643
  "disabled": false,
3644
3644
  "document": "临时密钥Id,可通过申请扮演角色临时访问凭证获取临时密钥https://cloud.tencent.com/document/product/1312/48197,其中角色资源RoleArn的定义可参考DTS跨账号迁移文档(https://cloud.tencent.com/document/product/571/54117)第4节中关于角色的定义。",
3645
- "example": "MvIVqXXXXX",
3645
+ "example": "MvIVXXXXXX",
3646
3646
  "member": "string",
3647
3647
  "name": "TmpToken",
3648
3648
  "required": false,
@@ -698,7 +698,7 @@
698
698
  "members": [
699
699
  {
700
700
  "disabled": false,
701
- "document": "事件集名称,只能包含字母、数字、下划线、连字符,以字母开头,以数字或字母结尾,2~60个字符",
701
+ "document": "事件集名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符",
702
702
  "example": "EventBusName",
703
703
  "member": "string",
704
704
  "name": "EventBusName",
@@ -707,7 +707,7 @@
707
707
  },
708
708
  {
709
709
  "disabled": false,
710
- "document": "事件集描述,不限字符类型,200字符描述以内",
710
+ "document": "事件集描述,只能包含数字、中英文及常用标点符号,不超过200个字符",
711
711
  "example": "这是一个描述",
712
712
  "member": "string",
713
713
  "name": "Description",
@@ -771,7 +771,7 @@
771
771
  },
772
772
  {
773
773
  "disabled": false,
774
- "document": "事件集ID",
774
+ "document": "事件集ID",
775
775
  "example": "eb-xxxxxxxx",
776
776
  "member": "string",
777
777
  "name": "EventBusId",
@@ -780,7 +780,7 @@
780
780
  },
781
781
  {
782
782
  "disabled": false,
783
- "document": "事件集名称,只能包含字母、数字、下划线、连字符,以字母开头,以数字或字母结尾,2~60个字符",
783
+ "document": "事件集名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符",
784
784
  "example": "rule",
785
785
  "member": "string",
786
786
  "name": "RuleName",
@@ -798,7 +798,7 @@
798
798
  },
799
799
  {
800
800
  "disabled": false,
801
- "document": "事件集描述,不限字符类型,200字符描述以内",
801
+ "document": "事件集描述,只能包含数字、中英文及常用标点符号,不超过200个字符",
802
802
  "example": "这是一个描述",
803
803
  "member": "string",
804
804
  "name": "Description",
@@ -817,7 +817,7 @@
817
817
  "example": "rule-xxxxxxxx",
818
818
  "member": "string",
819
819
  "name": "RuleId",
820
- "required": true,
820
+ "output_required": true,
821
821
  "type": "string",
822
822
  "value_allowed_null": false
823
823
  },
@@ -2342,19 +2342,19 @@
2342
2342
  },
2343
2343
  {
2344
2344
  "disabled": false,
2345
- "document": "根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间)",
2346
- "example": "ModTime",
2345
+ "document": "事件规则ID",
2346
+ "example": "rule-xxxxxxxx",
2347
2347
  "member": "string",
2348
- "name": "OrderBy",
2349
- "required": false,
2348
+ "name": "RuleId",
2349
+ "required": true,
2350
2350
  "type": "string"
2351
2351
  },
2352
2352
  {
2353
2353
  "disabled": false,
2354
- "document": "事件规则ID",
2355
- "example": "rule-xxxxxxxx",
2354
+ "document": "根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间)",
2355
+ "example": "ModTime",
2356
2356
  "member": "string",
2357
- "name": "RuleId",
2357
+ "name": "OrderBy",
2358
2358
  "required": false,
2359
2359
  "type": "string"
2360
2360
  },
@@ -3548,7 +3548,7 @@
3548
3548
  },
3549
3549
  {
3550
3550
  "disabled": false,
3551
- "document": "规则描述,不限字符类型,200字符描述以内。",
3551
+ "document": "规则描述,只能包含数字、中英文及常用标点符号,不超过200个字符",
3552
3552
  "example": "这是一个描述",
3553
3553
  "member": "string",
3554
3554
  "name": "Description",
@@ -3566,7 +3566,7 @@
3566
3566
  },
3567
3567
  {
3568
3568
  "disabled": false,
3569
- "document": "事件规则名称,只能包含字母、数字、下划线、连字符,以字母开头,以数字或字母结尾,2~60个字符",
3569
+ "document": "事件规则名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符",
3570
3570
  "example": "rule",
3571
3571
  "member": "string",
3572
3572
  "name": "RuleName",
@@ -249,7 +249,7 @@
249
249
  "UpdateTarget": [
250
250
  {
251
251
  "document": "",
252
- "input": "POST / HTTP/1.1\nHost: eb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateTarget\n<公共请求参数>\n\n{\n \"EnableBatchDelivery\": \"true\",\n \"RuleId\": \"rule-51wvf3is\",\n \"BatchEventCount\": \"32\",\n \"TargetId\": \"target-ceh92ss4\",\n \"EventBusId\": \"eb-ohb9x6rg\",\n \"BatchTimeout\": \"43\"\n}",
252
+ "input": "POST / HTTP/1.1\nHost: eb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateTarget\n<公共请求参数>\n\n{\n \"EnableBatchDelivery\": true,\n \"RuleId\": \"rule-51wvf3is\",\n \"BatchEventCount\": 32,\n \"TargetId\": \"target-ceh92ss4\",\n \"EventBusId\": \"eb-ohb9x6rg\",\n \"BatchTimeout\": 43\n}",
253
253
  "output": "{\n \"Response\": {\n \"RequestId\": \"72b987c9-8842-47ac-9ad6-fa2bde3e936d\"\n }\n}",
254
254
  "title": "更新目标"
255
255
  }
@@ -2832,7 +2832,7 @@
2832
2832
  },
2833
2833
  {
2834
2834
  "disabled": false,
2835
- "document": "在购买IPV6负载均衡实例的情况下,必须指定子网 ID, 此参数必填。",
2835
+ "document": "在购买IPV6负载均衡实例的情况下,必须指定子网 ID, 此参数必填;IPv4实例不支持该参数。",
2836
2836
  "example": "subnet-dva8****",
2837
2837
  "member": "string",
2838
2838
  "name": "SubnetId",
@@ -2851,7 +2851,7 @@
2851
2851
  "example": "[\"lb-mov2697v\"]",
2852
2852
  "member": "string",
2853
2853
  "name": "LoadBalancerIds",
2854
- "required": true,
2854
+ "output_required": true,
2855
2855
  "type": "list",
2856
2856
  "value_allowed_null": true
2857
2857
  },