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
@@ -49,162 +49,162 @@
49
49
  {
50
50
  "disabled": false,
51
51
  "document": "实例ID",
52
- "example": "",
52
+ "example": "cds-21qwsd",
53
53
  "member": "string",
54
54
  "name": "InstanceId",
55
- "required": true,
55
+ "output_required": true,
56
56
  "type": "string",
57
57
  "value_allowed_null": false
58
58
  },
59
59
  {
60
60
  "disabled": false,
61
61
  "document": "用户AppId",
62
- "example": "",
62
+ "example": "128494984",
63
63
  "member": "string",
64
64
  "name": "AppId",
65
- "required": true,
65
+ "output_required": true,
66
66
  "type": "string",
67
67
  "value_allowed_null": false
68
68
  },
69
69
  {
70
70
  "disabled": false,
71
71
  "document": "用户Uin",
72
- "example": "",
72
+ "example": "1000432456",
73
73
  "member": "string",
74
74
  "name": "Uin",
75
- "required": true,
75
+ "output_required": true,
76
76
  "type": "string",
77
77
  "value_allowed_null": false
78
78
  },
79
79
  {
80
80
  "disabled": false,
81
81
  "document": "项目ID",
82
- "example": "",
82
+ "example": "1",
83
83
  "member": "uint64",
84
84
  "name": "ProjectId",
85
- "required": true,
85
+ "output_required": true,
86
86
  "type": "int",
87
87
  "value_allowed_null": false
88
88
  },
89
89
  {
90
90
  "disabled": false,
91
91
  "document": "续费标识",
92
- "example": "",
92
+ "example": "1",
93
93
  "member": "uint64",
94
94
  "name": "RenewFlag",
95
- "required": true,
95
+ "output_required": true,
96
96
  "type": "int",
97
97
  "value_allowed_null": false
98
98
  },
99
99
  {
100
100
  "disabled": false,
101
101
  "document": "所属地域",
102
- "example": "",
102
+ "example": "ap-guangzhou",
103
103
  "member": "string",
104
104
  "name": "Region",
105
- "required": true,
105
+ "output_required": true,
106
106
  "type": "string",
107
107
  "value_allowed_null": false
108
108
  },
109
109
  {
110
110
  "disabled": false,
111
111
  "document": "付费模式(数据安全审计只支持预付费:1)",
112
- "example": "",
112
+ "example": "1",
113
113
  "member": "uint64",
114
114
  "name": "PayMode",
115
- "required": true,
115
+ "output_required": true,
116
116
  "type": "int",
117
117
  "value_allowed_null": false
118
118
  },
119
119
  {
120
120
  "disabled": false,
121
121
  "document": "实例状态: 0,未生效;1:正常运行; 2:被隔离; 3,已过期",
122
- "example": "",
122
+ "example": "1",
123
123
  "member": "uint64",
124
124
  "name": "Status",
125
- "required": true,
125
+ "output_required": true,
126
126
  "type": "int",
127
127
  "value_allowed_null": false
128
128
  },
129
129
  {
130
130
  "disabled": false,
131
131
  "document": "实例被隔离时间,格式:yyyy-mm-dd HH:ii:ss",
132
- "example": "",
132
+ "example": "2023-12-12 12:12:12",
133
133
  "member": "string",
134
134
  "name": "IsolatedTimestamp",
135
- "required": true,
135
+ "output_required": true,
136
136
  "type": "string",
137
137
  "value_allowed_null": false
138
138
  },
139
139
  {
140
140
  "disabled": false,
141
141
  "document": "实例创建时间,格式: yyyy-mm-dd HH:ii:ss",
142
- "example": "",
142
+ "example": "2020-12-12 12:12:12",
143
143
  "member": "string",
144
144
  "name": "CreateTime",
145
- "required": true,
145
+ "output_required": true,
146
146
  "type": "string",
147
147
  "value_allowed_null": false
148
148
  },
149
149
  {
150
150
  "disabled": false,
151
151
  "document": "实例过期时间,格式:yyyy-mm-dd HH:ii:ss",
152
- "example": "",
152
+ "example": "2023-12-12 12:12:12",
153
153
  "member": "string",
154
154
  "name": "ExpireTime",
155
- "required": true,
155
+ "output_required": true,
156
156
  "type": "string",
157
157
  "value_allowed_null": false
158
158
  },
