i2up-python-sdk 9.1.3.1__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 (1472) hide show
  1. examples/OracleRule.py +39 -0
  2. examples/__init__.py +0 -0
  3. examples/nodeList.py +42 -0
  4. examples/repBackupList.py +30 -0
  5. i2up_python_sdk-9.1.3.1.dist-info/LICENSE +201 -0
  6. i2up_python_sdk-9.1.3.1.dist-info/METADATA +23 -0
  7. i2up_python_sdk-9.1.3.1.dist-info/RECORD +1472 -0
  8. i2up_python_sdk-9.1.3.1.dist-info/WHEEL +5 -0
  9. i2up_python_sdk-9.1.3.1.dist-info/top_level.txt +2 -0
  10. info2soft/ContainerCls/__init__.py +0 -0
  11. info2soft/ContainerCls/v20240819/ContainerCls.py +261 -0
  12. info2soft/ContainerCls/v20240819/__init__.py +2 -0
  13. info2soft/ContainerCls/v20250123/ContainerCls.py +261 -0
  14. info2soft/ContainerCls/v20250123/__init__.py +2 -0
  15. info2soft/ContainerCls/v20250630/ContainerCls.py +261 -0
  16. info2soft/ContainerCls/v20250630/__init__.py +2 -0
  17. info2soft/TapeCopy/__init__.py +0 -0
  18. info2soft/TapeCopy/v20240819/TapeCopy.py +74 -0
  19. info2soft/TapeCopy/v20240819/__init__.py +2 -0
  20. info2soft/TapeCopy/v20250123/TapeCopy.py +74 -0
  21. info2soft/TapeCopy/v20250123/__init__.py +2 -0
  22. info2soft/TapeCopy/v20250630/TapeCopy.py +74 -0
  23. info2soft/TapeCopy/v20250630/__init__.py +2 -0
  24. info2soft/__init__.py +85 -0
  25. info2soft/active/__init__.py +3 -0
  26. info2soft/active/test/__init__.py +0 -0
  27. info2soft/active/test/v20200720/DataChkTest.py +269 -0
  28. info2soft/active/test/v20200720/Db2Test.py +546 -0
  29. info2soft/active/test/v20200720/DmTest.py +285 -0
  30. info2soft/active/test/v20200720/GaussTest.py +339 -0
  31. info2soft/active/test/v20200720/HeteroTest.py +416 -0
  32. info2soft/active/test/v20200720/InfomixTest.py +193 -0
  33. info2soft/active/test/v20200720/LogTest.py +69 -0
  34. info2soft/active/test/v20200720/MaskTest.py +690 -0
  35. info2soft/active/test/v20200720/MongoDBTest.py +202 -0
  36. info2soft/active/test/v20200720/MysqlTest.py +1058 -0
  37. info2soft/active/test/v20200720/NodeTest.py +200 -0
  38. info2soft/active/test/v20200720/NotificationsTest.py +52 -0
  39. info2soft/active/test/v20200720/OceanbaseTest.py +316 -0
  40. info2soft/active/test/v20200720/OracleRuleTest.py +1588 -0
  41. info2soft/active/test/v20200720/PostgresTest.py +238 -0
  42. info2soft/active/test/v20200720/QianBaseSyncTest.py +404 -0
  43. info2soft/active/test/v20200720/QianBasexTPTest.py +174 -0
  44. info2soft/active/test/v20200720/ScriptMaskTest.py +255 -0
  45. info2soft/active/test/v20200720/SqlserverTest.py +505 -0
  46. info2soft/active/test/v20200720/SummaryTest.py +76 -0
  47. info2soft/active/test/v20200720/SyncRulesTest.py +1295 -0
  48. info2soft/active/test/v20200720/TidbTest.py +444 -0
  49. info2soft/active/test/v20200720/__init__.py +0 -0
  50. info2soft/active/test/v20220622/DataChkTest.py +269 -0
  51. info2soft/active/test/v20220622/Db2Test.py +546 -0
  52. info2soft/active/test/v20220622/DmTest.py +285 -0
  53. info2soft/active/test/v20220622/GaussTest.py +339 -0
  54. info2soft/active/test/v20220622/HeteroTest.py +416 -0
  55. info2soft/active/test/v20220622/InfomixTest.py +193 -0
  56. info2soft/active/test/v20220622/LogTest.py +69 -0
  57. info2soft/active/test/v20220622/MaskTest.py +690 -0
  58. info2soft/active/test/v20220622/MongoDBTest.py +202 -0
  59. info2soft/active/test/v20220622/MysqlTest.py +1058 -0
  60. info2soft/active/test/v20220622/NodeTest.py +200 -0
  61. info2soft/active/test/v20220622/NotificationsTest.py +52 -0
  62. info2soft/active/test/v20220622/OceanbaseTest.py +316 -0
  63. info2soft/active/test/v20220622/OracleRuleTest.py +1588 -0
  64. info2soft/active/test/v20220622/PostgresTest.py +238 -0
  65. info2soft/active/test/v20220622/QianBaseSyncTest.py +404 -0
  66. info2soft/active/test/v20220622/QianBasexTPTest.py +174 -0
  67. info2soft/active/test/v20220622/ScriptMaskTest.py +255 -0
  68. info2soft/active/test/v20220622/SqlserverTest.py +505 -0
  69. info2soft/active/test/v20220622/SummaryTest.py +76 -0
  70. info2soft/active/test/v20220622/SyncRulesTest.py +1295 -0
  71. info2soft/active/test/v20220622/TidbTest.py +444 -0
  72. info2soft/active/test/v20220622/__init__.py +0 -0
  73. info2soft/active/v20200720/DataChk.py +192 -0
  74. info2soft/active/v20200720/Db2.py +495 -0
  75. info2soft/active/v20200720/Dm.py +226 -0
  76. info2soft/active/v20200720/Gauss.py +184 -0
  77. info2soft/active/v20200720/Hetero.py +320 -0
  78. info2soft/active/v20200720/Infomix.py +98 -0
  79. info2soft/active/v20200720/Log.py +35 -0
  80. info2soft/active/v20200720/Mask.py +475 -0
  81. info2soft/active/v20200720/MongoDB.py +158 -0
  82. info2soft/active/v20200720/Mysql.py +936 -0
  83. info2soft/active/v20200720/Node.py +126 -0
  84. info2soft/active/v20200720/Notifications.py +21 -0
  85. info2soft/active/v20200720/Oceanbase.py +257 -0
  86. info2soft/active/v20200720/OracleRule.py +1360 -0
  87. info2soft/active/v20200720/Postgres.py +196 -0
  88. info2soft/active/v20200720/QianBaseSync.py +330 -0
  89. info2soft/active/v20200720/QianBasexTP.py +86 -0
  90. info2soft/active/v20200720/ScriptMask.py +193 -0
  91. info2soft/active/v20200720/Sqlserver.py +430 -0
  92. info2soft/active/v20200720/Summary.py +46 -0
  93. info2soft/active/v20200720/SyncRules.py +1079 -0
  94. info2soft/active/v20200720/Tidb.py +304 -0
  95. info2soft/active/v20200720/__init__.py +6 -0
  96. info2soft/active/v20220622/DataChk.py +192 -0
  97. info2soft/active/v20220622/Db2.py +495 -0
  98. info2soft/active/v20220622/Dm.py +226 -0
  99. info2soft/active/v20220622/Gauss.py +184 -0
  100. info2soft/active/v20220622/Hetero.py +320 -0
  101. info2soft/active/v20220622/Infomix.py +98 -0
  102. info2soft/active/v20220622/Log.py +35 -0
  103. info2soft/active/v20220622/Mask.py +475 -0
  104. info2soft/active/v20220622/MongoDB.py +158 -0
  105. info2soft/active/v20220622/Mysql.py +936 -0
  106. info2soft/active/v20220622/Node.py +126 -0
  107. info2soft/active/v20220622/Notifications.py +21 -0
  108. info2soft/active/v20220622/Oceanbase.py +257 -0
  109. info2soft/active/v20220622/OracleRule.py +1360 -0
  110. info2soft/active/v20220622/Postgres.py +196 -0
  111. info2soft/active/v20220622/QianBaseSync.py +330 -0
  112. info2soft/active/v20220622/QianBasexTP.py +86 -0
  113. info2soft/active/v20220622/ScriptMask.py +193 -0
  114. info2soft/active/v20220622/Sqlserver.py +430 -0
  115. info2soft/active/v20220622/Summary.py +46 -0
  116. info2soft/active/v20220622/SyncRules.py +1079 -0
  117. info2soft/active/v20220622/Tidb.py +304 -0
  118. info2soft/active/v20220622/__init__.py +22 -0
  119. info2soft/active/v20230227/DataChk.py +302 -0
  120. info2soft/active/v20230227/Db2.py +282 -0
  121. info2soft/active/v20230227/Dm.py +98 -0
  122. info2soft/active/v20230227/Gauss.py +140 -0
  123. info2soft/active/v20230227/Hetero.py +296 -0
  124. info2soft/active/v20230227/Infomix.py +73 -0
  125. info2soft/active/v20230227/Log.py +47 -0
  126. info2soft/active/v20230227/Mask.py +488 -0
  127. info2soft/active/v20230227/MongoDB.py +111 -0
  128. info2soft/active/v20230227/Mysql.py +936 -0
  129. info2soft/active/v20230227/Notifications.py +21 -0
  130. info2soft/active/v20230227/Oceanbase.py +124 -0
  131. info2soft/active/v20230227/OfflineRule.py +100 -0
  132. info2soft/active/v20230227/OracleRule.py +490 -0
  133. info2soft/active/v20230227/Postgres.py +114 -0
  134. info2soft/active/v20230227/QianBaseSync.py +259 -0
  135. info2soft/active/v20230227/QianBasexTP.py +86 -0
  136. info2soft/active/v20230227/Redis.py +111 -0
  137. info2soft/active/v20230227/ScriptMask.py +170 -0
  138. info2soft/active/v20230227/Sqlserver.py +323 -0
  139. info2soft/active/v20230227/Summary.py +45 -0
  140. info2soft/active/v20230227/Tidb.py +114 -0
  141. info2soft/active/v20230227/__init__.py +44 -0
  142. info2soft/active/v20240228/DataChk.py +428 -0
  143. info2soft/active/v20240228/Db2.py +370 -0
  144. info2soft/active/v20240228/Dm.py +142 -0
  145. info2soft/active/v20240228/Gauss.py +140 -0
  146. info2soft/active/v20240228/HBase.py +75 -0
  147. info2soft/active/v20240228/Hetero.py +296 -0
  148. info2soft/active/v20240228/Infomix.py +136 -0
  149. info2soft/active/v20240228/Log.py +47 -0
  150. info2soft/active/v20240228/Mask.py +503 -0
  151. info2soft/active/v20240228/MongoDB.py +155 -0
  152. info2soft/active/v20240228/Mysql.py +949 -0
  153. info2soft/active/v20240228/Notifications.py +21 -0
  154. info2soft/active/v20240228/Oceanbase.py +244 -0
  155. info2soft/active/v20240228/OfflineRule.py +100 -0
  156. info2soft/active/v20240228/OracleRule.py +1683 -0
  157. info2soft/active/v20240228/Postgres.py +177 -0
  158. info2soft/active/v20240228/QianBaseSync.py +303 -0
  159. info2soft/active/v20240228/QianBasexTP.py +86 -0
  160. info2soft/active/v20240228/Redis.py +155 -0
  161. info2soft/active/v20240228/ScriptMask.py +170 -0
  162. info2soft/active/v20240228/Sqlserver.py +468 -0
  163. info2soft/active/v20240228/Summary.py +45 -0
  164. info2soft/active/v20240228/Tidb.py +291 -0
  165. info2soft/active/v20240228/__init__.py +44 -0
  166. info2soft/active/v20240819/DataChk.py +380 -0
  167. info2soft/active/v20240819/Db2.py +164 -0
  168. info2soft/active/v20240819/Dm.py +111 -0
  169. info2soft/active/v20240819/HBase.py +75 -0
  170. info2soft/active/v20240819/Hetero.py +231 -0
  171. info2soft/active/v20240819/Informix.py +112 -0
  172. info2soft/active/v20240819/Mask.py +493 -0
  173. info2soft/active/v20240819/MongoDB.py +115 -0
  174. info2soft/active/v20240819/Mysql.py +270 -0
  175. info2soft/active/v20240819/Notifications.py +21 -0
  176. info2soft/active/v20240819/Oceanbase.py +202 -0
  177. info2soft/active/v20240819/OfflineRule.py +207 -0
  178. info2soft/active/v20240819/OracleRule.py +1397 -0
  179. info2soft/active/v20240819/Postgres.py +140 -0
  180. info2soft/active/v20240819/QianBaseSync.py +140 -0
  181. info2soft/active/v20240819/Rabbitmq.py +111 -0
  182. info2soft/active/v20240819/Redis.py +115 -0
  183. info2soft/active/v20240819/ScriptMask.py +210 -0
  184. info2soft/active/v20240819/Sqlserver.py +230 -0
  185. info2soft/active/v20240819/Summary.py +34 -0
  186. info2soft/active/v20240819/Tidb.py +205 -0
  187. info2soft/active/v20240819/__init__.py +42 -0
  188. info2soft/active/v20250123/DataChk.py +380 -0
  189. info2soft/active/v20250123/Db2.py +163 -0
  190. info2soft/active/v20250123/Dm.py +111 -0
  191. info2soft/active/v20250123/HBase.py +75 -0
  192. info2soft/active/v20250123/Hetero.py +244 -0
  193. info2soft/active/v20250123/HeteroConsumer.py +114 -0
  194. info2soft/active/v20250123/Informix.py +112 -0
  195. info2soft/active/v20250123/Mask.py +493 -0
  196. info2soft/active/v20250123/MongoDB.py +115 -0
  197. info2soft/active/v20250123/Mysql.py +270 -0
  198. info2soft/active/v20250123/MysqlRule.py +125 -0
  199. info2soft/active/v20250123/Notifications.py +21 -0
  200. info2soft/active/v20250123/Oceanbase.py +202 -0
  201. info2soft/active/v20250123/OfflineRule.py +207 -0
  202. info2soft/active/v20250123/OracleRule.py +1397 -0
  203. info2soft/active/v20250123/Postgres.py +140 -0
  204. info2soft/active/v20250123/QianBaseSync.py +140 -0
  205. info2soft/active/v20250123/Rabbitmq.py +111 -0
  206. info2soft/active/v20250123/Redis.py +115 -0
  207. info2soft/active/v20250123/ScriptMask.py +210 -0
  208. info2soft/active/v20250123/SqlServerRule.py +125 -0
  209. info2soft/active/v20250123/Sqlserver.py +230 -0
  210. info2soft/active/v20250123/Summary.py +34 -0
  211. info2soft/active/v20250123/Tidb.py +205 -0
  212. info2soft/active/v20250123/__init__.py +48 -0
  213. info2soft/active/v20250630/DataChk.py +380 -0
  214. info2soft/active/v20250630/Db2.py +163 -0
  215. info2soft/active/v20250630/Dm.py +111 -0
  216. info2soft/active/v20250630/HBase.py +75 -0
  217. info2soft/active/v20250630/Hetero.py +244 -0
  218. info2soft/active/v20250630/HeteroConsumer.py +140 -0
  219. info2soft/active/v20250630/Informix.py +112 -0
  220. info2soft/active/v20250630/Mask.py +493 -0
  221. info2soft/active/v20250630/MongoDB.py +115 -0
  222. info2soft/active/v20250630/Mysql.py +270 -0
  223. info2soft/active/v20250630/MysqlRule.py +125 -0
  224. info2soft/active/v20250630/Notifications.py +21 -0
  225. info2soft/active/v20250630/Oceanbase.py +202 -0
  226. info2soft/active/v20250630/OfflineRule.py +207 -0
  227. info2soft/active/v20250630/OracleRule.py +1397 -0
  228. info2soft/active/v20250630/Postgres.py +140 -0
  229. info2soft/active/v20250630/QianBaseSync.py +140 -0
  230. info2soft/active/v20250630/Rabbitmq.py +111 -0
  231. info2soft/active/v20250630/Redis.py +115 -0
  232. info2soft/active/v20250630/RocketMq.py +114 -0
  233. info2soft/active/v20250630/RoutingRule.py +163 -0
  234. info2soft/active/v20250630/ScriptMask.py +210 -0
  235. info2soft/active/v20250630/SqlServerRule.py +125 -0
  236. info2soft/active/v20250630/Sqlserver.py +230 -0
  237. info2soft/active/v20250630/Summary.py +34 -0
  238. info2soft/active/v20250630/Tidb.py +205 -0
  239. info2soft/active/v20250630/__init__.py +52 -0
  240. info2soft/appContinuity/__init__.py +0 -0
  241. info2soft/appContinuity/v20240819/AppContinuity.py +180 -0
  242. info2soft/appContinuity/v20240819/__init__.py +2 -0
  243. info2soft/appContinuity/v20250123/AppContinuity.py +180 -0
  244. info2soft/appContinuity/v20250123/__init__.py +2 -0
  245. info2soft/appContinuity/v20250630/AppContinuity.py +219 -0
  246. info2soft/appContinuity/v20250630/__init__.py +2 -0
  247. info2soft/authorization/__init__.py +0 -0
  248. info2soft/authorization/v20240819/Authorization.py +99 -0
  249. info2soft/authorization/v20240819/__init__.py +2 -0
  250. info2soft/authorization/v20250123/Authorization.py +99 -0
  251. info2soft/authorization/v20250123/__init__.py +2 -0
  252. info2soft/authorization/v20250630/Authorization.py +99 -0
  253. info2soft/authorization/v20250630/__init__.py +2 -0
  254. info2soft/backupDomain/__init__.py +0 -0
  255. info2soft/backupDomain/v20250630/BackupDomain.py +115 -0
  256. info2soft/backupDomain/v20250630/__init__.py +2 -0
  257. info2soft/backupRule/__init__.py +0 -0
  258. info2soft/backupRule/v20240228/BackupRule.py +178 -0
  259. info2soft/backupRule/v20240228/__init__.py +2 -0
  260. info2soft/backupRule/v20240819/BackupRule.py +167 -0
  261. info2soft/backupRule/v20240819/__init__.py +2 -0
  262. info2soft/backupRule/v20250123/BackupRule.py +193 -0
  263. info2soft/backupRule/v20250123/__init__.py +2 -0
  264. info2soft/backupRule/v20250630/BackupRule.py +232 -0
  265. info2soft/backupRule/v20250630/__init__.py +2 -0
  266. info2soft/backupSet/__init__.py +0 -0
  267. info2soft/backupSet/v20240228/BackupSet.py +208 -0
  268. info2soft/backupSet/v20240228/__init__.py +2 -0
  269. info2soft/backupSet/v20240819/BackupSet.py +242 -0
  270. info2soft/backupSet/v20240819/__init__.py +2 -0
  271. info2soft/backupSet/v20250123/BackupSet.py +294 -0
  272. info2soft/backupSet/v20250123/__init__.py +2 -0
  273. info2soft/backupSet/v20250630/BackupSet.py +294 -0
  274. info2soft/backupSet/v20250630/__init__.py +2 -0
  275. info2soft/backupSetRulePolicy/__init__.py +0 -0
  276. info2soft/backupSetRulePolicy/v20240228/BackupSetRulePolicy.py +76 -0
  277. info2soft/backupSetRulePolicy/v20240228/__init__.py +2 -0
  278. info2soft/backupSetRulePolicy/v20240819/BackupSetRulePolicy.py +76 -0
  279. info2soft/backupSetRulePolicy/v20240819/__init__.py +2 -0
  280. info2soft/backupSetRulePolicy/v20250123/BackupSetRulePolicy.py +76 -0
  281. info2soft/backupSetRulePolicy/v20250123/__init__.py +2 -0
  282. info2soft/backupSetRulePolicy/v20250630/BackupSetRulePolicy.py +76 -0
  283. info2soft/backupSetRulePolicy/v20250630/__init__.py +2 -0
  284. info2soft/backupWork/__init__.py +0 -0
  285. info2soft/backupWork/v20240228/BackupWork.py +152 -0
  286. info2soft/backupWork/v20240228/__init__.py +2 -0
  287. info2soft/backupWork/v20240819/BackupWork.py +183 -0
  288. info2soft/backupWork/v20240819/__init__.py +2 -0
  289. info2soft/backupWork/v20250123/BackupWork.py +183 -0
  290. info2soft/backupWork/v20250123/__init__.py +2 -0
  291. info2soft/backupWork/v20250630/BackupWork.py +183 -0
  292. info2soft/backupWork/v20250630/__init__.py +2 -0
  293. info2soft/bigdata/__init__.py +2 -0
  294. info2soft/bigdata/v20200724/Backup.py +130 -0
  295. info2soft/bigdata/v20200724/Recovery.py +164 -0
  296. info2soft/bigdata/v20200724/__init__.py +3 -0
  297. info2soft/bigdata/v20220622/Backup.py +130 -0
  298. info2soft/bigdata/v20220622/Recovery.py +164 -0
  299. info2soft/bigdata/v20220622/__init__.py +3 -0
  300. info2soft/bigdata/v20230227/Backup.py +218 -0
  301. info2soft/bigdata/v20230227/__init__.py +2 -0
  302. info2soft/bigdata/v20240228/Backup.py +257 -0
  303. info2soft/bigdata/v20240228/__init__.py +2 -0
  304. info2soft/bigdata/v20240819/Backup.py +243 -0
  305. info2soft/bigdata/v20240819/Recovery.py +152 -0
  306. info2soft/bigdata/v20240819/__init__.py +4 -0
  307. info2soft/bigdata/v20250123/Backup.py +243 -0
  308. info2soft/bigdata/v20250123/Recovery.py +152 -0
  309. info2soft/bigdata/v20250123/__init__.py +4 -0
  310. info2soft/bigdata/v20250630/Backup.py +243 -0
  311. info2soft/bigdata/v20250630/Recovery.py +152 -0
  312. info2soft/bigdata/v20250630/__init__.py +4 -0
  313. info2soft/bigdataBackupRule/__init__.py +0 -0
  314. info2soft/bigdataBackupRule/v20240819/BigdataBackupRule.py +152 -0
  315. info2soft/bigdataBackupRule/v20240819/__init__.py +2 -0
  316. info2soft/bigdataBackupRule/v20250123/BigdataBackupRule.py +152 -0
  317. info2soft/bigdataBackupRule/v20250123/__init__.py +2 -0
  318. info2soft/bigdataBackupRule/v20250630/BigdataBackupRule.py +152 -0
  319. info2soft/bigdataBackupRule/v20250630/__init__.py +2 -0
  320. info2soft/bigdataRecoveryRule/__init__.py +0 -0
  321. info2soft/bigdataRecoveryRule/v20240819/BigdataRecoveryRule.py +76 -0
  322. info2soft/bigdataRecoveryRule/v20240819/__init__.py +2 -0
  323. info2soft/bigdataRecoveryRule/v20250123/BigdataRecoveryRule.py +76 -0
  324. info2soft/bigdataRecoveryRule/v20250123/__init__.py +2 -0
  325. info2soft/bigdataRecoveryRule/v20250630/BigdataRecoveryRule.py +76 -0
  326. info2soft/bigdataRecoveryRule/v20250630/__init__.py +2 -0
  327. info2soft/cdm/__init__.py +1 -0
  328. info2soft/cdm/v20200729/Cdm.py +688 -0
  329. info2soft/cdm/v20200729/__init__.py +2 -0
  330. info2soft/cdm/v20220622/Cdm.py +688 -0
  331. info2soft/cdm/v20220622/__init__.py +2 -0
  332. info2soft/cdm/v20230227/Cdm.py +602 -0
  333. info2soft/cdm/v20230227/__init__.py +2 -0
  334. info2soft/cdm/v20240228/Cdm.py +640 -0
  335. info2soft/cdm/v20240228/__init__.py +2 -0
  336. info2soft/cdm/v20240819/Cdm.py +232 -0
  337. info2soft/cdm/v20240819/CdmRecovery.py +99 -0
  338. info2soft/cdm/v20240819/CdmRule.py +113 -0
  339. info2soft/cdm/v20240819/Drill.py +127 -0
  340. info2soft/cdm/v20240819/FfoMount.py +89 -0
  341. info2soft/cdm/v20240819/RemoteCoopy.py +178 -0
  342. info2soft/cdm/v20240819/__init__.py +12 -0
  343. info2soft/cdm/v20250123/Cdm.py +232 -0
  344. info2soft/cdm/v20250123/CdmRecovery.py +99 -0
  345. info2soft/cdm/v20250123/CdmRule.py +113 -0
  346. info2soft/cdm/v20250123/Drill.py +127 -0
  347. info2soft/cdm/v20250123/FfoMount.py +89 -0
  348. info2soft/cdm/v20250123/RemoteCoopy.py +178 -0
  349. info2soft/cdm/v20250123/__init__.py +12 -0
  350. info2soft/cdm/v20250630/Cdm.py +232 -0
  351. info2soft/cdm/v20250630/CdmRecovery.py +99 -0
  352. info2soft/cdm/v20250630/CdmRule.py +113 -0
  353. info2soft/cdm/v20250630/Drill.py +127 -0
  354. info2soft/cdm/v20250630/FfoMount.py +89 -0
  355. info2soft/cdm/v20250630/RemoteCoopy.py +178 -0
  356. info2soft/cdm/v20250630/__init__.py +12 -0
  357. info2soft/cfs/__init__.py +0 -0
  358. info2soft/cfs/v20240228/CfsBackup.py +218 -0
  359. info2soft/cfs/v20240228/__init__.py +2 -0
  360. info2soft/cfs/v20240819/CfsBackup.py +193 -0
  361. info2soft/cfs/v20240819/__init__.py +2 -0
  362. info2soft/cfs/v20250123/CfsBackup.py +193 -0
  363. info2soft/cfs/v20250123/__init__.py +2 -0
  364. info2soft/cfs/v20250630/CfsBackup.py +232 -0
  365. info2soft/cfs/v20250630/__init__.py +2 -0
  366. info2soft/cloud/__init__.py +1 -0
  367. info2soft/cloud/v20200727/CloudBackup.py +170 -0
  368. info2soft/cloud/v20200727/CloudEcs.py +237 -0
  369. info2soft/cloud/v20200727/CloudPlatform.py +191 -0
  370. info2soft/cloud/v20200727/CloudRehearse.py +438 -0
  371. info2soft/cloud/v20200727/CloudVolume.py +123 -0
  372. info2soft/cloud/v20200727/__init__.py +6 -0
  373. info2soft/cloud/v20220622/CloudBackup.py +170 -0
  374. info2soft/cloud/v20220622/CloudEcs.py +237 -0
  375. info2soft/cloud/v20220622/CloudPlatform.py +191 -0
  376. info2soft/cloud/v20220622/CloudRehearse.py +438 -0
  377. info2soft/cloud/v20220622/CloudVolume.py +123 -0
  378. info2soft/cloud/v20220622/__init__.py +6 -0
  379. info2soft/cloud/v20230227/CloudBackup.py +1028 -0
  380. info2soft/cloud/v20230227/__init__.py +2 -0
  381. info2soft/cloud/v20240228/CloudBackup.py +1098 -0
  382. info2soft/cloud/v20240228/__init__.py +2 -0
  383. info2soft/cloud/v20240819/CloudBackendStorage.py +76 -0
  384. info2soft/cloud/v20240819/CloudBackup.py +153 -0
  385. info2soft/cloud/v20240819/CloudEcs.py +256 -0
  386. info2soft/cloud/v20240819/CloudPlatform.py +193 -0
  387. info2soft/cloud/v20240819/CloudRehearse.py +438 -0
  388. info2soft/cloud/v20240819/CloudVolume.py +124 -0
  389. info2soft/cloud/v20240819/__init__.py +12 -0
  390. info2soft/cloud/v20250123/CloudBackendStorage.py +76 -0
  391. info2soft/cloud/v20250123/CloudBackup.py +153 -0
  392. info2soft/cloud/v20250123/CloudEcs.py +256 -0
  393. info2soft/cloud/v20250123/CloudPlatform.py +193 -0
  394. info2soft/cloud/v20250123/CloudRehearse.py +438 -0
  395. info2soft/cloud/v20250123/CloudVolume.py +124 -0
  396. info2soft/cloud/v20250123/__init__.py +12 -0
  397. info2soft/cloud/v20250630/CloudBackendStorage.py +76 -0
  398. info2soft/cloud/v20250630/CloudBackup.py +153 -0
  399. info2soft/cloud/v20250630/CloudEcs.py +256 -0
  400. info2soft/cloud/v20250630/CloudPlatform.py +193 -0
  401. info2soft/cloud/v20250630/CloudRehearse.py +438 -0
  402. info2soft/cloud/v20250630/CloudVolume.py +124 -0
  403. info2soft/cloud/v20250630/__init__.py +12 -0
  404. info2soft/common/Auth.py +215 -0
  405. info2soft/common/BackupMigrate.py +111 -0
  406. info2soft/common/Cache.py +93 -0
  407. info2soft/common/CcMonitor.py +33 -0
  408. info2soft/common/Client.py +101 -0
  409. info2soft/common/CompareResult.py +78 -0
  410. info2soft/common/Credential.py +102 -0
  411. info2soft/common/DataBaseBackup.py +68 -0
  412. info2soft/common/DbConvert.py +46 -0
  413. info2soft/common/Diagnose.py +47 -0
  414. info2soft/common/Dir.py +112 -0
  415. info2soft/common/FindPassword.py +60 -0
  416. info2soft/common/GTS.py +83 -0
  417. info2soft/common/GeneralInterface.py +256 -0
  418. info2soft/common/Lic.py +215 -0
  419. info2soft/common/Logs.py +85 -0
  420. info2soft/common/Menu.py +20 -0
  421. info2soft/common/Notifications.py +177 -0
  422. info2soft/common/OpLogs.py +72 -0
  423. info2soft/common/Permission.py +32 -0
  424. info2soft/common/Qr.py +99 -0
  425. info2soft/common/RestrpcServer.py +114 -0
  426. info2soft/common/Rsa.py +67 -0
  427. info2soft/common/Settings.py +448 -0
  428. info2soft/common/Statistics.py +101 -0
  429. info2soft/common/Storage.py +978 -0
  430. info2soft/common/Tenant.py +62 -0
  431. info2soft/common/Wechat.py +45 -0
  432. info2soft/common/__init__.py +0 -0
  433. info2soft/common/test/__init__.py +0 -0
  434. info2soft/common/test/v20190104/AuthTest.py +124 -0
  435. info2soft/common/test/v20190104/BackupMigrateTest.py +149 -0
  436. info2soft/common/test/v20190104/CcMonitorTest.py +63 -0
  437. info2soft/common/test/v20190104/ClientTest.py +153 -0
  438. info2soft/common/test/v20190104/CompareResultTest.py +102 -0
  439. info2soft/common/test/v20190104/CredentialTest.py +129 -0
  440. info2soft/common/test/v20190104/DataBaseBackupTest.py +75 -0
  441. info2soft/common/test/v20190104/DbConvertTest.py +73 -0
  442. info2soft/common/test/v20190104/DiagnoseTest.py +79 -0
  443. info2soft/common/test/v20190104/DirTest.py +158 -0
  444. info2soft/common/test/v20190104/FindPasswordTest.py +92 -0
  445. info2soft/common/test/v20190104/GTSTest.py +117 -0
  446. info2soft/common/test/v20190104/GeneralInterfaceTest.py +285 -0
  447. info2soft/common/test/v20190104/LicTest.py +265 -0
  448. info2soft/common/test/v20190104/LogsTest.py +153 -0
  449. info2soft/common/test/v20190104/MenuTest.py +48 -0
  450. info2soft/common/test/v20190104/NotificationsTest.py +256 -0
  451. info2soft/common/test/v20190104/OpLogsTest.py +125 -0
  452. info2soft/common/test/v20190104/PermissionTest.py +55 -0
  453. info2soft/common/test/v20190104/QrTest.py +117 -0
  454. info2soft/common/test/v20190104/RestrpcServerTest.py +159 -0
  455. info2soft/common/test/v20190104/SettingsTest.py +518 -0
  456. info2soft/common/test/v20190104/StatisticsTest.py +210 -0
  457. info2soft/common/test/v20190104/StorageTest.py +48 -0
  458. info2soft/common/test/v20190104/TenantTest.py +100 -0
  459. info2soft/common/test/v20190104/WechatTest.py +72 -0
  460. info2soft/common/test/v20190104/__init__.py +0 -0
  461. info2soft/common/test/v20190805/MonitorTest.py +45 -0
  462. info2soft/common/test/v20190805/PermissionTest.py +45 -0
  463. info2soft/common/test/v20190805/StorageTest.py +1058 -0
  464. info2soft/common/test/v20190805/__init__.py +0 -0
  465. info2soft/common/test/v20220622/AuthTest.py +124 -0
  466. info2soft/common/test/v20220622/BackupMigrateTest.py +149 -0
  467. info2soft/common/test/v20220622/CcMonitorTest.py +63 -0
  468. info2soft/common/test/v20220622/ClientTest.py +153 -0
  469. info2soft/common/test/v20220622/CompareResultTest.py +102 -0
  470. info2soft/common/test/v20220622/CredentialTest.py +129 -0
  471. info2soft/common/test/v20220622/DataBaseBackupTest.py +75 -0
  472. info2soft/common/test/v20220622/DbConvertTest.py +73 -0
  473. info2soft/common/test/v20220622/DiagnoseTest.py +79 -0
  474. info2soft/common/test/v20220622/DirTest.py +158 -0
  475. info2soft/common/test/v20220622/FindPasswordTest.py +92 -0
  476. info2soft/common/test/v20220622/GTSTest.py +117 -0
  477. info2soft/common/test/v20220622/GeneralInterfaceTest.py +285 -0
  478. info2soft/common/test/v20220622/LicTest.py +265 -0
  479. info2soft/common/test/v20220622/LogsTest.py +153 -0
  480. info2soft/common/test/v20220622/MenuTest.py +48 -0
  481. info2soft/common/test/v20220622/NotificationsTest.py +256 -0
  482. info2soft/common/test/v20220622/OpLogsTest.py +125 -0
  483. info2soft/common/test/v20220622/PermissionTest.py +55 -0
  484. info2soft/common/test/v20220622/QrTest.py +117 -0
  485. info2soft/common/test/v20220622/RestrpcServerTest.py +159 -0
  486. info2soft/common/test/v20220622/SettingsTest.py +518 -0
  487. info2soft/common/test/v20220622/StatisticsTest.py +210 -0
  488. info2soft/common/test/v20220622/StorageTest.py +48 -0
  489. info2soft/common/test/v20220622/TenantTest.py +100 -0
  490. info2soft/common/test/v20220622/WechatTest.py +72 -0
  491. info2soft/common/test/v20220622/__init__.py +0 -0
  492. info2soft/common/utils.py +168 -0
  493. info2soft/common/v20230227/Auth.py +218 -0
  494. info2soft/common/v20230227/BackupMigrate.py +111 -0
  495. info2soft/common/v20230227/BigScreen.py +192 -0
  496. info2soft/common/v20230227/CcMonitor.py +33 -0
  497. info2soft/common/v20230227/Client.py +112 -0
  498. info2soft/common/v20230227/CommonTemplate.py +77 -0
  499. info2soft/common/v20230227/CompareResult.py +76 -0
  500. info2soft/common/v20230227/Credential.py +115 -0
  501. info2soft/common/v20230227/DataBaseBackup.py +69 -0
  502. info2soft/common/v20230227/DbConvert.py +46 -0
  503. info2soft/common/v20230227/Diagnose.py +59 -0
  504. info2soft/common/v20230227/Dir.py +112 -0
  505. info2soft/common/v20230227/FindPassword.py +60 -0
  506. info2soft/common/v20230227/GTS.py +83 -0
  507. info2soft/common/v20230227/GeneralInterface.py +295 -0
  508. info2soft/common/v20230227/Lic.py +239 -0
  509. info2soft/common/v20230227/Logs.py +85 -0
  510. info2soft/common/v20230227/Menu.py +20 -0
  511. info2soft/common/v20230227/Notifications.py +203 -0
  512. info2soft/common/v20230227/OpLogs.py +72 -0
  513. info2soft/common/v20230227/Permission.py +45 -0
  514. info2soft/common/v20230227/Qr.py +73 -0
  515. info2soft/common/v20230227/RestrpcServer.py +112 -0
  516. info2soft/common/v20230227/Settings.py +487 -0
  517. info2soft/common/v20230227/Statistics.py +112 -0
  518. info2soft/common/v20230227/Tenant.py +60 -0
  519. info2soft/common/v20230227/Webhook.py +130 -0
  520. info2soft/common/v20230227/Wechat.py +45 -0
  521. info2soft/common/v20230227/__init__.py +60 -0
  522. info2soft/common/v20240228/Auth.py +218 -0
  523. info2soft/common/v20240228/BackupMigrate.py +111 -0
  524. info2soft/common/v20240228/BigScreen.py +192 -0
  525. info2soft/common/v20240228/CcMonitor.py +161 -0
  526. info2soft/common/v20240228/Client.py +242 -0
  527. info2soft/common/v20240228/CommonTemplate.py +77 -0
  528. info2soft/common/v20240228/CompareResult.py +76 -0
  529. info2soft/common/v20240228/Credential.py +115 -0
  530. info2soft/common/v20240228/DataBaseBackup.py +69 -0
  531. info2soft/common/v20240228/DbConvert.py +46 -0
  532. info2soft/common/v20240228/Diagnose.py +59 -0
  533. info2soft/common/v20240228/Dir.py +125 -0
  534. info2soft/common/v20240228/FindPassword.py +60 -0
  535. info2soft/common/v20240228/GTS.py +83 -0
  536. info2soft/common/v20240228/GeneralInterface.py +333 -0
  537. info2soft/common/v20240228/GuardData.py +114 -0
  538. info2soft/common/v20240228/Lic.py +280 -0
  539. info2soft/common/v20240228/Logs.py +85 -0
  540. info2soft/common/v20240228/Menu.py +20 -0
  541. info2soft/common/v20240228/Notifications.py +203 -0
  542. info2soft/common/v20240228/OpLogs.py +72 -0
  543. info2soft/common/v20240228/Permission.py +45 -0
  544. info2soft/common/v20240228/Qr.py +73 -0
  545. info2soft/common/v20240228/RestrpcServer.py +112 -0
  546. info2soft/common/v20240228/Settings.py +550 -0
  547. info2soft/common/v20240228/Statistics.py +125 -0
  548. info2soft/common/v20240228/Tenant.py +60 -0
  549. info2soft/common/v20240228/Webhook.py +130 -0
  550. info2soft/common/v20240228/Wechat.py +45 -0
  551. info2soft/common/v20240228/__init__.py +60 -0
  552. info2soft/common/v20240819/Auth.py +122 -0
  553. info2soft/common/v20240819/BackupMigrate.py +111 -0
  554. info2soft/common/v20240819/BigScreen.py +192 -0
  555. info2soft/common/v20240819/CcMonitor.py +137 -0
  556. info2soft/common/v20240819/Client.py +254 -0
  557. info2soft/common/v20240819/CommonTemplate.py +77 -0
  558. info2soft/common/v20240819/CompareResult.py +76 -0
  559. info2soft/common/v20240819/Credential.py +115 -0
  560. info2soft/common/v20240819/DbConvert.py +46 -0
  561. info2soft/common/v20240819/Diagnose.py +59 -0
  562. info2soft/common/v20240819/Dir.py +125 -0
  563. info2soft/common/v20240819/FindPassword.py +60 -0
  564. info2soft/common/v20240819/GeneralInterface.py +419 -0
  565. info2soft/common/v20240819/Lic.py +149 -0
  566. info2soft/common/v20240819/Logs.py +85 -0
  567. info2soft/common/v20240819/Menu.py +20 -0
  568. info2soft/common/v20240819/Notifications.py +216 -0
  569. info2soft/common/v20240819/OpLogs.py +59 -0
  570. info2soft/common/v20240819/Permission.py +58 -0
  571. info2soft/common/v20240819/Qr.py +99 -0
  572. info2soft/common/v20240819/Settings.py +729 -0
  573. info2soft/common/v20240819/Statistics.py +138 -0
  574. info2soft/common/v20240819/Tenant.py +62 -0
  575. info2soft/common/v20240819/Webhook.py +130 -0
  576. info2soft/common/v20240819/Wechat.py +45 -0
  577. info2soft/common/v20240819/__init__.py +50 -0
  578. info2soft/common/v20250123/Auth.py +148 -0
  579. info2soft/common/v20250123/BackupMigrate.py +111 -0
  580. info2soft/common/v20250123/BigScreen.py +192 -0
  581. info2soft/common/v20250123/CcMonitor.py +137 -0
  582. info2soft/common/v20250123/Client.py +254 -0
  583. info2soft/common/v20250123/CommonTemplate.py +77 -0
  584. info2soft/common/v20250123/CompareResult.py +76 -0
  585. info2soft/common/v20250123/Credential.py +115 -0
  586. info2soft/common/v20250123/DbConvert.py +46 -0
  587. info2soft/common/v20250123/Diagnose.py +59 -0
  588. info2soft/common/v20250123/Dir.py +125 -0
  589. info2soft/common/v20250123/FindPassword.py +60 -0
  590. info2soft/common/v20250123/GeneralInterface.py +419 -0
  591. info2soft/common/v20250123/GeneralSettings.py +84 -0
  592. info2soft/common/v20250123/Lic.py +149 -0
  593. info2soft/common/v20250123/LicQuota.py +102 -0
  594. info2soft/common/v20250123/Logs.py +85 -0
  595. info2soft/common/v20250123/Menu.py +20 -0
  596. info2soft/common/v20250123/Notifications.py +216 -0
  597. info2soft/common/v20250123/OpLogs.py +59 -0
  598. info2soft/common/v20250123/Permission.py +58 -0
  599. info2soft/common/v20250123/Qr.py +99 -0
  600. info2soft/common/v20250123/Settings.py +537 -0
  601. info2soft/common/v20250123/Statistics.py +163 -0
  602. info2soft/common/v20250123/Tenant.py +62 -0
  603. info2soft/common/v20250123/UserSettings.py +173 -0
  604. info2soft/common/v20250123/Webhook.py +130 -0
  605. info2soft/common/v20250123/Wechat.py +45 -0
  606. info2soft/common/v20250123/__init__.py +56 -0
  607. info2soft/common/v20250630/BackupMigrate.py +111 -0
  608. info2soft/common/v20250630/BigScreen.py +192 -0
  609. info2soft/common/v20250630/CcMonitor.py +137 -0
  610. info2soft/common/v20250630/Client.py +254 -0
  611. info2soft/common/v20250630/CommonTemplate.py +77 -0
  612. info2soft/common/v20250630/CompareResult.py +76 -0
  613. info2soft/common/v20250630/Credential.py +115 -0
  614. info2soft/common/v20250630/DbConvert.py +46 -0
  615. info2soft/common/v20250630/Diagnose.py +59 -0
  616. info2soft/common/v20250630/Dir.py +125 -0
  617. info2soft/common/v20250630/FindPassword.py +60 -0
  618. info2soft/common/v20250630/GeneralInterface.py +419 -0
  619. info2soft/common/v20250630/GeneralSettings.py +84 -0
  620. info2soft/common/v20250630/Lic.py +161 -0
  621. info2soft/common/v20250630/LicQuota.py +102 -0
  622. info2soft/common/v20250630/Logs.py +85 -0
  623. info2soft/common/v20250630/Menu.py +20 -0
  624. info2soft/common/v20250630/Notifications.py +216 -0
  625. info2soft/common/v20250630/OpLogs.py +59 -0
  626. info2soft/common/v20250630/Permission.py +58 -0
  627. info2soft/common/v20250630/Qr.py +99 -0
  628. info2soft/common/v20250630/Settings.py +537 -0
  629. info2soft/common/v20250630/Statistics.py +163 -0
  630. info2soft/common/v20250630/Tenant.py +62 -0
  631. info2soft/common/v20250630/UserSettings.py +173 -0
  632. info2soft/common/v20250630/Webhook.py +130 -0
  633. info2soft/common/v20250630/Wechat.py +45 -0
  634. info2soft/common/v20250630/__init__.py +54 -0
  635. info2soft/compat.py +76 -0
  636. info2soft/config.py +33 -0
  637. info2soft/container_cls/__init__.py +0 -0
  638. info2soft/container_cls/v20230227/ContainerCls.py +209 -0
  639. info2soft/container_cls/v20230227/__init__.py +2 -0
  640. info2soft/container_cls/v20240228/ContainerCls.py +247 -0
  641. info2soft/container_cls/v20240228/__init__.py +2 -0
  642. info2soft/dashboard/__init__.py +0 -0
  643. info2soft/dashboard/test/__init__.py +0 -0
  644. info2soft/dashboard/test/v20190104/DashboardTest.py +100 -0
  645. info2soft/dashboard/test/v20190104/__init__.py +0 -0
  646. info2soft/dashboard/test/v20220622/DashboardTest.py +100 -0
  647. info2soft/dashboard/test/v20220622/__init__.py +0 -0
  648. info2soft/dashboard/v20181227/Dashboard.py +73 -0
  649. info2soft/dashboard/v20181227/__init__.py +0 -0
  650. info2soft/dashboard/v20220622/Dashboard.py +73 -0
  651. info2soft/dashboard/v20220622/__init__.py +1 -0
  652. info2soft/dashboard/v20240819/Dashboard.py +120 -0
  653. info2soft/dashboard/v20240819/__init__.py +2 -0
  654. info2soft/dashboard/v20250123/Dashboard.py +120 -0
  655. info2soft/dashboard/v20250123/__init__.py +2 -0
  656. info2soft/dashboard/v20250630/Dashboard.py +120 -0
  657. info2soft/dashboard/v20250630/__init__.py +2 -0
  658. info2soft/dbInstance/__init__.py +0 -0
  659. info2soft/dbInstance/v20240819/DbInstance.py +140 -0
  660. info2soft/dbInstance/v20240819/__init__.py +2 -0
  661. info2soft/dbInstance/v20250123/DbInstance.py +140 -0
  662. info2soft/dbInstance/v20250123/__init__.py +2 -0
  663. info2soft/dbInstance/v20250630/DbInstance.py +140 -0
  664. info2soft/dbInstance/v20250630/__init__.py +2 -0
  665. info2soft/dedupeStorage/__init__.py +0 -0
  666. info2soft/dedupeStorage/v20240819/DedupeStorage.py +115 -0
  667. info2soft/dedupeStorage/v20240819/__init__.py +2 -0
  668. info2soft/dedupeStorage/v20250123/DedupeStorage.py +115 -0
  669. info2soft/dedupeStorage/v20250123/__init__.py +2 -0
  670. info2soft/dedupeStorage/v20250630/DedupeStorage.py +115 -0
  671. info2soft/dedupeStorage/v20250630/__init__.py +2 -0
  672. info2soft/distributor/__init__.py +1 -0
  673. info2soft/distributor/v20200727/DistributorSystem.py +216 -0
  674. info2soft/distributor/v20200727/Group.py +150 -0
  675. info2soft/distributor/v20200727/Node.py +176 -0
  676. info2soft/distributor/v20200727/__init__.py +6 -0
  677. info2soft/distributor/v20220622/DistributorSystem.py +216 -0
  678. info2soft/distributor/v20220622/Group.py +150 -0
  679. info2soft/distributor/v20220622/Node.py +176 -0
  680. info2soft/distributor/v20220622/__init__.py +6 -0
  681. info2soft/dto/Dto.py +221 -0
  682. info2soft/dto/__init__.py +0 -0
  683. info2soft/dto/v20220622/Dto.py +221 -0
  684. info2soft/dto/v20220622/__init__.py +1 -0
  685. info2soft/dto/v20230227/Dto.py +158 -0
  686. info2soft/dto/v20230227/__init__.py +2 -0
  687. info2soft/dto/v20240228/Dto.py +158 -0
  688. info2soft/dto/v20240228/__init__.py +2 -0
  689. info2soft/dto/v20240819/Dto.py +249 -0
  690. info2soft/dto/v20240819/DtoArchive.py +164 -0
  691. info2soft/dto/v20240819/__init__.py +4 -0
  692. info2soft/dto/v20250123/Dto.py +249 -0
  693. info2soft/dto/v20250123/DtoArchive.py +164 -0
  694. info2soft/dto/v20250123/__init__.py +4 -0
  695. info2soft/dto/v20250630/Dto.py +262 -0
  696. info2soft/dto/v20250630/DtoArchive.py +164 -0
  697. info2soft/dto/v20250630/__init__.py +4 -0
  698. info2soft/dtrack/Dtrack.py +809 -0
  699. info2soft/dtrack/__init__.py +2 -0
  700. info2soft/dtrack/v20220622/Dtrack.py +809 -0
  701. info2soft/dtrack/v20220622/__init__.py +2 -0
  702. info2soft/dtrack/v20230227/Dtrack.py +862 -0
  703. info2soft/dtrack/v20230227/__init__.py +2 -0
  704. info2soft/examineApprove/__init__.py +0 -0
  705. info2soft/examineApprove/v20240819/ExamineApprove.py +137 -0
  706. info2soft/examineApprove/v20240819/__init__.py +2 -0
  707. info2soft/examineApprove/v20250123/ExamineApprove.py +137 -0
  708. info2soft/examineApprove/v20250123/__init__.py +2 -0
  709. info2soft/examineApprove/v20250630/ExamineApprove.py +137 -0
  710. info2soft/examineApprove/v20250630/__init__.py +2 -0
  711. info2soft/fileWriter.py +16 -0
  712. info2soft/fingerprintDomain/__init__.py +0 -0
  713. info2soft/fingerprintDomain/v20240819/FingerprintDomain.py +89 -0
  714. info2soft/fingerprintDomain/v20240819/__init__.py +2 -0
  715. info2soft/fingerprintDomain/v20250123/FingerprintDomain.py +89 -0
  716. info2soft/fingerprintDomain/v20250123/__init__.py +2 -0
  717. info2soft/fingerprintDomain/v20250630/FingerprintDomain.py +102 -0
  718. info2soft/fingerprintDomain/v20250630/__init__.py +2 -0
  719. info2soft/fsp/FspBackup.py +228 -0
  720. info2soft/fsp/FspMove.py +233 -0
  721. info2soft/fsp/FspRecovery.py +253 -0
  722. info2soft/fsp/__init__.py +0 -0
  723. info2soft/fsp/test/FspBackupTest.py +426 -0
  724. info2soft/fsp/test/FspMoveTest.py +450 -0
  725. info2soft/fsp/test/FspRecoveryTest.py +393 -0
  726. info2soft/fsp/test/__init__.py +0 -0
  727. info2soft/fsp/test/v20220622/FspBackupTest.py +427 -0
  728. info2soft/fsp/test/v20220622/FspMoveTest.py +451 -0
  729. info2soft/fsp/test/v20220622/FspRecoveryTest.py +394 -0
  730. info2soft/fsp/test/v20220622/__init__.py +0 -0
  731. info2soft/fsp/v20220622/FspBackup.py +228 -0
  732. info2soft/fsp/v20220622/FspMove.py +233 -0
  733. info2soft/fsp/v20220622/FspRecovery.py +253 -0
  734. info2soft/fsp/v20220622/__init__.py +3 -0
  735. info2soft/fsp/v20230227/FspBackup.py +601 -0
  736. info2soft/fsp/v20230227/__init__.py +2 -0
  737. info2soft/fsp/v20240228/FspBackup.py +614 -0
  738. info2soft/fsp/v20240228/__init__.py +2 -0
  739. info2soft/fsp/v20240819/FspBackup.py +271 -0
  740. info2soft/fsp/v20240819/FspMove.py +232 -0
  741. info2soft/fsp/v20240819/FspRecovery.py +257 -0
  742. info2soft/fsp/v20240819/__init__.py +2 -0
  743. info2soft/fsp/v20250123/FspBackup.py +271 -0
  744. info2soft/fsp/v20250123/FspMove.py +232 -0
  745. info2soft/fsp/v20250123/FspRecovery.py +257 -0
  746. info2soft/fsp/v20250123/__init__.py +6 -0
  747. info2soft/fsp/v20250630/FspBackup.py +271 -0
  748. info2soft/fsp/v20250630/FspMove.py +232 -0
  749. info2soft/fsp/v20250630/FspRecovery.py +257 -0
  750. info2soft/fsp/v20250630/__init__.py +6 -0
  751. info2soft/fspBackupRule/__init__.py +0 -0
  752. info2soft/fspBackupRule/v20240819/FspBackupRule.py +154 -0
  753. info2soft/fspBackupRule/v20240819/__init__.py +2 -0
  754. info2soft/fspBackupRule/v20250123/FspBackupRule.py +154 -0
  755. info2soft/fspBackupRule/v20250123/__init__.py +2 -0
  756. info2soft/fspBackupRule/v20250630/FspBackupRule.py +154 -0
  757. info2soft/fspBackupRule/v20250630/__init__.py +2 -0
  758. info2soft/fspRecoveryRule/__init__.py +0 -0
  759. info2soft/fspRecoveryRule/v20240819/FspRecoveryRule.py +153 -0
  760. info2soft/fspRecoveryRule/v20240819/__init__.py +2 -0
  761. info2soft/fspRecoveryRule/v20250123/FspRecoveryRule.py +153 -0
  762. info2soft/fspRecoveryRule/v20250123/__init__.py +2 -0
  763. info2soft/fspRecoveryRule/v20250630/FspRecoveryRule.py +179 -0
  764. info2soft/fspRecoveryRule/v20250630/__init__.py +2 -0
  765. info2soft/fullMachineCopy/__init__.py +0 -0
  766. info2soft/fullMachineCopy/v20240819/FullMachineCopy.py +115 -0
  767. info2soft/fullMachineCopy/v20240819/__init__.py +2 -0
  768. info2soft/fullMachineCopy/v20250123/FullMachineCopy.py +115 -0
  769. info2soft/fullMachineCopy/v20250123/__init__.py +2 -0
  770. info2soft/fullMachineCopy/v20250630/FullMachineCopy.py +115 -0
  771. info2soft/fullMachineCopy/v20250630/__init__.py +2 -0
  772. info2soft/gts/__init__.py +0 -0
  773. info2soft/gts/test/GTS.py +157 -0
  774. info2soft/gts/test/__init__.py +0 -0
  775. info2soft/gts/test/v20220622/GTS.py +157 -0
  776. info2soft/gts/test/v20220622/__init__.py +0 -0
  777. info2soft/gts/v20190805/GTS.py +123 -0
  778. info2soft/gts/v20190805/__init__.py +0 -0
  779. info2soft/gts/v20220622/GTS.py +123 -0
  780. info2soft/gts/v20220622/__init__.py +1 -0
  781. info2soft/guardData/__init__.py +0 -0
  782. info2soft/guardData/v20240819/GuardData.py +114 -0
  783. info2soft/guardData/v20240819/__init__.py +2 -0
  784. info2soft/guardData/v20250123/GuardData.py +114 -0
  785. info2soft/guardData/v20250123/__init__.py +2 -0
  786. info2soft/guardData/v20250630/GuardData.py +114 -0
  787. info2soft/guardData/v20250630/__init__.py +2 -0
  788. info2soft/ha/__init__.py +1 -0
  789. info2soft/ha/test/__init__.py +0 -0
  790. info2soft/ha/test/v20190104/AppHighAvailabilityTest.py +383 -0
  791. info2soft/ha/test/v20190104/__init__.py +0 -0
  792. info2soft/ha/test/v20190806/AppHighAvailabilityTest.py +246 -0
  793. info2soft/ha/test/v20190806/__init__.py +0 -0
  794. info2soft/ha/test/v20200727/ClusterTest.py +330 -0
  795. info2soft/ha/test/v20200727/__init__.py +0 -0
  796. info2soft/ha/test/v20220622/AppHighAvailabilityTest.py +246 -0
  797. info2soft/ha/test/v20220622/ClusterTest.py +330 -0
  798. info2soft/ha/test/v20220622/__init__.py +0 -0
  799. info2soft/ha/v20181227/AppHighAvailability.py +335 -0
  800. info2soft/ha/v20181227/__init__.py +0 -0
  801. info2soft/ha/v20200724/Cluster.py +270 -0
  802. info2soft/ha/v20200724/__init__.py +2 -0
  803. info2soft/ha/v20220622/AppHighAvailability.py +335 -0
  804. info2soft/ha/v20220622/Cluster.py +270 -0
  805. info2soft/ha/v20220622/__init__.py +3 -0
  806. info2soft/ha/v20230227/AppHighAvailability.py +302 -0
  807. info2soft/ha/v20230227/Cluster.py +232 -0
  808. info2soft/ha/v20230227/__init__.py +4 -0
  809. info2soft/ha/v20240228/AppHighAvailability.py +302 -0
  810. info2soft/ha/v20240228/Cluster.py +232 -0
  811. info2soft/ha/v20240228/__init__.py +4 -0
  812. info2soft/ha/v20240819/AppHighAvailability.py +318 -0
  813. info2soft/ha/v20240819/Cluster.py +204 -0
  814. info2soft/ha/v20240819/Label.py +62 -0
  815. info2soft/ha/v20240819/__init__.py +6 -0
  816. info2soft/ha/v20250123/AppHighAvailability.py +318 -0
  817. info2soft/ha/v20250123/Cluster.py +192 -0
  818. info2soft/ha/v20250123/Label.py +62 -0
  819. info2soft/ha/v20250123/__init__.py +6 -0
  820. info2soft/ha/v20250630/AppHighAvailability.py +318 -0
  821. info2soft/ha/v20250630/Cluster.py +192 -0
  822. info2soft/ha/v20250630/Label.py +62 -0
  823. info2soft/ha/v20250630/__init__.py +6 -0
  824. info2soft/hdfs/Hdfs.py +112 -0
  825. info2soft/hdfs/__init__.py +2 -0
  826. info2soft/hdfs/v20220622/Hdfs.py +112 -0
  827. info2soft/hdfs/v20220622/__init__.py +2 -0
  828. info2soft/hdfs/v20230227/Hdfs.py +89 -0
  829. info2soft/hdfs/v20230227/__init__.py +2 -0
  830. info2soft/hdfs/v20240228/Hdfs.py +89 -0
  831. info2soft/hdfs/v20240228/__init__.py +2 -0
  832. info2soft/hdfs/v20240819/Hdfs.py +300 -0
  833. info2soft/hdfs/v20240819/__init__.py +2 -0
  834. info2soft/hdfs/v20250123/Hdfs.py +300 -0
  835. info2soft/hdfs/v20250123/__init__.py +2 -0
  836. info2soft/hdfs/v20250630/Hdfs.py +300 -0
  837. info2soft/hdfs/v20250630/__init__.py +2 -0
  838. info2soft/https.py +422 -0
  839. info2soft/hw/__init__.py +0 -0
  840. info2soft/hw/v20240819/GTS.py +87 -0
  841. info2soft/hw/v20240819/HDR.py +58 -0
  842. info2soft/hw/v20240819/__init__.py +4 -0
  843. info2soft/hw/v20250123/GTS.py +87 -0
  844. info2soft/hw/v20250123/HDR.py +58 -0
  845. info2soft/hw/v20250123/__init__.py +4 -0
  846. info2soft/hw/v20250630/CBG.py +21 -0
  847. info2soft/hw/v20250630/GTS.py +87 -0
  848. info2soft/hw/v20250630/HDR.py +121 -0
  849. info2soft/hw/v20250630/__init__.py +6 -0
  850. info2soft/mountTask/__init__.py +0 -0
  851. info2soft/mountTask/v20240819/MountTask.py +139 -0
  852. info2soft/mountTask/v20240819/__init__.py +2 -0
  853. info2soft/mountTask/v20250123/MountTask.py +139 -0
  854. info2soft/mountTask/v20250123/__init__.py +2 -0
  855. info2soft/mountTask/v20250630/MountTask.py +139 -0
  856. info2soft/mountTask/v20250630/__init__.py +2 -0
  857. info2soft/nas/__init__.py +0 -0
  858. info2soft/nas/test/NASTest.py +111 -0
  859. info2soft/nas/test/__init__.py +0 -0
  860. info2soft/nas/test/v20190104/NASTest.py +173 -0
  861. info2soft/nas/test/v20190104/__init__.py +0 -0
  862. info2soft/nas/test/v20220622/NASTest.py +175 -0
  863. info2soft/nas/test/v20220622/__init__.py +0 -0
  864. info2soft/nas/v20190102/NAS.py +119 -0
  865. info2soft/nas/v20190102/__init__.py +0 -0
  866. info2soft/nas/v20220622/NAS.py +119 -0
  867. info2soft/nas/v20220622/__init__.py +1 -0
  868. info2soft/nas/v20230227/NAS.py +102 -0
  869. info2soft/nas/v20230227/__init__.py +2 -0
  870. info2soft/nas/v20240228/NAS.py +102 -0
  871. info2soft/nas/v20240228/__init__.py +2 -0
  872. info2soft/nas/v20240819/Nas.py +115 -0
  873. info2soft/nas/v20240819/__init__.py +2 -0
  874. info2soft/nas/v20250123/Nas.py +115 -0
  875. info2soft/nas/v20250123/__init__.py +2 -0
  876. info2soft/nas/v20250630/Nas.py +115 -0
  877. info2soft/nas/v20250630/__init__.py +2 -0
  878. info2soft/nbuBackupSet/__init__.py +0 -0
  879. info2soft/nbuBackupSet/v20250630/NbuBackupSet.py +34 -0
  880. info2soft/nbuBackupSet/v20250630/__init__.py +2 -0
  881. info2soft/notifications/__init__.py +0 -0
  882. info2soft/notifications/test/NotificationsTest.py +90 -0
  883. info2soft/notifications/test/__init__.py +0 -0
  884. info2soft/notifications/test/v20190104/NotificationsTest.py +192 -0
  885. info2soft/notifications/test/v20190104/__init__.py +0 -0
  886. info2soft/notifications/test/v20190806/NotificationsTest.py +63 -0
  887. info2soft/notifications/test/v20190806/__init__.py +0 -0
  888. info2soft/notifications/v20181227/Notifications.py +142 -0
  889. info2soft/notifications/v20181227/__init__.py +0 -0
  890. info2soft/recovery/__init__.py +0 -0
  891. info2soft/recovery/v20240819/Recovery.py +34 -0
  892. info2soft/recovery/v20240819/__init__.py +2 -0
  893. info2soft/recovery/v20250123/Recovery.py +34 -0
  894. info2soft/recovery/v20250123/__init__.py +2 -0
  895. info2soft/recovery/v20250630/Recovery.py +34 -0
  896. info2soft/recovery/v20250630/__init__.py +2 -0
  897. info2soft/recoveryRule/__init__.py +0 -0
  898. info2soft/recoveryRule/v20240228/RecoveryRule.py +212 -0
  899. info2soft/recoveryRule/v20240228/__init__.py +2 -0
  900. info2soft/recoveryRule/v20240819/RecoveryRule.py +207 -0
  901. info2soft/recoveryRule/v20240819/__init__.py +2 -0
  902. info2soft/recoveryRule/v20250123/RecoveryRule.py +207 -0
  903. info2soft/recoveryRule/v20250123/__init__.py +2 -0
  904. info2soft/recoveryRule/v20250630/BatchRecoveryRule.py +154 -0
  905. info2soft/recoveryRule/v20250630/RecoveryRule.py +220 -0
  906. info2soft/recoveryRule/v20250630/__init__.py +4 -0
  907. info2soft/recycleBin/__init__.py +0 -0
  908. info2soft/recycleBin/v20240819/RecycleBin.py +35 -0
  909. info2soft/recycleBin/v20240819/__init__.py +2 -0
  910. info2soft/recycleBin/v20250123/RecycleBin.py +35 -0
  911. info2soft/recycleBin/v20250123/__init__.py +2 -0
  912. info2soft/recycleBin/v20250630/RecycleBin.py +35 -0
  913. info2soft/recycleBin/v20250630/__init__.py +2 -0
  914. info2soft/remoteRep/__init__.py +0 -0
  915. info2soft/remoteRep/v20240819/RemoteRep.py +206 -0
  916. info2soft/remoteRep/v20240819/__init__.py +2 -0
  917. info2soft/remoteRep/v20250123/RemoteRep.py +206 -0
  918. info2soft/remoteRep/v20250123/__init__.py +2 -0
  919. info2soft/remoteRep/v20250630/RemoteRep.py +206 -0
  920. info2soft/remoteRep/v20250630/__init__.py +2 -0
  921. info2soft/remote_rep/__init__.py +0 -0
  922. info2soft/remote_rep/v20230227/RemoteRep.py +167 -0
  923. info2soft/remote_rep/v20230227/__init__.py +2 -0
  924. info2soft/remote_rep/v20240228/RemoteRep.py +211 -0
  925. info2soft/remote_rep/v20240228/__init__.py +2 -0
  926. info2soft/rep/__init__.py +0 -0
  927. info2soft/rep/test/__init__.py +0 -0
  928. info2soft/rep/test/v20190104/RepBackupTest.py +513 -0
  929. info2soft/rep/test/v20190104/RepRecoveryTest.py +279 -0
  930. info2soft/rep/test/v20190104/__init__.py +0 -0
  931. info2soft/rep/test/v20220622/RepBackupTest.py +513 -0
  932. info2soft/rep/test/v20220622/RepRecoveryTest.py +279 -0
  933. info2soft/rep/test/v20220622/__init__.py +0 -0
  934. info2soft/rep/v20181227/RepBackup.py +325 -0
  935. info2soft/rep/v20181227/RepRecovery.py +203 -0
  936. info2soft/rep/v20181227/__init__.py +0 -0
  937. info2soft/rep/v20220622/RepBackup.py +325 -0
  938. info2soft/rep/v20220622/RepRecovery.py +203 -0
  939. info2soft/rep/v20220622/__init__.py +2 -0
  940. info2soft/rep/v20230227/RepBackup.py +308 -0
  941. info2soft/rep/v20230227/RepRecovery.py +156 -0
  942. info2soft/rep/v20230227/__init__.py +4 -0
  943. info2soft/rep/v20240228/RepBackup.py +308 -0
  944. info2soft/rep/v20240228/RepRecovery.py +156 -0
  945. info2soft/rep/v20240228/__init__.py +4 -0
  946. info2soft/rep/v20240819/RepBackup.py +360 -0
  947. info2soft/rep/v20240819/RepRecovery.py +195 -0
  948. info2soft/rep/v20240819/__init__.py +4 -0
  949. info2soft/rep/v20250123/RepBackup.py +360 -0
  950. info2soft/rep/v20250123/RepRecovery.py +195 -0
  951. info2soft/rep/v20250123/__init__.py +4 -0
  952. info2soft/rep/v20250630/RepBackup.py +360 -0
  953. info2soft/rep/v20250630/RepRecovery.py +195 -0
  954. info2soft/rep/v20250630/__init__.py +4 -0
  955. info2soft/replica/__init__.py +0 -0
  956. info2soft/replica/v20240819/First.py +115 -0
  957. info2soft/replica/v20240819/Second.py +139 -0
  958. info2soft/replica/v20240819/__init__.py +4 -0
  959. info2soft/replica/v20250123/First.py +115 -0
  960. info2soft/replica/v20250123/Second.py +139 -0
  961. info2soft/replica/v20250123/__init__.py +4 -0
  962. info2soft/replica/v20250630/First.py +115 -0
  963. info2soft/replica/v20250630/Second.py +139 -0
  964. info2soft/replica/v20250630/__init__.py +4 -0
  965. info2soft/resource/__init__.py +2 -0
  966. info2soft/resource/test/__init__.py +0 -0
  967. info2soft/resource/test/v20190104/BizGroupTest.py +143 -0
  968. info2soft/resource/test/v20190104/ClusterTest.py +219 -0
  969. info2soft/resource/test/v20190104/NodeTest.py +575 -0
  970. info2soft/resource/test/v20190104/__init__.py +0 -0
  971. info2soft/resource/test/v20200727/BoxVmTest.py +139 -0
  972. info2soft/resource/test/v20200727/__init__.py +0 -0
  973. info2soft/resource/test/v20200930/ActiveNodeTest.py +479 -0
  974. info2soft/resource/test/v20200930/AppTypeTest.py +98 -0
  975. info2soft/resource/test/v20200930/AuthorizationTest.py +140 -0
  976. info2soft/resource/test/v20200930/CopyVolume.py +155 -0
  977. info2soft/resource/test/v20200930/DedupePoolTest.py +151 -0
  978. info2soft/resource/test/v20200930/DtoHostTest.py +266 -0
  979. info2soft/resource/test/v20200930/DtoLifeManagementTest.py +140 -0
  980. info2soft/resource/test/v20200930/DtoStorageTest.py +144 -0
  981. info2soft/resource/test/v20200930/HdfsPlatformTest.py +167 -0
  982. info2soft/resource/test/v20200930/MonitorTest.py +109 -0
  983. info2soft/resource/test/v20200930/NodeDbConfigTest.py +82 -0
  984. info2soft/resource/test/v20200930/NodeProxyTest.py +100 -0
  985. info2soft/resource/test/v20200930/ReCyleTest.py +76 -0
  986. info2soft/resource/test/v20200930/ServiceClusterTest.py +151 -0
  987. info2soft/resource/test/v20200930/StoragePool.py +200 -0
  988. info2soft/resource/test/v20200930/StorageTest.py +1734 -0
  989. info2soft/resource/test/v20200930/VirtualizationSupportTest.py +536 -0
  990. info2soft/resource/test/v20200930/__init__.py +0 -0
  991. info2soft/resource/test/v20220622/ActiveNodeTest.py +479 -0
  992. info2soft/resource/test/v20220622/AppTypeTest.py +98 -0
  993. info2soft/resource/test/v20220622/AuthorizationTest.py +140 -0
  994. info2soft/resource/test/v20220622/CopyVolume.py +155 -0
  995. info2soft/resource/test/v20220622/DedupePoolTest.py +151 -0
  996. info2soft/resource/test/v20220622/DtoHostTest.py +266 -0
  997. info2soft/resource/test/v20220622/DtoLifeManagementTest.py +140 -0
  998. info2soft/resource/test/v20220622/DtoStorageTest.py +144 -0
  999. info2soft/resource/test/v20220622/HdfsPlatformTest.py +167 -0
  1000. info2soft/resource/test/v20220622/MonitorTest.py +109 -0
  1001. info2soft/resource/test/v20220622/NodeDbConfigTest.py +82 -0
  1002. info2soft/resource/test/v20220622/NodeProxyTest.py +100 -0
  1003. info2soft/resource/test/v20220622/ReCyleTest.py +76 -0
  1004. info2soft/resource/test/v20220622/ServiceClusterTest.py +151 -0
  1005. info2soft/resource/test/v20220622/StoragePool.py +200 -0
  1006. info2soft/resource/test/v20220622/StorageTest.py +1734 -0
  1007. info2soft/resource/test/v20220622/VirtualizationSupportTest.py +536 -0
  1008. info2soft/resource/test/v20220622/__init__.py +0 -0
  1009. info2soft/resource/v20181227/BizGroup.py +106 -0
  1010. info2soft/resource/v20181227/Cluster.py +190 -0
  1011. info2soft/resource/v20181227/Node.py +463 -0
  1012. info2soft/resource/v20181227/__init__.py +6 -0
  1013. info2soft/resource/v20200727/BoxVm.py +106 -0
  1014. info2soft/resource/v20200727/__init__.py +2 -0
  1015. info2soft/resource/v20200729/AppSystem.py +364 -0
  1016. info2soft/resource/v20200729/__init__.py +2 -0
  1017. info2soft/resource/v20200930/ActiveNode.py +297 -0
  1018. info2soft/resource/v20200930/AppType.py +75 -0
  1019. info2soft/resource/v20200930/Authorization.py +99 -0
  1020. info2soft/resource/v20200930/CopyVolume.py +129 -0
  1021. info2soft/resource/v20200930/DedupePool.py +126 -0
  1022. info2soft/resource/v20200930/DtoHost.py +242 -0
  1023. info2soft/resource/v20200930/DtoLifeManagement.py +91 -0
  1024. info2soft/resource/v20200930/DtoStorage.py +102 -0
  1025. info2soft/resource/v20200930/HdfsPlatform.py +102 -0
  1026. info2soft/resource/v20200930/Monitor.py +99 -0
  1027. info2soft/resource/v20200930/NodeDbConfig.py +47 -0
  1028. info2soft/resource/v20200930/NodeProxy.py +76 -0
  1029. info2soft/resource/v20200930/ReCyle.py +47 -0
  1030. info2soft/resource/v20200930/ServiceCluster.py +100 -0
  1031. info2soft/resource/v20200930/Storage.py +1443 -0
  1032. info2soft/resource/v20200930/StoragePool.py +166 -0
  1033. info2soft/resource/v20200930/VirtualizationSupport.py +464 -0
  1034. info2soft/resource/v20200930/__init__.py +17 -0
  1035. info2soft/resource/v20220622/ActiveNode.py +297 -0
  1036. info2soft/resource/v20220622/AppType.py +75 -0
  1037. info2soft/resource/v20220622/Authorization.py +99 -0
  1038. info2soft/resource/v20220622/CopyVolume.py +129 -0
  1039. info2soft/resource/v20220622/DedupePool.py +126 -0
  1040. info2soft/resource/v20220622/DtoHost.py +242 -0
  1041. info2soft/resource/v20220622/DtoLifeManagement.py +91 -0
  1042. info2soft/resource/v20220622/DtoStorage.py +102 -0
  1043. info2soft/resource/v20220622/HdfsPlatform.py +102 -0
  1044. info2soft/resource/v20220622/Monitor.py +99 -0
  1045. info2soft/resource/v20220622/NodeDbConfig.py +47 -0
  1046. info2soft/resource/v20220622/NodeProxy.py +76 -0
  1047. info2soft/resource/v20220622/ReCyle.py +47 -0
  1048. info2soft/resource/v20220622/ServiceCluster.py +100 -0
  1049. info2soft/resource/v20220622/Storage.py +1443 -0
  1050. info2soft/resource/v20220622/StoragePool.py +166 -0
  1051. info2soft/resource/v20220622/VirtualizationSupport.py +464 -0
  1052. info2soft/resource/v20220622/__init__.py +25 -0
  1053. info2soft/resource/v20230227/ActiveNode.py +361 -0
  1054. info2soft/resource/v20230227/AppSystem.py +307 -0
  1055. info2soft/resource/v20230227/AppType.py +75 -0
  1056. info2soft/resource/v20230227/Authorization.py +86 -0
  1057. info2soft/resource/v20230227/BizGroup.py +118 -0
  1058. info2soft/resource/v20230227/BoxVm.py +100 -0
  1059. info2soft/resource/v20230227/Cluster.py +180 -0
  1060. info2soft/resource/v20230227/ContainerCluster.py +313 -0
  1061. info2soft/resource/v20230227/CopyVolume.py +130 -0
  1062. info2soft/resource/v20230227/DedupePool.py +101 -0
  1063. info2soft/resource/v20230227/DtoHost.py +218 -0
  1064. info2soft/resource/v20230227/DtoLifeManagement.py +91 -0
  1065. info2soft/resource/v20230227/DtoStorage.py +128 -0
  1066. info2soft/resource/v20230227/HdfsPlatform.py +102 -0
  1067. info2soft/resource/v20230227/Monitor.py +92 -0
  1068. info2soft/resource/v20230227/Node.py +518 -0
  1069. info2soft/resource/v20230227/NodeDbConfig.py +47 -0
  1070. info2soft/resource/v20230227/NodeProxy.py +76 -0
  1071. info2soft/resource/v20230227/Npsvr.py +126 -0
  1072. info2soft/resource/v20230227/ReCyle.py +60 -0
  1073. info2soft/resource/v20230227/ServiceCluster.py +139 -0
  1074. info2soft/resource/v20230227/Storage.py +1374 -0
  1075. info2soft/resource/v20230227/StoragePool.py +180 -0
  1076. info2soft/resource/v20230227/Ukey.py +153 -0
  1077. info2soft/resource/v20230227/VirtualizationSupport.py +604 -0
  1078. info2soft/resource/v20230227/__init__.py +46 -0
  1079. info2soft/resource/v20240228/ActiveDbType.py +99 -0
  1080. info2soft/resource/v20240228/ActiveNode.py +387 -0
  1081. info2soft/resource/v20240228/AppSystem.py +1221 -0
  1082. info2soft/resource/v20240228/AppType.py +80 -0
  1083. info2soft/resource/v20240228/Authorization.py +86 -0
  1084. info2soft/resource/v20240228/BizGroup.py +118 -0
  1085. info2soft/resource/v20240228/BoxVm.py +119 -0
  1086. info2soft/resource/v20240228/Cfs.py +133 -0
  1087. info2soft/resource/v20240228/Cluster.py +206 -0
  1088. info2soft/resource/v20240228/ContainerCluster.py +313 -0
  1089. info2soft/resource/v20240228/CopyVolume.py +139 -0
  1090. info2soft/resource/v20240228/DedupePool.py +126 -0
  1091. info2soft/resource/v20240228/DtoHost.py +254 -0
  1092. info2soft/resource/v20240228/DtoLifeManagement.py +96 -0
  1093. info2soft/resource/v20240228/DtoStorage.py +128 -0
  1094. info2soft/resource/v20240228/Filesystem.py +114 -0
  1095. info2soft/resource/v20240228/HdfsPlatform.py +288 -0
  1096. info2soft/resource/v20240228/LanfreeChannel.py +101 -0
  1097. info2soft/resource/v20240228/Monitor.py +92 -0
  1098. info2soft/resource/v20240228/Node.py +544 -0
  1099. info2soft/resource/v20240228/NodeDbConfig.py +47 -0
  1100. info2soft/resource/v20240228/NodeProxy.py +76 -0
  1101. info2soft/resource/v20240228/Npsvr.py +164 -0
  1102. info2soft/resource/v20240228/ReCyle.py +60 -0
  1103. info2soft/resource/v20240228/ServiceCluster.py +140 -0
  1104. info2soft/resource/v20240228/Storage.py +1452 -0
  1105. info2soft/resource/v20240228/StoragePool.py +253 -0
  1106. info2soft/resource/v20240228/StorageUnit.py +196 -0
  1107. info2soft/resource/v20240228/Tape.py +487 -0
  1108. info2soft/resource/v20240228/Ukey.py +248 -0
  1109. info2soft/resource/v20240228/VirtualizationSupport.py +620 -0
  1110. info2soft/resource/v20240228/__init__.py +52 -0
  1111. info2soft/resource/v20240819/ActiveDbType.py +113 -0
  1112. info2soft/resource/v20240819/ActiveNode.py +375 -0
  1113. info2soft/resource/v20240819/ActiveNodeCluster.py +141 -0
  1114. info2soft/resource/v20240819/ActiveNodeV3.py +348 -0
  1115. info2soft/resource/v20240819/AppSystem.py +181 -0
  1116. info2soft/resource/v20240819/AppType.py +75 -0
  1117. info2soft/resource/v20240819/BigdataPlatform.py +194 -0
  1118. info2soft/resource/v20240819/BizGroup.py +118 -0
  1119. info2soft/resource/v20240819/BoxVm.py +100 -0
  1120. info2soft/resource/v20240819/Cfs.py +128 -0
  1121. info2soft/resource/v20240819/Cluster.py +206 -0
  1122. info2soft/resource/v20240819/ContainerCluster.py +326 -0
  1123. info2soft/resource/v20240819/CopyVolume.py +156 -0
  1124. info2soft/resource/v20240819/DedupePool.py +114 -0
  1125. info2soft/resource/v20240819/DiskPool.py +89 -0
  1126. info2soft/resource/v20240819/DtoHost.py +270 -0
  1127. info2soft/resource/v20240819/DtoLifeManagement.py +60 -0
  1128. info2soft/resource/v20240819/DtoStorage.py +128 -0
  1129. info2soft/resource/v20240819/DtoStorageBucket.py +74 -0
  1130. info2soft/resource/v20240819/Filesystem.py +114 -0
  1131. info2soft/resource/v20240819/HdfsPlatform.py +141 -0
  1132. info2soft/resource/v20240819/LanfreeChannel.py +114 -0
  1133. info2soft/resource/v20240819/Monitor.py +92 -0
  1134. info2soft/resource/v20240819/Node.py +611 -0
  1135. info2soft/resource/v20240819/NodeDbConfig.py +47 -0
  1136. info2soft/resource/v20240819/NodeProxy.py +76 -0
  1137. info2soft/resource/v20240819/Npsvr.py +130 -0
  1138. info2soft/resource/v20240819/ReCyle.py +47 -0
  1139. info2soft/resource/v20240819/ServiceCluster.py +139 -0
  1140. info2soft/resource/v20240819/Storage.py +1530 -0
  1141. info2soft/resource/v20240819/StoragePool.py +206 -0
  1142. info2soft/resource/v20240819/StorageUnit.py +209 -0
  1143. info2soft/resource/v20240819/Tape.py +505 -0
  1144. info2soft/resource/v20240819/Ukey.py +218 -0
  1145. info2soft/resource/v20240819/VirtualizationSupport.py +741 -0
  1146. info2soft/resource/v20240819/__init__.py +70 -0
  1147. info2soft/resource/v20250123/ActiveDbType.py +113 -0
  1148. info2soft/resource/v20250123/ActiveNode.py +375 -0
  1149. info2soft/resource/v20250123/ActiveNodeCluster.py +141 -0
  1150. info2soft/resource/v20250123/ActiveNodeV3.py +348 -0
  1151. info2soft/resource/v20250123/AppSystem.py +181 -0
  1152. info2soft/resource/v20250123/AppType.py +75 -0
  1153. info2soft/resource/v20250123/BigdataPlatform.py +194 -0
  1154. info2soft/resource/v20250123/BizGroup.py +118 -0
  1155. info2soft/resource/v20250123/BoxVm.py +100 -0
  1156. info2soft/resource/v20250123/Cfs.py +128 -0
  1157. info2soft/resource/v20250123/Cluster.py +245 -0
  1158. info2soft/resource/v20250123/ContainerCluster.py +326 -0
  1159. info2soft/resource/v20250123/CopyVolume.py +156 -0
  1160. info2soft/resource/v20250123/DedupePool.py +114 -0
  1161. info2soft/resource/v20250123/DiskPool.py +89 -0
  1162. info2soft/resource/v20250123/DtoGateway.py +116 -0
  1163. info2soft/resource/v20250123/DtoHost.py +270 -0
  1164. info2soft/resource/v20250123/DtoLifeManagement.py +60 -0
  1165. info2soft/resource/v20250123/DtoStorage.py +128 -0
  1166. info2soft/resource/v20250123/DtoStorageBucket.py +89 -0
  1167. info2soft/resource/v20250123/Filesystem.py +114 -0
  1168. info2soft/resource/v20250123/HdfsPlatform.py +141 -0
  1169. info2soft/resource/v20250123/LanfreeChannel.py +114 -0
  1170. info2soft/resource/v20250123/Monitor.py +92 -0
  1171. info2soft/resource/v20250123/Node.py +611 -0
  1172. info2soft/resource/v20250123/NodeDbConfig.py +47 -0
  1173. info2soft/resource/v20250123/NodeProxy.py +76 -0
  1174. info2soft/resource/v20250123/Npsvr.py +130 -0
  1175. info2soft/resource/v20250123/ReCyle.py +47 -0
  1176. info2soft/resource/v20250123/ServiceCluster.py +139 -0
  1177. info2soft/resource/v20250123/Storage.py +1530 -0
  1178. info2soft/resource/v20250123/StoragePool.py +206 -0
  1179. info2soft/resource/v20250123/StorageUnit.py +209 -0
  1180. info2soft/resource/v20250123/Tape.py +505 -0
  1181. info2soft/resource/v20250123/Ukey.py +218 -0
  1182. info2soft/resource/v20250123/VirtualizationSupport.py +756 -0
  1183. info2soft/resource/v20250123/__init__.py +72 -0
  1184. info2soft/resource/v20250630/ActiveDbType.py +113 -0
  1185. info2soft/resource/v20250630/ActiveNode.py +375 -0
  1186. info2soft/resource/v20250630/ActiveNodeCluster.py +141 -0
  1187. info2soft/resource/v20250630/ActiveNodeClusterV3.py +141 -0
  1188. info2soft/resource/v20250630/ActiveNodeV3.py +361 -0
  1189. info2soft/resource/v20250630/AppSystem.py +181 -0
  1190. info2soft/resource/v20250630/AppType.py +75 -0
  1191. info2soft/resource/v20250630/BigdataPlatform.py +194 -0
  1192. info2soft/resource/v20250630/BizGroup.py +118 -0
  1193. info2soft/resource/v20250630/BoxVm.py +100 -0
  1194. info2soft/resource/v20250630/Cfs.py +128 -0
  1195. info2soft/resource/v20250630/Cluster.py +335 -0
  1196. info2soft/resource/v20250630/ContainerCluster.py +325 -0
  1197. info2soft/resource/v20250630/CopyVolume.py +156 -0
  1198. info2soft/resource/v20250630/DedupePool.py +114 -0
  1199. info2soft/resource/v20250630/DiskPool.py +89 -0
  1200. info2soft/resource/v20250630/DtoGateway.py +155 -0
  1201. info2soft/resource/v20250630/DtoHost.py +270 -0
  1202. info2soft/resource/v20250630/DtoLifeManagement.py +60 -0
  1203. info2soft/resource/v20250630/DtoStorage.py +128 -0
  1204. info2soft/resource/v20250630/DtoStorageBucket.py +89 -0
  1205. info2soft/resource/v20250630/Filesystem.py +114 -0
  1206. info2soft/resource/v20250630/HdfsPlatform.py +141 -0
  1207. info2soft/resource/v20250630/LanfreeChannel.py +114 -0
  1208. info2soft/resource/v20250630/Monitor.py +92 -0
  1209. info2soft/resource/v20250630/Node.py +624 -0
  1210. info2soft/resource/v20250630/NodeDbConfig.py +47 -0
  1211. info2soft/resource/v20250630/NodeProxy.py +76 -0
  1212. info2soft/resource/v20250630/NodeV3.py +663 -0
  1213. info2soft/resource/v20250630/Npsvr.py +130 -0
  1214. info2soft/resource/v20250630/ReCyle.py +47 -0
  1215. info2soft/resource/v20250630/ServiceCluster.py +139 -0
  1216. info2soft/resource/v20250630/Storage.py +1531 -0
  1217. info2soft/resource/v20250630/StoragePool.py +206 -0
  1218. info2soft/resource/v20250630/StorageUnit.py +209 -0
  1219. info2soft/resource/v20250630/Tape.py +505 -0
  1220. info2soft/resource/v20250630/Ukey.py +218 -0
  1221. info2soft/resource/v20250630/VirtualizationSupport.py +756 -0
  1222. info2soft/resource/v20250630/__init__.py +76 -0
  1223. info2soft/retentionPolicy/__init__.py +0 -0
  1224. info2soft/retentionPolicy/v20240228/RetentionPolicy.py +33 -0
  1225. info2soft/retentionPolicy/v20240228/__init__.py +2 -0
  1226. info2soft/retentionPolicy/v20240819/RetentionPolicy.py +33 -0
  1227. info2soft/retentionPolicy/v20240819/__init__.py +2 -0
  1228. info2soft/retentionPolicy/v20250123/RetentionPolicy.py +33 -0
  1229. info2soft/retentionPolicy/v20250123/__init__.py +2 -0
  1230. info2soft/retentionPolicy/v20250630/RetentionPolicy.py +33 -0
  1231. info2soft/retentionPolicy/v20250630/__init__.py +2 -0
  1232. info2soft/ruleVersion/__init__.py +0 -0
  1233. info2soft/ruleVersion/v20240228/RuleVersion.py +34 -0
  1234. info2soft/ruleVersion/v20240228/__init__.py +2 -0
  1235. info2soft/ruleVersion/v20240819/RuleVersion.py +47 -0
  1236. info2soft/ruleVersion/v20240819/__init__.py +2 -0
  1237. info2soft/ruleVersion/v20250123/RuleVersion.py +47 -0
  1238. info2soft/ruleVersion/v20250123/__init__.py +2 -0
  1239. info2soft/ruleVersion/v20250630/RuleVersion.py +47 -0
  1240. info2soft/ruleVersion/v20250630/__init__.py +2 -0
  1241. info2soft/snapshotTask/__init__.py +0 -0
  1242. info2soft/snapshotTask/v20240819/SnapshotTask.py +157 -0
  1243. info2soft/snapshotTask/v20240819/__init__.py +2 -0
  1244. info2soft/snapshotTask/v20250123/SnapshotTask.py +157 -0
  1245. info2soft/snapshotTask/v20250123/__init__.py +2 -0
  1246. info2soft/snapshotTask/v20250630/SnapshotTask.py +157 -0
  1247. info2soft/snapshotTask/v20250630/__init__.py +2 -0
  1248. info2soft/stoCluster/__init__.py +0 -0
  1249. info2soft/stoCluster/v20250630/StoCluster.py +89 -0
  1250. info2soft/stoCluster/v20250630/__init__.py +2 -0
  1251. info2soft/storage_cdm/FfoMount.py +76 -0
  1252. info2soft/storage_cdm/MountTask.py +151 -0
  1253. info2soft/storage_cdm/SnapshotTask.py +173 -0
  1254. info2soft/storage_cdm/__init__.py +6 -0
  1255. info2soft/storage_cdm/v20220622/FfoMount.py +76 -0
  1256. info2soft/storage_cdm/v20220622/MountTask.py +151 -0
  1257. info2soft/storage_cdm/v20220622/SnapshotTask.py +173 -0
  1258. info2soft/storage_cdm/v20220622/__init__.py +6 -0
  1259. info2soft/storage_cdm/v20230227/MountTask.py +113 -0
  1260. info2soft/storage_cdm/v20230227/SnapshotTask.py +118 -0
  1261. info2soft/storage_cdm/v20230227/__init__.py +3 -0
  1262. info2soft/storage_cdm/v20240228/MountTask.py +151 -0
  1263. info2soft/storage_cdm/v20240228/SnapshotTask.py +175 -0
  1264. info2soft/storage_cdm/v20240228/__init__.py +3 -0
  1265. info2soft/stream/__init__.py +0 -0
  1266. info2soft/stream/v20240228/ObjCmp.py +21 -0
  1267. info2soft/stream/v20240228/OracleBkTakeover.py +74 -0
  1268. info2soft/stream/v20240228/OracleReverse.py +21 -0
  1269. info2soft/stream/v20240228/SyncRule.py +331 -0
  1270. info2soft/stream/v20240228/TbCmp.py +97 -0
  1271. info2soft/stream/v20240228/__init__.py +10 -0
  1272. info2soft/stream/v20240819/ObjCmp.py +99 -0
  1273. info2soft/stream/v20240819/OracleBkTakeover.py +47 -0
  1274. info2soft/stream/v20240819/OracleReverse.py +21 -0
  1275. info2soft/stream/v20240819/RuleMonitor.py +137 -0
  1276. info2soft/stream/v20240819/SyncRule.py +322 -0
  1277. info2soft/stream/v20240819/TbCmp.py +125 -0
  1278. info2soft/stream/v20240819/TrafficReport.py +47 -0
  1279. info2soft/stream/v20240819/__init__.py +14 -0
  1280. info2soft/stream/v20250123/ObjCmp.py +99 -0
  1281. info2soft/stream/v20250123/OracleBkTakeover.py +47 -0
  1282. info2soft/stream/v20250123/OracleReverse.py +21 -0
  1283. info2soft/stream/v20250123/RuleMonitor.py +137 -0
  1284. info2soft/stream/v20250123/SyncRule.py +322 -0
  1285. info2soft/stream/v20250123/TbCmp.py +125 -0
  1286. info2soft/stream/v20250123/TrafficReport.py +47 -0
  1287. info2soft/stream/v20250123/__init__.py +14 -0
  1288. info2soft/stream/v20250630/MaskAlgo.py +61 -0
  1289. info2soft/stream/v20250630/MaskRule.py +140 -0
  1290. info2soft/stream/v20250630/MaskSensType.py +50 -0
  1291. info2soft/stream/v20250630/ObjCmp.py +112 -0
  1292. info2soft/stream/v20250630/OracleBkTakeover.py +85 -0
  1293. info2soft/stream/v20250630/OracleReverse.py +21 -0
  1294. info2soft/stream/v20250630/RuleMonitor.py +137 -0
  1295. info2soft/stream/v20250630/Script.py +89 -0
  1296. info2soft/stream/v20250630/ScriptRule.py +115 -0
  1297. info2soft/stream/v20250630/SensCheck.py +143 -0
  1298. info2soft/stream/v20250630/SensMap.py +129 -0
  1299. info2soft/stream/v20250630/SyncRule.py +698 -0
  1300. info2soft/stream/v20250630/TbCmp.py +151 -0
  1301. info2soft/stream/v20250630/TrafficReport.py +47 -0
  1302. info2soft/stream/v20250630/__init__.py +28 -0
  1303. info2soft/system/__init__.py +1 -0
  1304. info2soft/system/test/__init__.py +0 -0
  1305. info2soft/system/test/v20190104/LicTest.py +215 -0
  1306. info2soft/system/test/v20190104/UserTest.py +152 -0
  1307. info2soft/system/test/v20190104/__init__.py +0 -0
  1308. info2soft/system/test/v20190806/UserTest.py +92 -0
  1309. info2soft/system/test/v20190806/__init__.py +0 -0
  1310. info2soft/system/test/v20220622/CredentialTest.py +129 -0
  1311. info2soft/system/test/v20220622/LicTest.py +215 -0
  1312. info2soft/system/test/v20220622/UserTest.py +92 -0
  1313. info2soft/system/test/v20220622/__init__.py +0 -0
  1314. info2soft/system/v20181227/Lic.py +204 -0
  1315. info2soft/system/v20181227/User.py +203 -0
  1316. info2soft/system/v20181227/__init__.py +0 -0
  1317. info2soft/system/v20200729/Credential.py +102 -0
  1318. info2soft/system/v20200729/__init__.py +2 -0
  1319. info2soft/system/v20220622/Credential.py +102 -0
  1320. info2soft/system/v20220622/Lic.py +204 -0
  1321. info2soft/system/v20220622/User.py +203 -0
  1322. info2soft/system/v20220622/__init__.py +5 -0
  1323. info2soft/system/v20240819/Lic.py +189 -0
  1324. info2soft/system/v20240819/__init__.py +2 -0
  1325. info2soft/system/v20250123/Lic.py +189 -0
  1326. info2soft/system/v20250123/__init__.py +2 -0
  1327. info2soft/system/v20250630/Lic.py +189 -0
  1328. info2soft/system/v20250630/__init__.py +2 -0
  1329. info2soft/tape/Tape.py +74 -0
  1330. info2soft/tape/__init__.py +2 -0
  1331. info2soft/tape/v20220622/Tape.py +74 -0
  1332. info2soft/tape/v20220622/__init__.py +2 -0
  1333. info2soft/tape/v20230227/Tape.py +74 -0
  1334. info2soft/tape/v20230227/__init__.py +2 -0
  1335. info2soft/tape/v20240228/Tape.py +74 -0
  1336. info2soft/tape/v20240228/__init__.py +2 -0
  1337. info2soft/tape/v20240819/TapeRecovery.py +74 -0
  1338. info2soft/tape/v20240819/__init__.py +2 -0
  1339. info2soft/tape/v20250123/TapeRecovery.py +74 -0
  1340. info2soft/tape/v20250123/__init__.py +2 -0
  1341. info2soft/tape/v20250630/TapeRecovery.py +74 -0
  1342. info2soft/tape/v20250630/__init__.py +2 -0
  1343. info2soft/tape_copy/__init__.py +0 -0
  1344. info2soft/tape_copy/v20230227/TapeCopy.py +74 -0
  1345. info2soft/tape_copy/v20230227/__init__.py +2 -0
  1346. info2soft/tape_copy/v20240228/TapeCopy.py +74 -0
  1347. info2soft/tape_copy/v20240228/__init__.py +2 -0
  1348. info2soft/taskCenter/__init__.py +0 -0
  1349. info2soft/taskCenter/v20240819/BatchTask.py +73 -0
  1350. info2soft/taskCenter/v20240819/__init__.py +2 -0
  1351. info2soft/taskCenter/v20250123/BatchTask.py +73 -0
  1352. info2soft/taskCenter/v20250123/__init__.py +2 -0
  1353. info2soft/taskCenter/v20250630/BatchTask.py +73 -0
  1354. info2soft/taskCenter/v20250630/__init__.py +2 -0
  1355. info2soft/thirdParty/__init__.py +0 -0
  1356. info2soft/thirdParty/v20240819/ThirdParty.py +21 -0
  1357. info2soft/thirdParty/v20240819/__init__.py +2 -0
  1358. info2soft/thirdParty/v20250123/ThirdParty.py +21 -0
  1359. info2soft/thirdParty/v20250123/__init__.py +2 -0
  1360. info2soft/thirdParty/v20250630/ThirdParty.py +21 -0
  1361. info2soft/thirdParty/v20250630/__init__.py +2 -0
  1362. info2soft/timing/TimingBackup.py +239 -0
  1363. info2soft/timing/TimingRecovery.py +369 -0
  1364. info2soft/timing/__init__.py +0 -0
  1365. info2soft/timing/test/TimingBackupTest.py +451 -0
  1366. info2soft/timing/test/TimingRecoveryTest.py +478 -0
  1367. info2soft/timing/test/__init__.py +0 -0
  1368. info2soft/timing/test/v20220622/TimingBackupTest.py +451 -0
  1369. info2soft/timing/test/v20220622/TimingRecoveryTest.py +478 -0
  1370. info2soft/timing/test/v20220622/__init__.py +0 -0
  1371. info2soft/timing/v20220622/TimingBackup.py +239 -0
  1372. info2soft/timing/v20220622/TimingRecovery.py +369 -0
  1373. info2soft/timing/v20220622/__init__.py +2 -0
  1374. info2soft/timing/v20230227/TimingBackup.py +626 -0
  1375. info2soft/timing/v20230227/__init__.py +2 -0
  1376. info2soft/timing/v20240228/TimingBackup.py +664 -0
  1377. info2soft/timing/v20240228/__init__.py +2 -0
  1378. info2soft/timing/v20240819/TimingBackup.py +361 -0
  1379. info2soft/timing/v20240819/TimingRecovery.py +376 -0
  1380. info2soft/timing/v20240819/__init__.py +4 -0
  1381. info2soft/timing/v20250123/TimingBackup.py +361 -0
  1382. info2soft/timing/v20250123/TimingRecovery.py +376 -0
  1383. info2soft/timing/v20250123/__init__.py +4 -0
  1384. info2soft/timing/v20250630/TimingBackup.py +361 -0
  1385. info2soft/timing/v20250630/TimingRecovery.py +376 -0
  1386. info2soft/timing/v20250630/__init__.py +4 -0
  1387. info2soft/tools/__init__.py +0 -0
  1388. info2soft/tools/test/DiagnoseTest.py +62 -0
  1389. info2soft/tools/test/__init__.py +0 -0
  1390. info2soft/tools/test/v20190104/CompareTest.py +241 -0
  1391. info2soft/tools/test/v20190104/DiagnoseTest.py +73 -0
  1392. info2soft/tools/test/v20190104/__init__.py +0 -0
  1393. info2soft/tools/test/v20220622/CompareTest.py +241 -0
  1394. info2soft/tools/test/v20220622/DiagnoseTest.py +62 -0
  1395. info2soft/tools/test/v20220622/__init__.py +0 -0
  1396. info2soft/tools/v20181227/Compare.py +177 -0
  1397. info2soft/tools/v20181227/Diagnose.py +60 -0
  1398. info2soft/tools/v20181227/__init__.py +0 -0
  1399. info2soft/tools/v20220622/Compare.py +177 -0
  1400. info2soft/tools/v20220622/Diagnose.py +60 -0
  1401. info2soft/tools/v20220622/__init__.py +2 -0
  1402. info2soft/tools/v20230227/Compare.py +129 -0
  1403. info2soft/tools/v20230227/__init__.py +2 -0
  1404. info2soft/tools/v20240228/Compare.py +129 -0
  1405. info2soft/tools/v20240228/__init__.py +2 -0
  1406. info2soft/tools/v20240819/Compare.py +156 -0
  1407. info2soft/tools/v20240819/__init__.py +2 -0
  1408. info2soft/tools/v20250123/Compare.py +156 -0
  1409. info2soft/tools/v20250123/__init__.py +2 -0
  1410. info2soft/tools/v20250630/Compare.py +156 -0
  1411. info2soft/tools/v20250630/__init__.py +2 -0
  1412. info2soft/upmonitor/__init__.py +0 -0
  1413. info2soft/upmonitor/test/UpMonitor.py +153 -0
  1414. info2soft/upmonitor/test/__init__.py +0 -0
  1415. info2soft/upmonitor/test/v20220622/UpMonitor.py +153 -0
  1416. info2soft/upmonitor/test/v20220622/__init__.py +0 -0
  1417. info2soft/upmonitor/v20190805/UpMonitor.py +134 -0
  1418. info2soft/upmonitor/v20190805/__init__.py +0 -0
  1419. info2soft/upmonitor/v20220622/UpMonitor.py +134 -0
  1420. info2soft/upmonitor/v20220622/__init__.py +1 -0
  1421. info2soft/upmonitor/v20230227/UpMonitor.py +128 -0
  1422. info2soft/upmonitor/v20230227/__init__.py +2 -0
  1423. info2soft/upmonitor/v20240228/UpMonitor.py +128 -0
  1424. info2soft/upmonitor/v20240228/__init__.py +2 -0
  1425. info2soft/upmonitor/v20240819/UpMonitor.py +245 -0
  1426. info2soft/upmonitor/v20240819/__init__.py +2 -0
  1427. info2soft/upmonitor/v20250123/UpMonitor.py +245 -0
  1428. info2soft/upmonitor/v20250123/__init__.py +2 -0
  1429. info2soft/upmonitor/v20250630/UpMonitor.py +245 -0
  1430. info2soft/upmonitor/v20250630/__init__.py +2 -0
  1431. info2soft/vmClone/__init__.py +0 -0
  1432. info2soft/vmClone/v20240819/VmCloneRule.py +100 -0
  1433. info2soft/vmClone/v20240819/VmCloneVm.py +102 -0
  1434. info2soft/vmClone/v20240819/__init__.py +4 -0
  1435. info2soft/vmClone/v20250123/VmCloneRule.py +100 -0
  1436. info2soft/vmClone/v20250123/VmCloneVm.py +102 -0
  1437. info2soft/vmClone/v20250123/__init__.py +4 -0
  1438. info2soft/vmClone/v20250630/VmCloneRule.py +100 -0
  1439. info2soft/vmClone/v20250630/VmCloneVm.py +102 -0
  1440. info2soft/vmClone/v20250630/__init__.py +4 -0
  1441. info2soft/vp/VirtualizationSupport.py +1066 -0
  1442. info2soft/vp/__init__.py +0 -0
  1443. info2soft/vp/test/VirtualizationSupportTest.py +1341 -0
  1444. info2soft/vp/test/__init__.py +0 -0
  1445. info2soft/vp/test/v20220622/VirtualizationSupportTest.py +1341 -0
  1446. info2soft/vp/test/v20220622/__init__.py +0 -0
  1447. info2soft/vp/v20220622/VirtualizationSupport.py +1066 -0
  1448. info2soft/vp/v20220622/__init__.py +1 -0
  1449. info2soft/vp/v20230227/VirtualizationSupport.py +570 -0
  1450. info2soft/vp/v20230227/__init__.py +2 -0
  1451. info2soft/vp/v20240228/VirtualizationSupport.py +570 -0
  1452. info2soft/vp/v20240228/__init__.py +2 -0
  1453. info2soft/vp/v20240819/VirtualizationSupport.py +876 -0
  1454. info2soft/vp/v20240819/__init__.py +2 -0
  1455. info2soft/vp/v20250123/VirtualizationSupport.py +876 -0
  1456. info2soft/vp/v20250123/__init__.py +2 -0
  1457. info2soft/vp/v20250630/VirtualizationSupport.py +876 -0
  1458. info2soft/vp/v20250630/__init__.py +2 -0
  1459. info2soft/vpBackupRule/__init__.py +0 -0
  1460. info2soft/vpBackupRule/v20240819/VpBackupRule.py +115 -0
  1461. info2soft/vpBackupRule/v20240819/__init__.py +2 -0
  1462. info2soft/vpBackupRule/v20250123/VpBackupRule.py +115 -0
  1463. info2soft/vpBackupRule/v20250123/__init__.py +2 -0
  1464. info2soft/vpBackupRule/v20250630/VpBackupRule.py +127 -0
  1465. info2soft/vpBackupRule/v20250630/__init__.py +2 -0
  1466. info2soft/vpRecoveryRule/__init__.py +0 -0
  1467. info2soft/vpRecoveryRule/v20240819/VpRecoveryRule.py +102 -0
  1468. info2soft/vpRecoveryRule/v20240819/__init__.py +2 -0
  1469. info2soft/vpRecoveryRule/v20250123/VpRecoveryRule.py +102 -0
  1470. info2soft/vpRecoveryRule/v20250123/__init__.py +2 -0
  1471. info2soft/vpRecoveryRule/v20250630/VpRecoveryRule.py +102 -0
  1472. info2soft/vpRecoveryRule/v20250630/__init__.py +2 -0