159
159
  {
160
160
  "disabled": false,
161
- "document": "实例名称\n注意:此字段可能返回 null,表示取不到有效值。",
162
- "example": "",
161
+ "document": "实例名称",
162
+ "example": "测试数审",
163
163
  "member": "string",
164
164
  "name": "InstanceName",
165
- "required": true,
165
+ "output_required": false,
166
166
  "type": "string",
167
- "value_allowed_null": true
167
+ "value_allowed_null": false
168
168
  },
169
169
  {
170
170
  "disabled": false,
171
- "document": "实例公网IP\n注意:此字段可能返回 null,表示取不到有效值。",
172
- "example": "",
171
+ "document": "实例公网IP",
172
+ "example": "127.0.0.1",
173
173
  "member": "string",
174
174
  "name": "PublicIp",
175
- "required": true,
175
+ "output_required": false,
176
176
  "type": "string",
177
- "value_allowed_null": true
177
+ "value_allowed_null": false
178
178
  },
179
179
  {
180
180
  "disabled": false,
181
- "document": "实例私网IP\n注意:此字段可能返回 null,表示取不到有效值。",
182
- "example": "",
181
+ "document": "实例私网IP",
182
+ "example": "127.0.0.1",
183
183
  "member": "string",
184
184
  "name": "PrivateIp",
185
- "required": true,
185
+ "output_required": false,
186
186
  "type": "string",
187
- "value_allowed_null": true
187
+ "value_allowed_null": false
188
188
  },
189
189
  {
190
190
  "disabled": false,
191
191
  "document": "实例类型(版本)",
192
- "example": "",
192
+ "example": "cds",
193
193
  "member": "string",
194
194
  "name": "InstanceType",
195
- "required": true,
195
+ "output_required": true,
196
196
  "type": "string",
197
197
  "value_allowed_null": false
198
198
  },
199
199
  {
200
200
  "disabled": false,
201
- "document": "实例域名\n注意:此字段可能返回 null,表示取不到有效值。",
202
- "example": "",
201
+ "document": "实例域名",
202
+ "example": "www.pdomain.com",
203
203
  "member": "string",
204
204
  "name": "Pdomain",
205
- "required": true,
205
+ "output_required": false,
206
206
  "type": "string",
207
- "value_allowed_null": true
207
+ "value_allowed_null": false
208
208
  }
209
209
  ],
210
210
  "usage": "out"
@@ -215,70 +215,70 @@
215
215
  {
216
216
  "disabled": false,
217
217
  "document": "规格描述",
218
- "example": "",
218
+ "example": "吞吐量:3000条SQL/秒,支持审计组:3个,入库速率:1千万/小时,在线存储量:300亿SQL语句",
219
219
  "member": "string",
220
220
  "name": "InstanceVersionName",
221
- "required": true,
221
+ "output_required": true,
222
222
  "type": "string",
223
223
  "value_allowed_null": false
224
224
  },
225
225
  {
226
226
  "disabled": false,
227
227
  "document": "规格名称",
228
- "example": "",
228
+ "example": "合规版",
229
229
  "member": "string",
230
230
  "name": "InstanceVersionKey",
231
- "required": true,
231
+ "output_required": true,
232
232
  "type": "string",
233
233
  "value_allowed_null": false
234
234
  },
235
235
  {
236
236
  "disabled": false,
237
237
  "document": "最大吞吐量",
238
- "example": "",
238
+ "example": "3000",
239
239
  "member": "uint64",
240
240
  "name": "Qps",
241
- "required": true,
241
+ "output_required": true,
242
242
  "type": "int",
243
243
  "value_allowed_null": false
244
244
  },
245
245
  {
246
246
  "disabled": false,
247
247
  "document": "最大实例数",
248
- "example": "",
248
+ "example": "3",
249
249
  "member": "uint64",
250
250
  "name": "MaxInstances",
251
- "required": true,
251
+ "output_required": true,
252
252
  "type": "int",
253
253
  "value_allowed_null": false
254
254
  },