@@ -0,0 +1,1683 @@
1
+ from info2soft import config
2
+ from info2soft import https
3
+
4
+
5
+ class OracleRule(object):
6
+ def __init__(self, auth):
7
+ self.auth = auth
8
+
9
+ '''
10
+ * 同步规则-数据库预检(已废弃)
11
+ *
12
+ * @param dict $body 参数详见 API 手册
13
+ * @return list
14
+ '''
15
+
16
+ def describeRuleDbCheckMult(self, body):
17
+
18
+ url = '{0}/active/rule/db_check_mult'.format(config.get_default('default_api_host'))
19
+
20
+ res = https._post(url, body, self.auth)
21
+ return res
22
+
23
+ '''
24
+ * 同步规则-已同步的对象具体信息
25
+ *
26
+ * @param dict $body 参数详见 API 手册
27
+ * @return list
28
+ '''
29
+
30
+ def describeSyncRulesObjInfo(self, body):
31
+
32
+ url = '{0}/active/rule/sync_obj_info'.format(config.get_default('default_api_host'))
33
+
34
+ res = https._post(url, body, self.auth)
35
+ return res
36
+
37
+ '''
38
+ * 同步规则-增量失败DML统计
39
+ *
40
+ * @param dict $body 参数详见 API 手册
41
+ * @return list
42
+ '''
43
+
44
+ def describeSyncRulesDML(self, body):
45
+
46
+ url = '{0}/active/rule/incre_dml_summary'.format(config.get_default('default_api_host'))
47
+
48
+ res = https._post(url, body, self.auth)
49
+ return res
50
+
51
+ '''
52
+ * 同步|对象比较|对象修复|表比较 - 新建-准备-获取代理状态
53
+ *
54
+ * @return list
55
+ '''
56
+
57
+ def describeSyncRulesProxyStatus(self, body):
58
+
59
+ url = '{0}/active/rule/proxy_status'.format(config.get_default('default_api_host'))
60
+
61
+ res = https._get(url, body, self.auth)
62
+ return res
63
+
64
+ '''
65
+ * 同步规则 - 新建
66
+ *
67
+ * @param dict $body 参数详见 API 手册
68
+ * @return list
69
+ '''
70
+
71
+ def createOracleRule(self, body):
72
+
73
+ url = '{0}/active/rule'.format(config.get_default('default_api_host'))
74
+
75
+ res = https._post(url, body, self.auth)
76
+ return res
77
+
78
+ '''
79
+ * 同步规则 - 批量新建
80
+ *
81
+ * @param dict $body 参数详见 API 手册
82
+ * @return list
83
+ '''
84
+ def createBatchOracleRule(self, body):
85
+
86
+ url = '{0}/active/rule/batch'.format(config.get_default('default_api_host'))
87
+
88
+ res = https._post(url, body, self.auth)
89
+ return res
90
+
91
+ '''
92
+ * 同步规则 - 修改
93
+ *
94
+ * @param dict $body 参数详见 API 手册
95
+ * @return list
96
+ '''
97
+
98
+ def modifyOracleRule(self, body):
99
+
100
+ url = '{0}/active/rule'.format(config.get_default('default_api_host'))
101
+
102
+ res = https._put(url, body, self.auth)
103
+ return res
104
+
105
+ '''
106
+ * 同步规则 - 批量修改
107
+ *
108
+ * @param dict $body 参数详见 API 手册
109
+ * @return list
110
+ '''
111
+ def modifyOracleRuleBatch(self, body):
112
+
113
+ url = '{0}/active/rule/batch'.format(config.get_default('default_api_host'))
114
+
115
+ res = https._put(url, body, self.auth)
116
+ return res
117
+
118
+ '''
119
+ * 同步规则-删除
120
+ *
121
+ * @param dict $body 参数详见 API 手册
122
+ * @return list
123
+ '''
124
+
125
+ def deleteOracleRule(self, body):
126
+
127
+ url = '{0}/active/rule'.format(config.get_default('default_api_host'))
128
+
129
+ res = https._delete(url, body, self.auth)
130
+ return res
131
+
132
+ '''
133
+ * 同步规则-列表
134
+ *
135
+ * @param dict $body 参数详见 API 手册
136
+ * @return list
137
+ '''
138
+
139
+ def listSyncRules(self, body):
140
+
141
+ url = '{0}/active/rule'.format(config.get_default('default_api_host'))
142
+
143
+ res = https._get(url, body, self.auth)
144
+ return res
145
+
146
+ '''
147
+ * 同步规则-获取单个
148
+ *
149
+ * @body['uuid'] String 必填 节点uuid
150
+ * @param dict $body 参数详见 API 手册
151
+ * @return list
152
+ '''
153
+
154
+ def describeSyncRules(self, body, uuid):
155
+ if uuid is None:
156
+ exit()
157
+ url = '{0}/active/rule/{1}'.format(config.get_default('default_api_host'), uuid)
158
+
159
+ res = https._get(url, body, self.auth)
160
+ return res
161
+
162
+ '''
163
+ * 同步规则 - 操作 继续
164
+ *
165
+ * @param dict $body 参数详见 API 手册
166
+ * @return list
167
+ '''
168
+
169
+ def resumeOracleRule(self, body):
170
+ if body is None:
171
+ body = {
172
+ 'operate': 'resume'
173
+ }
174
+ else:
175
+ body['operate'] = 'resume'
176
+
177
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
178
+
179
+ res = https._post(url, body, self.auth)
180
+ return res
181
+
182
+ '''
183
+ * 同步规则 - 操作 停止
184
+ *
185
+ * @param dict $body 参数详见 API 手册
186
+ * @return list
187
+ '''
188
+
189
+ def stopOracleRule(self, body):
190
+ if body is None:
191
+ body = {
192
+ 'operate': 'stop'
193
+ }
194
+ else:
195
+ body['operate'] = 'stop'
196
+
197
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
198
+
199
+ res = https._post(url, body, self.auth)
200
+ return res
201
+
202
+ '''
203
+ * 同步规则 - 操作 重启
204
+ *
205
+ * @param dict $body 参数详见 API 手册
206
+ * @return list
207
+ '''
208
+
209
+ def restartOracleRule(self, body):
210
+ if body is None:
211
+ body = {
212
+ 'operate': 'restart'
213
+ }
214
+ else:
215
+ body['operate'] = 'restart'
216
+
217
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
218
+
219
+ res = https._post(url, body, self.auth)
220
+ return res
221
+
222
+ '''
223
+ * 同步规则 - 操作 开始日志解析
224
+ *
225
+ * @param dict $body 参数详见 API 手册
226
+ * @return list
227
+ '''
228
+
229
+ def startAnalysisOracleRule(self, body):
230
+ if body is None:
231
+ body = {
232
+ 'operate': 'start_analysis'
233
+ }
234
+ else:
235
+ body['operate'] = 'start_analysis'
236
+
237
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
238
+
239
+ res = https._post(url, body, self.auth)
240
+ return res
241
+
242
+ '''
243
+ * 同步规则 - 操作 停止日志解析
244
+ *
245
+ * @param dict $body 参数详见 API 手册
246
+ * @return list
247
+ '''
248
+
249
+ def stopAnalysisOracleRule(self, body):
250
+ if body is None:
251
+ body = {
252
+ 'operate': 'stop_analysis'
253
+ }
254
+ else:
255
+ body['operate'] = 'stop_analysis'
256
+
257
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
258
+
259
+ res = https._post(url, body, self.auth)
260
+ return res
261
+
262
+ '''
263
+ * 同步规则 - 操作 重新日志解析
264
+ *
265
+ * @param dict $body 参数详见 API 手册
266
+ * @return list
267
+ '''
268
+
269
+ def resetAnalysisOracleRule(self, body):
270
+ if body is None:
271
+ body = {
272
+ 'operate': 'reset_analysis'
273
+ }
274
+ else:
275
+ body['operate'] = 'reset_analysis'
276
+
277
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
278
+
279
+ res = https._post(url, body, self.auth)
280
+ return res
281
+
282
+ '''
283
+ * 同步规则 - 操作 停止规则并停止日志解析
284
+ *
285
+ * @param dict $body 参数详见 API 手册
286
+ * @return list
287
+ '''
288
+
289
+ def stopAndStopanalysisOracleRule(self, body):
290
+ if body is None:
291
+ body = {
292
+ 'operate': 'stop_and_stopanalysis'
293
+ }
294
+ else:
295
+ body['operate'] = 'stop_and_stopanalysis'
296
+
297
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
298
+
299
+ res = https._post(url, body, self.auth)
300
+ return res
301
+
302
+ '''
303
+ * 同步规则 - 操作 停止调度
304
+ *
305
+ * @param dict $body 参数详见 API 手册
306
+ * @return list
307
+ '''
308
+
309
+ def stopScheduleOracleRule(self, body):
310
+ if body is None:
311
+ body = {
312
+ 'operate': 'stop_schedule'
313
+ }
314
+ else:
315
+ body['operate'] = 'stop_schedule'
316
+
317
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
318
+
319
+ res = https._post(url, body, self.auth)
320
+ return res
321
+
322
+ '''
323
+ * 同步规则 - 操作 启动调度 暂弃
324
+ *
325
+ * @param dict $body 参数详见 API 手册
326
+ * @return list
327
+ '''
328
+
329
+ def startScheduleOracleRule(self, body):
330
+ if body is None:
331
+ body = {
332
+ 'operate': 'start_schedule'
333
+ }
334
+ else:
335
+ body['operate'] = 'start_schedule'
336
+
337
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
338
+
339
+ res = https._post(url, body, self.auth)
340
+ return res
341
+
342
+ '''
343
+ * 同步规则 - 操作
344
+ *
345
+ * @param dict $body 参数详见 API 手册
346
+ * @return list
347
+ '''
348
+
349
+ def duplicateOracleRule(self, body):
350
+ if body is None:
351
+ body = {
352
+ 'operate': 'duplicate'
353
+ }
354
+ else:
355
+ body['operate'] = 'duplicate'
356
+
357
+ url = '{0}/active/rule/operate'.format(config.get_default('default_api_host'))
358
+
359
+ res = https._post(url, body, self.auth)
360
+ return res
361
+
362
+ '''
363
+ * 同步规则-日志
364
+ *
365
+ * @param dict $body 参数详见 API 手册
366
+ * @return list
367
+ '''
368
+
369
+ def listRuleLog(self, body):
370
+
371
+ url = '{0}/active/rule/log'.format(config.get_default('default_api_host'))
372
+
373
+ res = https._post(url, body, self.auth)
374
+ return res
375
+
376
+ '''
377
+ * 同步规则-状态
378
+ *
379
+ * @param dict $body 参数详见 API 手册
380
+ * @return list
381
+ '''
382
+
383
+ def listSyncRulesStatus(self, body):
384
+
385
+ url = '{0}/active/rule/status'.format(config.get_default('default_api_host'))
386
+
387
+ res = https._get(url, body, self.auth)
388
+ return res
389
+
390
+ '''
391
+ * 同步规则 - 通用状态
392
+ *
393
+ * @param dict $body 参数详见 API 手册
394
+ * @return list
395
+ '''
396
+
397
+ def listSyncRulesGeneralStatus(self, body):
398
+
399
+ url = '{0}/active/rule/general_status'.format(config.get_default('default_api_host'))
400
+
401
+ res = https._get(url, body, self.auth)
402
+ return res
403
+
404
+ '''
405
+ * 同步规则-已同步的对象
406
+ *
407
+ * @param dict $body 参数详见 API 手册
408
+ * @return list
409
+ '''
410
+
411
+ def describeSyncRulesHasSync(self, body):
412
+
413
+ url = '{0}/active/rule/sync_obj'.format(config.get_default('default_api_host'))
414
+
415
+ res = https._post(url, body, self.auth)
416
+ return res
417
+
418
+ '''
419
+ * 同步规则-失败的对象
420
+ *
421
+ * @param dict $body 参数详见 API 手册
422
+ * @return list
423
+ '''
424
+
425
+ def describeSyncRulesFailObj(self, body):
426
+
427
+ url = '{0}/active/rule/fail_obj'.format(config.get_default('default_api_host'))
428
+
429
+ res = https._post(url, body, self.auth)
430
+ return res
431
+
432
+ '''
433
+ * 同步规则-装载信息流量图
434
+ *
435
+ * @param dict $body 参数详见 API 手册
436
+ * @return list
437
+ '''
438
+
439
+ def describeSyncRulesLoadInfo(self, body):
440
+
441
+ url = '{0}/active/rule/load_info'.format(config.get_default('default_api_host'))
442
+
443
+ res = https._post(url, body, self.auth)
444
+ return res
445
+
446
+ '''
447
+ * 同步规则-增量失败dml
448
+ *
449
+ * @param dict $body 参数详见 API 手册
450
+ * @return list
451
+ '''
452
+
453
+ def listRuleIncreDml(self, body):
454
+
455
+ url = '{0}/active/rule/incre_dml'.format(config.get_default('default_api_host'))
456
+
457
+ res = https._post(url, body, self.auth)
458
+ return res
459
+
460
+ '''
461
+ * 同步规则-已同步表
462
+ *
463
+ * @param dict $body 参数详见 API 手册
464
+ * @return list
465
+ '''
466
+
467
+ def listRuleSyncTable(self, body):
468
+
469
+ url = '{0}/active/rule/sync_table'.format(config.get_default('default_api_host'))
470
+
471
+ res = https._post(url, body, self.auth)
472
+ return res
473
+
474
+ '''
475
+ * 同步规则-获取数据库表字段
476
+ *
477
+ * @param dict $body 参数详见 API 手册
478
+ * @return list
479
+ '''
480
+
481
+ def describeRuleZStructure(self, body):
482
+
483
+ url = '{0}/active/rule/z_structure'.format(config.get_default('default_api_host'))
484
+
485
+ res = https._post(url, body, self.auth)
486
+ return res
487
+
488
+ '''
489
+ * 同步规则-流量图
490
+ *
491
+ * @param dict $body 参数详见 API 手册
492
+ * @return list
493
+ '''
494
+
495
+ def describeSyncRulesMrtg(self, body):
496
+
497
+ url = '{0}/active/rule/mrtg'.format(config.get_default('default_api_host'))
498
+
499
+ res = https._post(url, body, self.auth)
500
+ return res
501
+
502
+ '''
503
+ * 同步规则-装载延迟统计报表
504
+ *
505
+ * @param dict $body 参数详见 API 手册
506
+ * @return list
507
+ '''
508
+
509
+ def listRuleLoadDelayReport(self, body):
510
+
511
+ url = '{0}/active/rule/load_delay_report'.format(config.get_default('default_api_host'))
512
+
513
+ res = https._post(url, body, self.auth)
514
+ return res
515
+
516
+ '''
517
+ * 同步规则-增量失败ddl
518
+ *
519
+ * @param dict $body 参数详见 API 手册
520
+ * @return list
521
+ '''
522
+
523
+ def describeSyncRulesIncreDdl(self, body):
524
+
525
+ url = '{0}/active/rule/incre_ddl'.format(config.get_default('default_api_host'))
526
+
527
+ res = https._post(url, body, self.auth)
528
+ return res
529
+
530
+ '''
531
+ * 同步规则-数据库预检
532
+ *
533
+ * @param dict $body 参数详见 API 手册
534
+ * @return list
535
+ '''
536
+
537
+ def describeRuleDbCheck(self, body):
538
+
539
+ url = '{0}/active/rule/db_check'.format(config.get_default('default_api_host'))
540
+
541
+ res = https._post(url, body, self.auth)
542
+ return res
543
+
544
+ '''
545
+ * 同步规则-获取残留规则
546
+ *
547
+ * @return list
548
+ '''
549
+
550
+ def describeRuleGetFalseRule(self, body):
551
+
552
+ url = '{0}/active/rule/get_false_rule'.format(config.get_default('default_api_host'))
553
+
554
+ res = https._get(url, body, self.auth)
555
+ return res
556
+
557
+ '''
558
+ * 同步规则-选择用户
559
+ *
560
+ * @param dict $body 参数详见 API 手册
561
+ * @return list
562
+ '''
563
+
564
+ def describeRuleSelectUser(self, body):
565
+
566
+ url = '{0}/active/rule/select_user'.format(config.get_default('default_api_host'))
567
+
568
+ res = https._post(url, body, self.auth)
569
+ return res
570
+
571
+ '''
572
+ * 同步规则-表修复
573
+ *
574
+ * @param dict $body 参数详见 API 手册
575
+ * @return list
576
+ '''
577
+
578
+ def describeRuleTableFix(self, body):
579
+
580
+ url = '{0}/active/rule/table_fix'.format(config.get_default('default_api_host'))
581
+
582
+ res = https._post(url, body, self.auth)
583
+ return res
584
+
585
+ '''
586
+ * 同步规则-获取scn号
587
+ *
588
+ * @param dict $body 参数详见 API 手册
589
+ * @return list
590
+ '''
591
+
592
+ def describeRuleGetScn(self, body):
593
+
594
+ url = '{0}/active/rule/get_scn'.format(config.get_default('default_api_host'))
595
+
596
+ res = https._get(url, body, self.auth)
597
+ return res
598
+
599
+ '''
600
+ * 同步规则 - 从底层获取接管SCN
601
+ *
602
+ * @param dict $body 参数详见 API 手册
603
+ * @return list
604
+ '''
605
+ def getRevertRpcScn(self, body):
606
+
607
+ url = '{0}/active/rule/get_revert_rpc_scn'.format(config.get_default('default_api_host'))
608
+
609
+ res = https._get(url, body, self.auth)
610
+ return res
611
+
612
+ '''
613
+ * 同步规则-装载统计报表
614
+ *
615
+ * @param dict $body 参数详见 API 手册
616
+ * @return list
617
+ '''
618
+
619
+ def listRuleLoadReport(self, body):
620
+
621
+ url = '{0}/active/rule/load_report'.format(config.get_default('default_api_host'))
622
+
623
+ res = https._post(url, body, self.auth)
624
+ return res
625
+
626
+ '''
627
+ * 对象比较 - 列表
628
+ *
629
+ * @param dict $body 参数详见 API 手册
630
+ * @return list
631
+ '''
632
+
633
+ def listObjCmp(self, body):
634
+
635
+ url = '{0}/active/obj_cmp'.format(config.get_default('default_api_host'))
636
+
637
+ res = https._get(url, body, self.auth)
638
+ return res
639
+
640
+ '''
641
+ * 对象比较 - 新建
642
+ *
643
+ * @param dict $body 参数详见 API 手册
644
+ * @return list
645
+ '''
646
+
647
+ def createObjCmp(self, body):
648
+
649
+ url = '{0}/active/obj_cmp'.format(config.get_default('default_api_host'))
650
+
651
+ res = https._post(url, body, self.auth)
652
+ return res
653
+
654
+ '''
655
+ * 对象比较 - 删除
656
+ *
657
+ * @param dict $body 参数详见 API 手册
658
+ * @return list
659
+ '''
660
+
661
+ def deleteObjCmp(self, body):
662
+
663
+ url = '{0}/active/obj_cmp'.format(config.get_default('default_api_host'))
664
+
665
+ res = https._delete(url, body, self.auth)
666
+ return res
667
+
668
+ '''
669
+ * 对象比较 - 获取单个
670
+ *
671
+ * @body['uuid'] String 必填 节点uuid
672
+ * @return list
673
+ '''
674
+
675
+ def describeObjCmp(self, body, uuid):
676
+ if uuid is None:
677
+ exit()
678
+ url = '{0}/active/obj_cmp/{1}'.format(config.get_default('default_api_host'), uuid)
679
+
680
+ res = https._get(url, None, self.auth)
681
+ return res
682
+
683
+ '''
684
+ * 对象比较 - 操作 - 停止
685
+ *
686
+ * @body['uuid'] String 必填 节点uuid
687
+ * @return list
688
+ '''
689
+
690
+ def cmpStopObjCmp(self, body):
691
+ if body is None:
692
+ body = {
693
+ 'operate': 'cmp_stop'
694
+ }
695
+ else:
696
+ body['operate'] = 'cmp_stop'
697
+
698
+ url = '{0}/active/obj_cmp/operate'.format(config.get_default('default_api_host'))
699
+
700
+ res = https._post(url, body, self.auth)
701
+ return res
702
+
703
+ '''
704
+ * 对象比较 - 操作 - 重启
705
+ *
706
+ * @body['uuid'] String 必填 节点uuid
707
+ * @return list
708
+ '''
709
+
710
+ def cmpRestartObjCmp(self, body):
711
+ if body is None:
712
+ body = {
713
+ 'operate': 'cmp_restart'
714
+ }
715
+ else:
716
+ body['operate'] = 'cmp_restart'
717
+
718
+ url = '{0}/active/obj_cmp/operate'.format(config.get_default('default_api_host'))
719
+
720
+ res = https._post(url, body, self.auth)
721
+ return res
722
+
723
+ '''
724
+ * 对象比较 - 操作 - 立即比较
725
+ *
726
+ * @body['uuid'] String 必填 节点uuid
727
+ * @return list
728
+ '''
729
+
730
+ def cmpImmediateObjCmp(self, body):
731
+ if body is None:
732
+ body = {
733
+ 'operate': 'cmp_immediate'
734
+ }
735
+ else:
736
+ body['operate'] = 'cmp_immediate'
737
+
738
+ url = '{0}/active/obj_cmp/operate'.format(config.get_default('default_api_host'))
739
+
740
+ res = https._post(url, body, self.auth)
741
+ return res
742
+
743
+ '''
744
+ * 对象比较 - 操作 - 停止定时
745
+ *
746
+ * @body['uuid'] String 必填 节点uuid
747
+ * @return list
748
+ '''
749
+
750
+ def cmpStopTimeObjCmp(self, body):
751
+ if body is None:
752
+ body = {
753
+ 'operate': 'cmp_stop_time'
754
+ }
755
+ else:
756
+ body['operate'] = 'cmp_stop_time'
757
+
758
+ url = '{0}/active/obj_cmp/operate'.format(config.get_default('default_api_host'))
759
+
760
+ res = https._post(url, body, self.auth)
761
+ return res
762
+
763
+ '''
764
+ * 对象比较 - 操作 - 继续定时
765
+ *
766
+ * @body['uuid'] String 必填 节点uuid
767
+ * @return list
768
+ '''
769
+
770
+ def cmpResumeTimeObjCmp(self, body):
771
+ if body is None:
772
+ body = {
773
+ 'operate': 'cmp_resume_time'
774
+ }
775
+ else:
776
+ body['operate'] = 'cmp_resume_time'
777
+
778
+ url = '{0}/active/obj_cmp/operate'.format(config.get_default('default_api_host'))
779
+
780
+ res = https._post(url, body, self.auth)
781
+ return res
782
+
783
+ '''
784
+ * 对象比较-比较结果时间列表
785
+ *
786
+ * @param dict $body 参数详见 API 手册
787
+ * @return list
788
+ '''
789
+
790
+ def listObjCmpResultTimeList(self, body):
791
+
792
+ url = '{0}/active/obj_cmp/result_time_list'.format(config.get_default('default_api_host'))
793
+
794
+ res = https._get(url, body, self.auth)
795
+ return res
796
+
797
+ '''
798
+ * 对象比较-比较任务结果
799
+ *
800
+ * @param dict $body 参数详见 API 手册
801
+ * @return list
802
+ '''
803
+
804
+ def describeObjCmpResult(self, body):
805
+
806
+ url = '{0}/active/obj_cmp/result'.format(config.get_default('default_api_host'))
807
+
808
+ res = https._get(url, body, self.auth)
809
+ return res
810
+
811
+ '''
812
+ * 获取对象比较状态
813
+ *
814
+ * @param dict $body 参数详见 API 手册
815
+ * @return list
816
+ '''
817
+
818
+ def listObjCmpStatus(self, body):
819
+
820
+ url = '{0}/active/obj_cmp/status'.format(config.get_default('default_api_host'))
821
+
822
+ res = https._post(url, body, self.auth)
823
+ return res
824
+
825
+ '''
826
+ * 对象比较-比较结果的删除
827
+ *
828
+ * @param dict $body 参数详见 API 手册
829
+ * @return list
830
+ '''
831
+
832
+ def describeObjCmpResultTimeList(self, body):
833
+
834
+ url = '{0}/active/obj_cmp/result_time_list'.format(config.get_default('default_api_host'))
835
+
836
+ res = https._delete(url, body, self.auth)
837
+ return res
838
+
839
+ '''
840
+ * 对象比较-比较结果详细信息
841
+ *
842
+ * @param dict $body 参数详见 API 手册
843
+ * @return list
844
+ '''
845
+
846
+ def listObjCmpCmpInfo(self, body):
847
+
848
+ url = '{0}/active/obj_cmp/cmp_info'.format(config.get_default('default_api_host'))
849
+
850
+ res = https._get(url, body, self.auth)
851
+ return res
852
+
853
+ '''
854
+ * 对象修复 - 新建
855
+ *
856
+ * @param dict $body 参数详见 API 手册
857
+ * @return list
858
+ '''
859
+
860
+ def createObjFix(self, body):
861
+
862
+ url = '{0}/active/obj_fix'.format(config.get_default('default_api_host'))
863
+
864
+ res = https._post(url, body, self.auth)
865
+ return res
866
+
867
+ '''
868
+ * 对象修复 - 获取单个
869
+ *
870
+ * @body['uuid'] String 必填 节点uuid
871
+ * @param dict $body 参数详见 API 手册
872
+ * @return list
873
+ '''
874
+
875
+ def describeObjFix(self, body, uuid):
876
+ if uuid is None:
877
+ exit()
878
+ url = '{0}/active/obj_fix/{1}'.format(config.get_default('default_api_host'), uuid)
879
+
880
+ res = https._get(url, body, self.auth)
881
+ return res
882
+
883
+ '''
884
+ * 对象修复 - 删除
885
+ *
886
+ * @param dict $body 参数详见 API 手册
887
+ * @return list
888
+ '''
889
+
890
+ def deleteObjFix(self, body):
891
+
892
+ url = '{0}/active/obj_fix'.format(config.get_default('default_api_host'))
893
+
894
+ res = https._delete(url, body, self.auth)
895
+ return res
896
+
897
+ '''
898
+ * 对象修复 - 列表
899
+ *
900
+ * @param dict $body 参数详见 API 手册
901
+ * @return list
902
+ '''
903
+
904
+ def listObjFix(self, body):
905
+
906
+ url = '{0}/active/obj_fix'.format(config.get_default('default_api_host'))
907
+
908
+ res = https._get(url, body, self.auth)
909
+ return res
910
+
911
+ '''
912
+ * 对象修复-操作 重启
913
+ *
914
+ * @param dict $body 参数详见 API 手册
915
+ * @return list
916
+ '''
917
+
918
+ def restartObjFix(self, body):
919
+ if body is None:
920
+ body = {
921
+ 'operate': 'restart'
922
+ }
923
+ else:
924
+ body['operate'] = 'restart'
925
+
926
+ url = '{0}/active/obj_fix/operate'.format(config.get_default('default_api_host'))
927
+
928
+ res = https._post(url, body, self.auth)
929
+ return res
930
+
931
+ '''
932
+ * 对象修复-操作 停止
933
+ *
934
+ * @param dict $body 参数详见 API 手册
935
+ * @return list
936
+ '''
937
+
938
+ def stopObjFix(self, body):
939
+ if body is None:
940
+ body = {
941
+ 'operate': 'stop'
942
+ }
943
+ else:
944
+ body['operate'] = 'stop'
945
+
946
+ url = '{0}/active/obj_fix/operate'.format(config.get_default('default_api_host'))
947
+
948
+ res = https._post(url, body, self.auth)
949
+ return res
950
+
951
+ '''
952
+ * 对象修复 - 修复结果
953
+ *
954
+ * @param dict $body 参数详见 API 手册
955
+ * @return list
956
+ '''
957
+
958
+ def describeObjFixResult(self, body):
959
+
960
+ url = '{0}/active/obj_fix/result'.format(config.get_default('default_api_host'))
961
+
962
+ res = https._get(url, body, self.auth)
963
+ return res
964
+
965
+ '''
966
+ * 对象修复--获取状态
967
+ *
968
+ * @param dict $body 参数详见 API 手册
969
+ * @return list
970
+ '''
971
+
972
+ def listObjFixStatus(self, body):
973
+
974
+ url = '{0}/active/obj_fix/status'.format(config.get_default('default_api_host'))
975
+
976
+ res = https._post(url, body, self.auth)
977
+ return res
978
+
979
+ '''
980
+ * 表比较 - 新建
981
+ *
982
+ * @param dict $body 参数详见 API 手册
983
+ * @return list
984
+ '''
985
+
986
+ def createTbCmp(self, body):
987
+
988
+ url = '{0}/active/tb_cmp'.format(config.get_default('default_api_host'))
989
+
990
+ res = https._post(url, body, self.auth)
991
+ return res
992
+
993
+ '''
994
+ * 表比较 - 获取单个
995
+ *
996
+ * @body['uuid'] String 必填 节点uuid
997
+ * @param dict $body 参数详见 API 手册
998
+ * @return list
999
+ '''
1000
+
1001
+ def describeTbCmp(self, body, uuid):
1002
+ if uuid is None:
1003
+ exit()
1004
+ url = '{0}/active/tb_cmp/{1}'.format(config.get_default('default_api_host'), uuid)
1005
+
1006
+ res = https._get(url, body, self.auth)
1007
+ return res
1008
+
1009
+ '''
1010
+ * 表比较 - 删除
1011
+ *
1012
+ * @param dict $body 参数详见 API 手册
1013
+ * @return list
1014
+ '''
1015
+
1016
+ def deleteTbCmp(self, body):
1017
+
1018
+ url = '{0}/active/tb_cmp'.format(config.get_default('default_api_host'))
1019
+
1020
+ res = https._delete(url, body, self.auth)
1021
+ return res
1022
+
1023
+ '''
1024
+ * 表比较 - 列表
1025
+ *
1026
+ * @param dict $body 参数详见 API 手册
1027
+ * @return list
1028
+ '''
1029
+
1030
+ def listTbCmp(self, body):
1031
+
1032
+ url = '{0}/active/tb_cmp'.format(config.get_default('default_api_host'))
1033
+
1034
+ res = https._get(url, body, self.auth)
1035
+ return res
1036
+
1037
+ '''
1038
+ * 状态接口
1039
+ *
1040
+ * @param dict $body 参数详见 API 手册
1041
+ * @return list
1042
+ '''
1043
+
1044
+ def listTbCmpStatus(self, body):
1045
+
1046
+ url = '{0}/active/tb_cmp/status'.format(config.get_default('default_api_host'))
1047
+
1048
+ res = https._get(url, body, self.auth)
1049
+ return res
1050
+
1051
+ '''
1052
+ * 表比较-操作 停止
1053
+ *
1054
+ * @param dict $body 参数详见 API 手册
1055
+ * @return list
1056
+ '''
1057
+
1058
+ def stopTbCmp(self, body):
1059
+ if body is None:
1060
+ body = {
1061
+ 'operate': 'cmp_stop'
1062
+ }
1063
+ else:
1064
+ body['operate'] = 'cmp_stop'
1065
+
1066
+ url = '{0}/active/tb_cmp/operate'.format(config.get_default('default_api_host'))
1067
+
1068
+ res = https._post(url, body, self.auth)
1069
+ return res
1070
+
1071
+ '''
1072
+ * 表比较-操作 重启
1073
+ *
1074
+ * @param dict $body 参数详见 API 手册
1075
+ * @return list
1076
+ '''
1077
+
1078
+ def restartTbCmp(self, body):
1079
+ if body is None:
1080
+ body = {
1081
+ 'operate': 'cmp_restart'
1082
+ }
1083
+ else:
1084
+ body['operate'] = 'cmp_restart'
1085
+
1086
+ url = '{0}/active/tb_cmp/operate'.format(config.get_default('default_api_host'))
1087
+
1088
+ res = https._post(url, body, self.auth)
1089
+ return res
1090
+
1091
+ '''
1092
+ * 表比较-操作 立即比较
1093
+ *
1094
+ * @param dict $body 参数详见 API 手册
1095
+ * @return list
1096
+ '''
1097
+
1098
+ def cmpImmediateTbCmp(self, body):
1099
+ if body is None:
1100
+ body = {
1101
+ 'operate': 'cmp_immediate'
1102
+ }
1103
+ else:
1104
+ body['operate'] = 'cmp_immediate'
1105
+
1106
+ url = '{0}/active/tb_cmp/operate'.format(config.get_default('default_api_host'))
1107
+
1108
+ res = https._post(url, body, self.auth)
1109
+ return res
1110
+
1111
+ '''
1112
+ * 表比较-操作 停止定时
1113
+ *
1114
+ * @param dict $body 参数详见 API 手册
1115
+ * @return list
1116
+ '''
1117
+
1118
+ def cmpStopTimeTbCmp(self, body):
1119
+ if body is None:
1120
+ body = {
1121
+ 'operate': 'cmp_stop_time'
1122
+ }
1123
+ else:
1124
+ body['operate'] = 'cmp_stop_time'
1125
+
1126
+ url = '{0}/active/tb_cmp/operate'.format(config.get_default('default_api_host'))
1127
+
1128
+ res = https._post(url, body, self.auth)
1129
+ return res
1130
+
1131
+ '''
1132
+ * 表比较-操作 继续定时
1133
+ *
1134
+ * @param dict $body 参数详见 API 手册
1135
+ * @return list
1136
+ '''
1137
+
1138
+ def cmpResumeTimeTbCmp(self, body):
1139
+ if body is None:
1140
+ body = {
1141
+ 'operate': 'cmp_resume_time'
1142
+ }
1143
+ else:
1144
+ body['operate'] = 'cmp_resume_time'
1145
+
1146
+ url = '{0}/active/tb_cmp/operate'.format(config.get_default('default_api_host'))
1147
+
1148
+ res = https._post(url, body, self.auth)
1149
+ return res
1150
+
1151
+ '''
1152
+ * 表比较 - 历史结果(查看表比较时间结果集)
1153
+ *
1154
+ * @param dict $body 参数详见 API 手册
1155
+ * @return list
1156
+ '''
1157
+
1158
+ def listTbCmpResultTimeList(self, body):
1159
+
1160
+ url = '{0}/active/tb_cmp/result_time_list'.format(config.get_default('default_api_host'))
1161
+
1162
+ res = https._get(url, body, self.auth)
1163
+ return res
1164
+
1165
+ '''
1166
+ * 表比较-比较结果的删除
1167
+ *
1168
+ * @param dict $body 参数详见 API 手册
1169
+ * @return list
1170
+ '''
1171
+
1172
+ def describeTbCmpResuluTimeList(self, body):
1173
+
1174
+ url = '{0}/active/tb_cmp/result_time_list'.format(config.get_default('default_api_host'))
1175
+
1176
+ res = https._delete(url, body, self.auth)
1177
+ return res
1178
+
1179
+ '''
1180
+ * 表比较-比较任务结果
1181
+ *
1182
+ * @param dict $body 参数详见 API 手册
1183
+ * @return list
1184
+ '''
1185
+
1186
+ def describeTbCmpResult(self, body):
1187
+
1188
+ url = '{0}/active/tb_cmp/result'.format(config.get_default('default_api_host'))
1189
+
1190
+ res = https._get(url, body, self.auth)
1191
+ return res
1192
+
1193
+ '''
1194
+ * 表比较-错误信息
1195
+ *
1196
+ * @param dict $body 参数详见 API 手册
1197
+ * @return list
1198
+ '''
1199
+
1200
+ def describeTbCmpErrorMsg(self, body):
1201
+
1202
+ url = '{0}/active/tb_cmp/error_msg'.format(config.get_default('default_api_host'))
1203
+
1204
+ res = https._get(url, body, self.auth)
1205
+ return res
1206
+
1207
+ '''
1208
+ * 表比较-表比对的详细信息
1209
+ *
1210
+ * @param dict $body 参数详见 API 手册
1211
+ * @return list
1212
+ '''
1213
+
1214
+ def describeTbCmpCmpDesc(self, body):
1215
+
1216
+ url = '{0}/active/tb_cmp/cmp_describe'.format(config.get_default('default_api_host'))
1217
+
1218
+ res = https._get(url, body, self.auth)
1219
+ return res
1220
+
1221
+ '''
1222
+ * 表比较-比较结果
1223
+ *
1224
+ * @param dict $body 参数详见 API 手册
1225
+ * @return list
1226
+ '''
1227
+
1228
+ def describeTbCmpCmpResult(self, body):
1229
+
1230
+ url = '{0}/active/tb_cmp/cmp_result'.format(config.get_default('default_api_host'))
1231
+
1232
+ res = https._get(url, body, self.auth)
1233
+ return res
1234
+
1235
+ '''
1236
+ * 备端接管-获取网卡列表
1237
+ *
1238
+ * @param dict $body 参数详见 API 手册
1239
+ * @return list
1240
+ '''
1241
+
1242
+ def listBkTakeoveNetworkCard(self, body):
1243
+
1244
+ url = '{0}/active/bk_takeover/bk_network_card'.format(config.get_default('default_api_host'))
1245
+
1246
+ res = https._get(url, body, self.auth)
1247
+ return res
1248
+
1249
+ '''
1250
+ * 备端接管-新建
1251
+ *
1252
+ * @param dict $body 参数详见 API 手册
1253
+ * @return list
1254
+ '''
1255
+
1256
+ def createBkTakeover(self, body):
1257
+
1258
+ url = '{0}/active/bk_takeover'.format(config.get_default('default_api_host'))
1259
+
1260
+ res = https._post(url, body, self.auth)
1261
+ return res
1262
+
1263
+ '''
1264
+ * 备端接管-查看
1265
+ *
1266
+ * @body['uuid'] String 必填 节点uuid
1267
+ * @return list
1268
+ '''
1269
+
1270
+ def describeBkTakeover(self, body, uuid):
1271
+ if uuid is None:
1272
+ exit()
1273
+ url = '{0}/active/bk_takeover/{1}'.format(config.get_default('default_api_host'), uuid)
1274
+
1275
+ res = https._get(url, None, self.auth)
1276
+ return res
1277
+
1278
+ '''
1279
+ * 备机接管-删除
1280
+ *
1281
+ * @param dict $body 参数详见 API 手册
1282
+ * @return list
1283
+ '''
1284
+
1285
+ def deleteBkTakeover(self, body):
1286
+
1287
+ url = '{0}/active/bk_takeover'.format(config.get_default('default_api_host'))
1288
+
1289
+ res = https._delete(url, body, self.auth)
1290
+ return res
1291
+
1292
+ '''
1293
+ * 备机接管-接管结果
1294
+ *
1295
+ * @param dict $body 参数详见 API 手册
1296
+ * @return list
1297
+ '''
1298
+
1299
+ def describeBkTakeoverResult(self, body):
1300
+
1301
+ url = '{0}/active/bk_takeover/result'.format(config.get_default('default_api_host'))
1302
+
1303
+ res = https._get(url, body, self.auth)
1304
+ return res
1305
+
1306
+ '''
1307
+ * 备机接管-操作 停止
1308
+ *
1309
+ * @param dict $body 参数详见 API 手册
1310
+ * @return list
1311
+ '''
1312
+
1313
+ def stopBkTakeover(self, body):
1314
+ if body is None:
1315
+ body = {
1316
+ 'operate': 'stop'
1317
+ }
1318
+ else:
1319
+ body['operate'] = 'stop'
1320
+
1321
+ url = '{0}/active/bk_takeover/operate'.format(config.get_default('default_api_host'))
1322
+
1323
+ res = https._post(url, body, self.auth)
1324
+ return res
1325
+
1326
+ '''
1327
+ * 备机接管-操作 重启
1328
+ *
1329
+ * @param dict $body 参数详见 API 手册
1330
+ * @return list
1331
+ '''
1332
+
1333
+ def restartBkTakeover(self, body):
1334
+ if body is None:
1335
+ body = {
1336
+ 'operate': 'restart'
1337
+ }
1338
+ else:
1339
+ body['operate'] = 'restart'
1340
+
1341
+ url = '{0}/active/bk_takeover/operate'.format(config.get_default('default_api_host'))
1342
+
1343
+ res = https._post(url, body, self.auth)
1344
+ return res
1345
+
1346
+ '''
1347
+ * 备端接管-获取状态
1348
+ *
1349
+ * @param dict $body 参数详见 API 手册
1350
+ * @return list
1351
+ '''
1352
+
1353
+ def listBkTakeoverStatus(self, body):
1354
+
1355
+ url = '{0}/active/bk_takeover/status'.format(config.get_default('default_api_host'))
1356
+
1357
+ res = https._post(url, body, self.auth)
1358
+ return res
1359
+
1360
+ '''
1361
+ * 备端接管列表
1362
+ *
1363
+ * @return list
1364
+ '''
1365
+
1366
+ def listBkTakeover(self, body):
1367
+
1368
+ url = '{0}/active/bk_takeover'.format(config.get_default('default_api_host'))
1369
+
1370
+ res = https._get(url, body, self.auth)
1371
+ return res
1372
+
1373
+ '''
1374
+ * 反向规则-新建
1375
+ *
1376
+ * @param dict $body 参数详见 API 手册
1377
+ * @return list
1378
+ '''
1379
+
1380
+ def createReverse(self, body):
1381
+
1382
+ url = '{0}/active/reverse'.format(config.get_default('default_api_host'))
1383
+
1384
+ res = https._post(url, body, self.auth)
1385
+ return res
1386
+
1387
+ '''
1388
+ * 反向规则-删除
1389
+ *
1390
+ * @param dict $body 参数详见 API 手册
1391
+ * @return list
1392
+ '''
1393
+
1394
+ def deleteReverse(self, body):
1395
+
1396
+ url = '{0}/active/reverse'.format(config.get_default('default_api_host'))
1397
+
1398
+ res = https._delete(url, body, self.auth)
1399
+ return res
1400
+
1401
+ '''
1402
+ * 反向规则-获取单个规则信息
1403
+ *
1404
+ * @param dict $body 参数详见 API 手册
1405
+ * @return list
1406
+ '''
1407
+
1408
+ def describeReverse(self, body):
1409
+
1410
+ url = '{0}/active/reverse/rule_single'.format(config.get_default('default_api_host'))
1411
+
1412
+ res = https._get(url, body, self.auth)
1413
+ return res
1414
+
1415
+ '''
1416
+ * 反向规则-获取列表
1417
+ *
1418
+ * @param dict $body 参数详见 API 手册
1419
+ * @return list
1420
+ '''
1421
+
1422
+ def listReverse(self, body):
1423
+
1424
+ url = '{0}/active/reverse'.format(config.get_default('default_api_host'))
1425
+
1426
+ res = https._get(url, body, self.auth)
1427
+ return res
1428
+
1429
+ '''
1430
+ * 反向规则-状态
1431
+ *
1432
+ * @param dict $body 参数详见 API 手册
1433
+ * @return list
1434
+ '''
1435
+
1436
+ def listReverseStatus(self, body):
1437
+
1438
+ url = '{0}/active/reverse/status'.format(config.get_default('default_api_host'))
1439
+
1440
+ res = https._get(url, body, self.auth)
1441
+ return res
1442
+
1443
+ '''
1444
+ * 反向规则-停止
1445
+ *
1446
+ * @param dict $body 参数详见 API 手册
1447
+ * @return list
1448
+ '''
1449
+
1450
+ def stopReverse(self, body):
1451
+
1452
+ url = '{0}/active/reverse/stop'.format(config.get_default('default_api_host'))
1453
+
1454
+ res = https._post(url, body, self.auth)
1455
+ return res
1456
+
1457
+ '''
1458
+ * 反向规则-重启反向任务
1459
+ *
1460
+ * @param dict $body 参数详见 API 手册
1461
+ * @return list
1462
+ '''
1463
+
1464
+ def restartReverse(self, body):
1465
+
1466
+ url = '{0}/active/reverse/restart'.format(config.get_default('default_api_host'))
1467
+
1468
+ res = https._post(url, body, self.auth)
1469
+ return res
1470
+
1471
+ '''
1472
+ * 反向规则-查看
1473
+ *
1474
+ * @param dict $body 参数详见 API 手册
1475
+ * @return list
1476
+ '''
1477
+
1478
+ def describeSingleReverse(self, body):
1479
+
1480
+ url = '{0}/active/reverse'.format(config.get_default('default_api_host'))
1481
+
1482
+ res = https._put(url, body, self.auth)
1483
+ return res
1484
+
1485
+ '''
1486
+ * 日志下载
1487
+ *
1488
+ * @param dict $body 参数详见 API 手册
1489
+ * @return list
1490
+ '''
1491
+
1492
+ def downloadLog(self, body):
1493
+
1494
+ url = '{0}/active/rule/log_download'.format(config.get_default('default_api_host'))
1495
+
1496
+ res = https._get(url, body, self.auth)
1497
+ return res
1498
+
1499
+ '''
1500
+ * 偏移量信息
1501
+ *
1502
+ * @param dict $body 参数详见 API 手册
1503
+ * @return list
1504
+ '''
1505
+
1506
+ def listKafkaOffsetInfo(self, body):
1507
+
1508
+ url = '{0}/active/rule/kafka_offset'.format(config.get_default('default_api_host'))
1509
+
1510
+ res = https._post(url, body, self.auth)
1511
+ return res
1512
+
1513
+ '''
1514
+ * 同步规则 - 已同步的对象具体信息(DML解析)
1515
+ *
1516
+ * @param dict $body 参数详见 API 手册
1517
+ * @return list
1518
+ '''
1519
+ def describeExtractSyncRulesObjInfo(self, body):
1520
+
1521
+ url = '{0}/active/rule/extract_sync_obj_info'.format(config.get_default('default_api_host'))
1522
+
1523
+ res = https._post(url, body, self.auth)
1524
+ return res
1525
+
1526
+ '''
1527
+ * 同步规则 - 已同步的对象具体信息(DML装载)
1528
+ *
1529
+ * @param dict $body 参数详见 API 手册
1530
+ * @return list
1531
+ '''
1532
+ def describeLoadSyncRulesObjInfo(self, body):
1533
+
1534
+ url = '{0}/active/rule/load_sync_obj_info'.format(config.get_default('default_api_host'))
1535
+
1536
+ res = https._post(url, body, self.auth)
1537
+ return res
1538
+
1539
+ '''
1540
+ * 同步规则 - 增量失败DML统计 - 表修复
1541
+ *
1542
+ * @param dict $body 参数详见 API 手册
1543
+ * @return list
1544
+ '''
1545
+ def increDmlFixAll(self, body):
1546
+
1547
+ url = '{0}/active/rule/table_fix_all'.format(config.get_default('default_api_host'))
1548
+
1549
+ res = https._post(url, body, self.auth)
1550
+ return res
1551
+
1552
+ '''
1553
+ * 同步规则 - 增量失败统计删除(失败对象)
1554
+ *
1555
+ * @param dict $body 参数详见 API 手册
1556
+ * @return list
1557
+ '''
1558
+ def deleteSyncRulesDML(self, body):
1559
+
1560
+ url = '{0}/active/rule/incre_dml_summary'.format(config.get_default('default_api_host'))
1561
+
1562
+ res = https._delete(url, body, self.auth)
1563
+ return res
1564
+
1565
+ '''
1566
+ * 同步规则 - 从底层获取SCN
1567
+ *
1568
+ * @param dict $body 参数详见 API 手册
1569
+ * @return list
1570
+ '''
1571
+ def getRpcScn(self, body):
1572
+
1573
+ url = '{0}/active/rule/get_rpc_scn'.format(config.get_default('default_api_host'))
1574
+
1575
+ res = https._get(url, body, self.auth)
1576
+ return res
1577
+
1578
+ '''
1579
+ * 对象比较 - 删除(Oracle菜单)
1580
+ *
1581
+ * @param dict $body 参数详见 API 手册
1582
+ * @return list
1583
+ '''
1584
+ def deleteOracleObjCmp(self, body):
1585
+
1586
+ url = '{0}/active/obj_cmp/obj_cmp_oracle'.format(config.get_default('default_api_host'))
1587
+
1588
+ res = https._delete(url, body, self.auth)
1589
+ return res
1590
+
1591
+ '''
1592
+ * 表比较-api 启动比较
1593
+ *
1594
+ * @body['uuid'] String 必填 节点uuid
1595
+ * @param dict $body 参数详见 API 手册
1596
+ * @return list
1597
+ '''
1598
+ def describeTbCmpStart(self, body, uuid):
1599
+ if uuid is None:
1600
+ exit()
1601
+ url = '{0}/active/tb_cmp/{1}/start'.format(config.get_default('default_api_host'), uuid)
1602
+
1603
+ res = https._get(url, body, self.auth)
1604
+ return res
1605
+
1606
+ '''
1607
+ * 同步规则 - 增量表DML抽取统计
1608
+ *
1609
+ * @param dict $body 参数详见 API 手册
1610
+ * @return list
1611
+ '''
1612
+ def listIncreDmlExtract(self, body):
1613
+
1614
+ url = '{0}/active/rule/incre_dml_extract'.format(config.get_default('default_api_host'))
1615
+
1616
+ res = https._post(url, body, self.auth)
1617
+ return res
1618
+
1619
+ '''
1620
+ * 同步规则 - 增量表DML装载统计
1621
+ *
1622
+ * @param dict $body 参数详见 API 手册
1623
+ * @return list
1624
+ '''
1625
+ def listIncreDmlLoad(self, body):
1626
+
1627
+ url = '{0}/active/rule/incre_dml_load'.format(config.get_default('default_api_host'))
1628
+
1629
+ res = https._post(url, body, self.auth)
1630
+ return res
1631
+
1632
+ '''
1633
+ * 同步规则 - 解析热点图
1634
+ *
1635
+ * @param dict $body 参数详见 API 手册
1636
+ * @return list
1637
+ '''
1638
+ def listExtractHeatMap(self, body):
1639
+
1640
+ url = '{0}/active/rule/extract_heat_map'.format(config.get_default('default_api_host'))
1641
+
1642
+ res = https._post(url, body, self.auth)
1643
+ return res
1644
+
1645
+ '''
1646
+ * 同步规则 - 装载热点图
1647
+ *
1648
+ * @param dict $body 参数详见 API 手册
1649
+ * @return list
1650
+ '''
1651
+ def listLoadHeatMap(self, body):
1652
+
1653
+ url = '{0}/active/rule/load_heat_map'.format(config.get_default('default_api_host'))
1654
+
1655
+ res = https._post(url, body, self.auth)
1656
+ return res
1657
+
1658
+ '''
1659
+ * 同步规则 - 修改维护模式
1660
+ *
1661
+ * @param dict $body 参数详见 API 手册
1662
+ * @return list
1663
+ '''
1664
+ def switchActiveRuleMaintenance(self, body):
1665
+
1666
+ url = '{0}/active/rule/maintenance'.format(config.get_default('default_api_host'))
1667
+
1668
+ res = https._post(url, body, self.auth)
1669
+ return res
1670
+
1671
+ '''
1672
+ * 同步规则 - 通用操作
1673
+ *
1674
+ * @param dict $body 参数详见 API 手册
1675
+ * @return list
1676
+ '''
1677
+ def syncRuleCommonOperate(self, body):
1678
+
1679
+ url = '{0}/active/rule/common_operate'.format(config.get_default('default_api_host'))
1680
+
1681
+ res = https._post(url, body, self.auth)
1682
+ return res
1683
+