255
255
  {
256
256
  "disabled": false,
257
257
  "document": "入库速率(每小时)",
258
- "example": "",
258
+ "example": "10000000",
259
259
  "member": "uint64",
260
260
  "name": "InsertSpeed",
261
- "required": true,
261
+ "output_required": true,
262
262
  "type": "int",
263
263
  "value_allowed_null": false
264
264
  },
265
265
  {
266
266
  "disabled": false,
267
267
  "document": "最大在线存储量,单位:条",
268
- "example": "",
268
+ "example": "30000000000",
269
269
  "member": "uint64",
270
270
  "name": "OnlineStorageCapacity",
271
- "required": true,
271
+ "output_required": true,
272
272
  "type": "int",
273
273
  "value_allowed_null": false
274
274
  },
275
275
  {
276
276
  "disabled": false,
277
277
  "document": "最大归档存储量,单位:条",
278
- "example": "",
278
+ "example": "30000000000",
279
279
  "member": "uint64",
280
280
  "name": "ArchivingStorageCapacity",
281
- "required": true,
281
+ "output_required": true,
282
282
  "type": "int",
283
283
  "value_allowed_null": false
284
284
  }
@@ -296,9 +296,10 @@
296
296
  {
297
297
  "disabled": false,
298
298
  "document": "数据安全审计产品规格信息列表",
299
- "example": "",
299
+ "example": "[{ \"InstanceVersionName\": \"V509\", \"InstanceVersionKey\": \"VKey\", \"Qps\": 0, \"MaxInstances\": 0, \"InsertSpeed\": 0, \"OnlineStorageCapacity\": 0, \"ArchivingStorageCapacity\": 0 }]",
300
300
  "member": "DbauditTypesInfo",
301
301
  "name": "DbauditTypesSet",
302
+ "output_required": true,
302
303
  "type": "list",
303
304
  "value_allowed_null": false
304
305
  },
@@ -317,7 +318,7 @@
317
318
  {
318
319
  "disabled": false,
319
320
  "document": "查询条件地域",
320
- "example": "",
321
+ "example": "ap-guangzhou",
321
322
  "member": "string",
322
323
  "name": "SearchRegion",
323
324
  "required": false,
@@ -326,7 +327,7 @@
326
327
  {
327
328
  "disabled": false,
328
329
  "document": "限制数目,默认10, 最大50",
329
- "example": "",
330
+ "example": "100",
330
331
  "member": "uint64",
331
332
  "name": "Limit",
332
333
  "required": false,
@@ -335,7 +336,7 @@
335
336
  {
336
337
  "disabled": false,
337
338
  "document": "偏移量,默认1",
338
- "example": "",
339
+ "example": "0",
339
340
  "member": "uint64",
340
341
  "name": "Offset",
341
342
  "required": false,
@@ -350,18 +351,20 @@
350
351
  {
351
352
  "disabled": false,
352
353
  "document": "总实例数",
353
- "example": "",
354
+ "example": "10",
354
355
  "member": "uint64",
355
356
  "name": "TotalCount",
357
+ "output_required": true,
356
358
  "type": "int",
357
359
  "value_allowed_null": false
358
360
  },
359
361
  {
360
362
  "disabled": false,
361
363
  "document": "数据安全审计实例信息列表",
362
- "example": "",
364
+ "example": "[{ \"InstanceId\": \"ins-f784fkre\", \"AppId\": \"13676727\", \"Uin\": \"100006767342\", \"ProjectId\": 0, \"RenewFlag\": 0, \"Region\": \"ap-guangzhou\", \"PayMode\": 0, \"Status\": 0, \"IsolatedTimestamp\": \"1730451618\", \"CreateTime\": \"1730451618\", \"ExpireTime\": \"1730451618\", \"InstanceName\": \"测试实例\", \"PublicIp\": \"127.0.0.1\", \"PrivateIp\": \"127.0.0.1\", \"InstanceType\": \"5.0.9\", \"Pdomain\": \"www.Pdomain.com\" }]",
363
365
  "member": "CdsAuditInstance",
364
366
  "name": "CdsAuditInstanceSet",
367
+ "output_required": true,
365
368
  "type": "list",
366
369
  "value_allowed_null": false
367
370
  },
@@ -385,9 +388,10 @@
385
388
  {
386
389
  "disabled": false,
387
390
  "document": "可售卖地域信息列表",
388
- "example": "",
391
+ "example": "[{ \"RegionId\": 0, \"Region\": \"ap-guangzhou\", \"RegionName\": \"广州\", \"RegionState\": 0 }]",
389
392
  "member": "RegionInfo",
390
393
  "name": "RegionSet",
394
+ "output_required": true,
391
395
  "type": "list",
392
396
  "value_allowed_null": false
393
397
  },
@@ -406,7 +410,7 @@
406
410
  {
407
411
  "disabled": false,
408
412
  "document": "实例规格,取值范围: cdsaudit,cdsaudit_adv, cdsaudit_ent 分别为合规版,高级版,企业版",
409
- "example": "",
413
+ "example": "高级版",
410
414
  "member": "string",
411
415
  "name": "InstanceVersion",
412
416
  "required": true,
@@ -415,7 +419,7 @@
415
419
  {
416
420
  "disabled": false,
417
421
  "document": "询价类型: renew,续费;newbuy,新购",
418
- "example": "",
422
+ "example": "renew",
419
423
  "member": "string",
420
424
  "name": "InquiryType",
421
425
  "required": true,
@@ -424,7 +428,7 @@
424
428
  {
425
429
  "disabled": false,
426
430
  "document": "购买实例的时长。取值范围:1(y/m),2(y/m),,3(y/m),4(m), 5(m),6(m), 7(m),8(m),9(m), 10(m)",
427
- "example": "",
431
+ "example": "1730454743",
428
432
  "member": "uint64",
429
433
  "name": "TimeSpan",
430
434
  "required": true,
@@ -433,7 +437,7 @@
433
437
  {
434
438
  "disabled": false,
435
439
  "document": "购买时长单位,y:年;m:月",
436
- "example": "",
440
+ "example": "1",
437
441
  "member": "string",
438
442
  "name": "TimeUnit",
439
443
  "required": true,
@@ -442,7 +446,7 @@
442
446
  {
443
447
  "disabled": false,
444
448
  "document": "实例所在地域",
445
- "example": "",
449
+ "example": "ap-guangzhou",
446
450
  "member": "string",
447
451
  "name": "ServiceRegion",
448
452
  "required": true,
@@ -457,18 +461,20 @@
457
461
  {
458
462
  "disabled": false,
459
463
  "document": "总价,单位:元",
460
- "example": "",
464
+ "example": "100.12",
461
465
  "member": "float",
462
466
  "name": "TotalPrice",
467
+ "output_required": true,
463
468
  "type": "float",
464
469
  "value_allowed_null": false
465
470
  },
466
471
  {
467
472
  "disabled": false,
468
473
  "document": "真实价钱,预支费用的折扣价,单位:元",
469
- "example": "",
474
+ "example": "200.12",
470
475
  "member": "float",
471
476
  "name": "RealTotalCost",
477
+ "output_required": true,
472
478
  "type": "float",
473
479
  "value_allowed_null": false
474
480
  },
@@ -523,40 +529,40 @@
523
529
  {
524
530
  "disabled": false,
525
531
  "document": "地域ID",
526
- "example": "",
532
+ "example": "1",
527
533
  "member": "int64",
528
534
  "name": "RegionId",
529
- "required": true,
535
+ "output_required": true,
530
536
  "type": "int",
531
537
  "value_allowed_null": false
532
538
  },
533
539
  {
534
540
  "disabled": false,
535
541
  "document": "地域名称",
536
- "example": "",
542
+ "example": "ap-guangzhou",
537
543
  "member": "string",
538
544
  "name": "Region",
539
- "required": true,
545
+ "output_required": true,
540
546
  "type": "string",
541
547
  "value_allowed_null": false
542
548
  },
543
549
  {
544
550
  "disabled": false,
545
551
  "document": "地域描述",
546
- "example": "",
552
+ "example": "普通区",
547
553
  "member": "string",
548
554
  "name": "RegionName",
549
- "required": true,
555
+ "output_required": true,
550
556
  "type": "string",
551
557
  "value_allowed_null": false
552
558
  },
553
559
  {
554
560
  "disabled": false,
555
561
  "document": "地域可用状态",
556
- "example": "",
562
+ "example": "3",
557
563
  "member": "int64",
558
564
  "name": "RegionState",
559
- "required": true,
565
+ "output_required": true,
560
566
  "type": "int",
561
567
  "value_allowed_null": false
562
568
  }
@@ -12,7 +12,7 @@
12
12
  {
13
13
  "document": "",
14
14
  "input": "https://cds.tencentcloudapi.com/?Action=DescribeDbauditInstances\r\n&SearchRegion=app-guangzhou\r\n&Offset=1\r\n&Limit=10\r\n&<公共请求参数>",
15
- "output": "{\n \"Response\": {\n \"RequestId\": \"6ef60bec-0242-43af-bb20-270359fb54a7\",\n \"TotalCount\": 1,\n \"CdsAuditInstanceSet\": [\n {\n \"AppId\": \"34343652144\",\n \"Uin\": \"34759392\",\n \"InstanceId\": \"453459565\",\n \"ProjectId\": 0,\n \"RenewFlag\": 1,\n \"Region\": \"app-guangzhou\",\n \"Status\": 1,\n \"PayMode\": 1,\n \"IsolatedTimestamp\": \"0000-00-00 00:00:00\",\n \"CreateTime\": \"2018-03-28 12:34:46\",\n \"ExpireTime\": \"2018-04-28 12:34:46\"\n }\n ]\n }\n}",
15
+ "output": "{\n \"Response\": {\n \"RequestId\": \"6ef60bec-0242-43af-bb20-270359fb54a7\",\n \"TotalCount\": 1,\n \"CdsAuditInstanceSet\": [\n {\n \"InstanceId\": \"ins-f784fkre\",\n \"AppId\": \"13676727\",\n \"Uin\": \"100006767342\",\n \"ProjectId\": 0,\n \"RenewFlag\": 0,\n \"Region\": \"ap-guangzhou\",\n \"PayMode\": 0,\n \"Status\": 0,\n \"IsolatedTimestamp\": \"1730451618\",\n \"CreateTime\": \"1730451618\",\n \"ExpireTime\": \"1730451618\",\n \"InstanceName\": \"测试实例\",\n \"PublicIp\": \"127.0.0.1\",\n \"PrivateIp\": \"127.0.0.1\",\n \"InstanceType\": \"5.0.9\",\n \"Pdomain\": \"www.Pdomain.com\"\n }\n ]\n }\n}",
16
16
  "title": "查询实例列表"
17
17
  }
18
18
  ],
@@ -192,7 +192,7 @@
192
192
  },
193
193
  "metadata": {
194
194
  "apiVersion": "2020-09-15",
195
- "api_brief": "云数据仓库 ClickHouseCDWCH)是腾讯云提供的云上 ClickHouse 托管服务,为用户提供便捷的 ClickHouse 集群部署、软件安装、配置修改、监控告警、弹性伸缩等功能,为企业及用户提供安全稳定的大数据处理解决方案。",
195
+ "api_brief": "腾讯云数据仓库 TCHouse-CTencent Cloud TCHouse-C )是基于开源 OLAP 引擎 ClickHouse 打造的企业级云数据仓库服务,仅需几分钟即可快速搭建起 PB 级实时数据仓库,实现对海量数据的极速实时分析。TChouse-C API 为用户提供便捷的 ClickHouse 集群部署、软件安装、配置修改、监控告警、弹性伸缩等功能,为企业及用户提供安全稳定的大数据处理解决方案。",
196
196
  "serviceNameCN": "腾讯云数据仓库TCHouse-C",
197
197
  "serviceShortName": "cdwch"
198
198
  },
@@ -1583,7 +1583,7 @@
1583
1583
  "type": "int"
1584
1584
  },
1585
1585
  {
1586
- "disabled": false,
1586
+ "disabled": true,
1587
1587
  "document": "选择的星期 逗号分隔\n废弃:使用ScheduleInfo",
1588
1588
  "example": "\"1,2\"",
1589
1589
  "member": "string",
@@ -1592,7 +1592,7 @@
1592
1592
  "type": "string"
1593
1593
  },
1594
1594
  {
1595
- "disabled": false,
1595
+ "disabled": true,
1596
1596
  "document": "执行小时\n废弃:使用ScheduleInfo",
1597
1597
  "example": "1",
1598
1598
  "member": "int64",
@@ -1705,6 +1705,16 @@
1705
1705
  "CreateBackUpScheduleResponse": {
1706
1706
  "document": "CreateBackUpSchedule返回参数结构体",
1707
1707
  "members": [
1708
+ {
1709
+ "disabled": false,
1710
+ "document": "错误信息\n注意:此字段可能返回 null,表示取不到有效值。",
1711
+ "example": "error",
1712
+ "member": "string",
1713
+ "name": "ErrorMsg",
1714
+ "output_required": false,
1715
+ "type": "string",
1716
+ "value_allowed_null": true
1717
+ },
1708
1718
  {
1709
1719
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1710
1720
  "member": "string",
@@ -2172,6 +2182,16 @@
2172
2182
  "output_required": false,
2173
2183
  "type": "string",
2174
2184
  "value_allowed_null": true
2185
+ },
2186
+ {
2187
+ "disabled": false,
2188
+ "document": "状态\n注意:此字段可能返回 null,表示取不到有效值。",
2189
+ "example": "state",
2190
+ "member": "string",
2191
+ "name": "State",
2192
+ "output_required": false,
2193
+ "type": "string",
2194
+ "value_allowed_null": true
2175
2195
  }
2176
2196
  ],
2177
2197
  "usage": "out"
@@ -2452,6 +2472,26 @@
2452
2472
  "type": "list",
2453
2473
  "value_allowed_null": true
2454
2474
  },
2475
+ {
2476
+ "disabled": false,
2477
+ "document": "错误信息\n注意:此字段可能返回 null,表示取不到有效值。",
2478
+ "example": "xx",
2479
+ "member": "string",
2480
+ "name": "ErrorMsg",
2481
+ "output_required": false,
2482
+ "type": "string",
2483
+ "value_allowed_null": true
2484
+ },
2485
+ {
2486
+ "disabled": false,
2487
+ "document": "总数\n注意:此字段可能返回 null,表示取不到有效值。",
2488
+ "example": "10",
2489
+ "member": "int64",
2490
+ "name": "TotalCount",
2491
+ "output_required": false,
2492
+ "type": "int",
2493
+ "value_allowed_null": true
2494
+ },
2455
2495
  {
2456
2496
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
2457
2497
  "member": "string",
@@ -5497,6 +5537,16 @@
5497
5537
  "output_required": false,
5498
5538
  "type": "string",
5499
5539
  "value_allowed_null": true
5540
+ },
5541
+ {
5542
+ "disabled": false,
5543
+ "document": "可用区\n注意:此字段可能返回 null,表示取不到有效值。",
5544
+ "example": "ap-guangzhou-5",
5545
+ "member": "string",
5546
+ "name": "Zone",
5547
+ "output_required": false,
5548
+ "type": "string",
5549
+ "value_allowed_null": true
5500
5550
  }
5501
5551
  ],
5502
5552
  "usage": "out"
@@ -7814,7 +7864,7 @@
7814
7864
  "members": [
7815
7865
  {
7816
7866
  "disabled": false,
7817
- "document": "生效时间\n注意:此字段可能返回 null,表示取不到有效值。",
7867
+ "document": "生效周期\n注意:此字段可能返回 null,表示取不到有效值。",
7818
7868
  "example": "2023-09-07 00:00:00~2023-09-21 00:00:00\t",
7819
7869
  "member": "string",
7820
7870
  "name": "EffectivePeriod",
@@ -7825,7 +7875,7 @@
7825
7875
  },
7826
7876
  {
7827
7877
  "disabled": false,
7828
- "document": "调度类型:\nDay-天\nWeek-周\nMonth-月\nOnce-单次\n注意:此字段可能返回 null,表示取不到有效值。",
7878
+ "document": "调度类型,不传该参数时为立即执行:\nDay-天\nWeek-周\nMonth-月\nOnce-单次\n\n注意:此字段可能返回 null,表示取不到有效值。",
7829
7879
  "example": "Day",
7830
7880
  "member": "string",
7831
7881
  "name": "ScheduleType",