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.
- examples/OracleRule.py +39 -0
- examples/__init__.py +0 -0
- examples/nodeList.py +42 -0
- examples/repBackupList.py +30 -0
- i2up_python_sdk-9.1.3.1.dist-info/LICENSE +201 -0
- i2up_python_sdk-9.1.3.1.dist-info/METADATA +23 -0
- i2up_python_sdk-9.1.3.1.dist-info/RECORD +1472 -0
- i2up_python_sdk-9.1.3.1.dist-info/WHEEL +5 -0
- i2up_python_sdk-9.1.3.1.dist-info/top_level.txt +2 -0
- info2soft/ContainerCls/__init__.py +0 -0
- info2soft/ContainerCls/v20240819/ContainerCls.py +261 -0
- info2soft/ContainerCls/v20240819/__init__.py +2 -0
- info2soft/ContainerCls/v20250123/ContainerCls.py +261 -0
- info2soft/ContainerCls/v20250123/__init__.py +2 -0
- info2soft/ContainerCls/v20250630/ContainerCls.py +261 -0
- info2soft/ContainerCls/v20250630/__init__.py +2 -0
- info2soft/TapeCopy/__init__.py +0 -0
- info2soft/TapeCopy/v20240819/TapeCopy.py +74 -0
- info2soft/TapeCopy/v20240819/__init__.py +2 -0
- info2soft/TapeCopy/v20250123/TapeCopy.py +74 -0
- info2soft/TapeCopy/v20250123/__init__.py +2 -0
- info2soft/TapeCopy/v20250630/TapeCopy.py +74 -0
- info2soft/TapeCopy/v20250630/__init__.py +2 -0
- info2soft/__init__.py +85 -0
- info2soft/active/__init__.py +3 -0
- info2soft/active/test/__init__.py +0 -0
- info2soft/active/test/v20200720/DataChkTest.py +269 -0
- info2soft/active/test/v20200720/Db2Test.py +546 -0
- info2soft/active/test/v20200720/DmTest.py +285 -0
- info2soft/active/test/v20200720/GaussTest.py +339 -0
- info2soft/active/test/v20200720/HeteroTest.py +416 -0
- info2soft/active/test/v20200720/InfomixTest.py +193 -0
- info2soft/active/test/v20200720/LogTest.py +69 -0
- info2soft/active/test/v20200720/MaskTest.py +690 -0
- info2soft/active/test/v20200720/MongoDBTest.py +202 -0
- info2soft/active/test/v20200720/MysqlTest.py +1058 -0
- info2soft/active/test/v20200720/NodeTest.py +200 -0
- info2soft/active/test/v20200720/NotificationsTest.py +52 -0
- info2soft/active/test/v20200720/OceanbaseTest.py +316 -0
- info2soft/active/test/v20200720/OracleRuleTest.py +1588 -0
- info2soft/active/test/v20200720/PostgresTest.py +238 -0
- info2soft/active/test/v20200720/QianBaseSyncTest.py +404 -0
- info2soft/active/test/v20200720/QianBasexTPTest.py +174 -0
- info2soft/active/test/v20200720/ScriptMaskTest.py +255 -0
- info2soft/active/test/v20200720/SqlserverTest.py +505 -0
- info2soft/active/test/v20200720/SummaryTest.py +76 -0
- info2soft/active/test/v20200720/SyncRulesTest.py +1295 -0
- info2soft/active/test/v20200720/TidbTest.py +444 -0
- info2soft/active/test/v20200720/__init__.py +0 -0
- info2soft/active/test/v20220622/DataChkTest.py +269 -0
- info2soft/active/test/v20220622/Db2Test.py +546 -0
- info2soft/active/test/v20220622/DmTest.py +285 -0
- info2soft/active/test/v20220622/GaussTest.py +339 -0
- info2soft/active/test/v20220622/HeteroTest.py +416 -0
- info2soft/active/test/v20220622/InfomixTest.py +193 -0
- info2soft/active/test/v20220622/LogTest.py +69 -0
- info2soft/active/test/v20220622/MaskTest.py +690 -0
- info2soft/active/test/v20220622/MongoDBTest.py +202 -0
- info2soft/active/test/v20220622/MysqlTest.py +1058 -0
- info2soft/active/test/v20220622/NodeTest.py +200 -0
- info2soft/active/test/v20220622/NotificationsTest.py +52 -0
- info2soft/active/test/v20220622/OceanbaseTest.py +316 -0
- info2soft/active/test/v20220622/OracleRuleTest.py +1588 -0
- info2soft/active/test/v20220622/PostgresTest.py +238 -0
- info2soft/active/test/v20220622/QianBaseSyncTest.py +404 -0
- info2soft/active/test/v20220622/QianBasexTPTest.py +174 -0
- info2soft/active/test/v20220622/ScriptMaskTest.py +255 -0
- info2soft/active/test/v20220622/SqlserverTest.py +505 -0
- info2soft/active/test/v20220622/SummaryTest.py +76 -0
- info2soft/active/test/v20220622/SyncRulesTest.py +1295 -0
- info2soft/active/test/v20220622/TidbTest.py +444 -0
- info2soft/active/test/v20220622/__init__.py +0 -0
- info2soft/active/v20200720/DataChk.py +192 -0
- info2soft/active/v20200720/Db2.py +495 -0
- info2soft/active/v20200720/Dm.py +226 -0
- info2soft/active/v20200720/Gauss.py +184 -0
- info2soft/active/v20200720/Hetero.py +320 -0
- info2soft/active/v20200720/Infomix.py +98 -0
- info2soft/active/v20200720/Log.py +35 -0
- info2soft/active/v20200720/Mask.py +475 -0
- info2soft/active/v20200720/MongoDB.py +158 -0
- info2soft/active/v20200720/Mysql.py +936 -0
- info2soft/active/v20200720/Node.py +126 -0
- info2soft/active/v20200720/Notifications.py +21 -0
- info2soft/active/v20200720/Oceanbase.py +257 -0
- info2soft/active/v20200720/OracleRule.py +1360 -0
- info2soft/active/v20200720/Postgres.py +196 -0
- info2soft/active/v20200720/QianBaseSync.py +330 -0
- info2soft/active/v20200720/QianBasexTP.py +86 -0
- info2soft/active/v20200720/ScriptMask.py +193 -0
- info2soft/active/v20200720/Sqlserver.py +430 -0
- info2soft/active/v20200720/Summary.py +46 -0
- info2soft/active/v20200720/SyncRules.py +1079 -0
- info2soft/active/v20200720/Tidb.py +304 -0
- info2soft/active/v20200720/__init__.py +6 -0
- info2soft/active/v20220622/DataChk.py +192 -0
- info2soft/active/v20220622/Db2.py +495 -0
- info2soft/active/v20220622/Dm.py +226 -0
- info2soft/active/v20220622/Gauss.py +184 -0
- info2soft/active/v20220622/Hetero.py +320 -0
- info2soft/active/v20220622/Infomix.py +98 -0
- info2soft/active/v20220622/Log.py +35 -0
- info2soft/active/v20220622/Mask.py +475 -0
- info2soft/active/v20220622/MongoDB.py +158 -0
- info2soft/active/v20220622/Mysql.py +936 -0
- info2soft/active/v20220622/Node.py +126 -0
- info2soft/active/v20220622/Notifications.py +21 -0
- info2soft/active/v20220622/Oceanbase.py +257 -0
- info2soft/active/v20220622/OracleRule.py +1360 -0
- info2soft/active/v20220622/Postgres.py +196 -0
- info2soft/active/v20220622/QianBaseSync.py +330 -0
- info2soft/active/v20220622/QianBasexTP.py +86 -0
- info2soft/active/v20220622/ScriptMask.py +193 -0
- info2soft/active/v20220622/Sqlserver.py +430 -0
- info2soft/active/v20220622/Summary.py +46 -0
- info2soft/active/v20220622/SyncRules.py +1079 -0
- info2soft/active/v20220622/Tidb.py +304 -0
- info2soft/active/v20220622/__init__.py +22 -0
- info2soft/active/v20230227/DataChk.py +302 -0
- info2soft/active/v20230227/Db2.py +282 -0
- info2soft/active/v20230227/Dm.py +98 -0
- info2soft/active/v20230227/Gauss.py +140 -0
- info2soft/active/v20230227/Hetero.py +296 -0
- info2soft/active/v20230227/Infomix.py +73 -0
- info2soft/active/v20230227/Log.py +47 -0
- info2soft/active/v20230227/Mask.py +488 -0
- info2soft/active/v20230227/MongoDB.py +111 -0
- info2soft/active/v20230227/Mysql.py +936 -0
- info2soft/active/v20230227/Notifications.py +21 -0
- info2soft/active/v20230227/Oceanbase.py +124 -0
- info2soft/active/v20230227/OfflineRule.py +100 -0
- info2soft/active/v20230227/OracleRule.py +490 -0
- info2soft/active/v20230227/Postgres.py +114 -0
- info2soft/active/v20230227/QianBaseSync.py +259 -0
- info2soft/active/v20230227/QianBasexTP.py +86 -0
- info2soft/active/v20230227/Redis.py +111 -0
- info2soft/active/v20230227/ScriptMask.py +170 -0
- info2soft/active/v20230227/Sqlserver.py +323 -0
- info2soft/active/v20230227/Summary.py +45 -0
- info2soft/active/v20230227/Tidb.py +114 -0
- info2soft/active/v20230227/__init__.py +44 -0
- info2soft/active/v20240228/DataChk.py +428 -0
- info2soft/active/v20240228/Db2.py +370 -0
- info2soft/active/v20240228/Dm.py +142 -0
- info2soft/active/v20240228/Gauss.py +140 -0
- info2soft/active/v20240228/HBase.py +75 -0
- info2soft/active/v20240228/Hetero.py +296 -0
- info2soft/active/v20240228/Infomix.py +136 -0
- info2soft/active/v20240228/Log.py +47 -0
- info2soft/active/v20240228/Mask.py +503 -0
- info2soft/active/v20240228/MongoDB.py +155 -0
- info2soft/active/v20240228/Mysql.py +949 -0
- info2soft/active/v20240228/Notifications.py +21 -0
- info2soft/active/v20240228/Oceanbase.py +244 -0
- info2soft/active/v20240228/OfflineRule.py +100 -0
- info2soft/active/v20240228/OracleRule.py +1683 -0
- info2soft/active/v20240228/Postgres.py +177 -0
- info2soft/active/v20240228/QianBaseSync.py +303 -0
- info2soft/active/v20240228/QianBasexTP.py +86 -0
- info2soft/active/v20240228/Redis.py +155 -0
- info2soft/active/v20240228/ScriptMask.py +170 -0
- info2soft/active/v20240228/Sqlserver.py +468 -0
- info2soft/active/v20240228/Summary.py +45 -0
- info2soft/active/v20240228/Tidb.py +291 -0
- info2soft/active/v20240228/__init__.py +44 -0
- info2soft/active/v20240819/DataChk.py +380 -0
- info2soft/active/v20240819/Db2.py +164 -0
- info2soft/active/v20240819/Dm.py +111 -0
- info2soft/active/v20240819/HBase.py +75 -0
- info2soft/active/v20240819/Hetero.py +231 -0
- info2soft/active/v20240819/Informix.py +112 -0
- info2soft/active/v20240819/Mask.py +493 -0
- info2soft/active/v20240819/MongoDB.py +115 -0
- info2soft/active/v20240819/Mysql.py +270 -0
- info2soft/active/v20240819/Notifications.py +21 -0
- info2soft/active/v20240819/Oceanbase.py +202 -0
- info2soft/active/v20240819/OfflineRule.py +207 -0
- info2soft/active/v20240819/OracleRule.py +1397 -0
- info2soft/active/v20240819/Postgres.py +140 -0
- info2soft/active/v20240819/QianBaseSync.py +140 -0
- info2soft/active/v20240819/Rabbitmq.py +111 -0
- info2soft/active/v20240819/Redis.py +115 -0
- info2soft/active/v20240819/ScriptMask.py +210 -0
- info2soft/active/v20240819/Sqlserver.py +230 -0
- info2soft/active/v20240819/Summary.py +34 -0
- info2soft/active/v20240819/Tidb.py +205 -0
- info2soft/active/v20240819/__init__.py +42 -0
- info2soft/active/v20250123/DataChk.py +380 -0
- info2soft/active/v20250123/Db2.py +163 -0
- info2soft/active/v20250123/Dm.py +111 -0
- info2soft/active/v20250123/HBase.py +75 -0
- info2soft/active/v20250123/Hetero.py +244 -0
- info2soft/active/v20250123/HeteroConsumer.py +114 -0
- info2soft/active/v20250123/Informix.py +112 -0
- info2soft/active/v20250123/Mask.py +493 -0
- info2soft/active/v20250123/MongoDB.py +115 -0
- info2soft/active/v20250123/Mysql.py +270 -0
- info2soft/active/v20250123/MysqlRule.py +125 -0
- info2soft/active/v20250123/Notifications.py +21 -0
- info2soft/active/v20250123/Oceanbase.py +202 -0
- info2soft/active/v20250123/OfflineRule.py +207 -0
- info2soft/active/v20250123/OracleRule.py +1397 -0
- info2soft/active/v20250123/Postgres.py +140 -0
- info2soft/active/v20250123/QianBaseSync.py +140 -0
- info2soft/active/v20250123/Rabbitmq.py +111 -0
- info2soft/active/v20250123/Redis.py +115 -0
- info2soft/active/v20250123/ScriptMask.py +210 -0
- info2soft/active/v20250123/SqlServerRule.py +125 -0
- info2soft/active/v20250123/Sqlserver.py +230 -0
- info2soft/active/v20250123/Summary.py +34 -0
- info2soft/active/v20250123/Tidb.py +205 -0
- info2soft/active/v20250123/__init__.py +48 -0
- info2soft/active/v20250630/DataChk.py +380 -0
- info2soft/active/v20250630/Db2.py +163 -0
- info2soft/active/v20250630/Dm.py +111 -0
- info2soft/active/v20250630/HBase.py +75 -0
- info2soft/active/v20250630/Hetero.py +244 -0
- info2soft/active/v20250630/HeteroConsumer.py +140 -0
- info2soft/active/v20250630/Informix.py +112 -0
- info2soft/active/v20250630/Mask.py +493 -0
- info2soft/active/v20250630/MongoDB.py +115 -0
- info2soft/active/v20250630/Mysql.py +270 -0
- info2soft/active/v20250630/MysqlRule.py +125 -0
- info2soft/active/v20250630/Notifications.py +21 -0
- info2soft/active/v20250630/Oceanbase.py +202 -0
- info2soft/active/v20250630/OfflineRule.py +207 -0
- info2soft/active/v20250630/OracleRule.py +1397 -0
- info2soft/active/v20250630/Postgres.py +140 -0
- info2soft/active/v20250630/QianBaseSync.py +140 -0
- info2soft/active/v20250630/Rabbitmq.py +111 -0
- info2soft/active/v20250630/Redis.py +115 -0
- info2soft/active/v20250630/RocketMq.py +114 -0
- info2soft/active/v20250630/RoutingRule.py +163 -0
- info2soft/active/v20250630/ScriptMask.py +210 -0
- info2soft/active/v20250630/SqlServerRule.py +125 -0
- info2soft/active/v20250630/Sqlserver.py +230 -0
- info2soft/active/v20250630/Summary.py +34 -0
- info2soft/active/v20250630/Tidb.py +205 -0
- info2soft/active/v20250630/__init__.py +52 -0
- info2soft/appContinuity/__init__.py +0 -0
- info2soft/appContinuity/v20240819/AppContinuity.py +180 -0
- info2soft/appContinuity/v20240819/__init__.py +2 -0
- info2soft/appContinuity/v20250123/AppContinuity.py +180 -0
- info2soft/appContinuity/v20250123/__init__.py +2 -0
- info2soft/appContinuity/v20250630/AppContinuity.py +219 -0
- info2soft/appContinuity/v20250630/__init__.py +2 -0
- info2soft/authorization/__init__.py +0 -0
- info2soft/authorization/v20240819/Authorization.py +99 -0
- info2soft/authorization/v20240819/__init__.py +2 -0
- info2soft/authorization/v20250123/Authorization.py +99 -0
- info2soft/authorization/v20250123/__init__.py +2 -0
- info2soft/authorization/v20250630/Authorization.py +99 -0
- info2soft/authorization/v20250630/__init__.py +2 -0
- info2soft/backupDomain/__init__.py +0 -0
- info2soft/backupDomain/v20250630/BackupDomain.py +115 -0
- info2soft/backupDomain/v20250630/__init__.py +2 -0
- info2soft/backupRule/__init__.py +0 -0
- info2soft/backupRule/v20240228/BackupRule.py +178 -0
- info2soft/backupRule/v20240228/__init__.py +2 -0
- info2soft/backupRule/v20240819/BackupRule.py +167 -0
- info2soft/backupRule/v20240819/__init__.py +2 -0
- info2soft/backupRule/v20250123/BackupRule.py +193 -0
- info2soft/backupRule/v20250123/__init__.py +2 -0
- info2soft/backupRule/v20250630/BackupRule.py +232 -0
- info2soft/backupRule/v20250630/__init__.py +2 -0
- info2soft/backupSet/__init__.py +0 -0
- info2soft/backupSet/v20240228/BackupSet.py +208 -0
- info2soft/backupSet/v20240228/__init__.py +2 -0
- info2soft/backupSet/v20240819/BackupSet.py +242 -0
- info2soft/backupSet/v20240819/__init__.py +2 -0
- info2soft/backupSet/v20250123/BackupSet.py +294 -0
- info2soft/backupSet/v20250123/__init__.py +2 -0
- info2soft/backupSet/v20250630/BackupSet.py +294 -0
- info2soft/backupSet/v20250630/__init__.py +2 -0
- info2soft/backupSetRulePolicy/__init__.py +0 -0
- info2soft/backupSetRulePolicy/v20240228/BackupSetRulePolicy.py +76 -0
- info2soft/backupSetRulePolicy/v20240228/__init__.py +2 -0
- info2soft/backupSetRulePolicy/v20240819/BackupSetRulePolicy.py +76 -0
- info2soft/backupSetRulePolicy/v20240819/__init__.py +2 -0
- info2soft/backupSetRulePolicy/v20250123/BackupSetRulePolicy.py +76 -0
- info2soft/backupSetRulePolicy/v20250123/__init__.py +2 -0
- info2soft/backupSetRulePolicy/v20250630/BackupSetRulePolicy.py +76 -0
- info2soft/backupSetRulePolicy/v20250630/__init__.py +2 -0
- info2soft/backupWork/__init__.py +0 -0
- info2soft/backupWork/v20240228/BackupWork.py +152 -0
- info2soft/backupWork/v20240228/__init__.py +2 -0
- info2soft/backupWork/v20240819/BackupWork.py +183 -0
- info2soft/backupWork/v20240819/__init__.py +2 -0
- info2soft/backupWork/v20250123/BackupWork.py +183 -0
- info2soft/backupWork/v20250123/__init__.py +2 -0
- info2soft/backupWork/v20250630/BackupWork.py +183 -0
- info2soft/backupWork/v20250630/__init__.py +2 -0
- info2soft/bigdata/__init__.py +2 -0
- info2soft/bigdata/v20200724/Backup.py +130 -0
- info2soft/bigdata/v20200724/Recovery.py +164 -0
- info2soft/bigdata/v20200724/__init__.py +3 -0
- info2soft/bigdata/v20220622/Backup.py +130 -0
- info2soft/bigdata/v20220622/Recovery.py +164 -0
- info2soft/bigdata/v20220622/__init__.py +3 -0
- info2soft/bigdata/v20230227/Backup.py +218 -0
- info2soft/bigdata/v20230227/__init__.py +2 -0
- info2soft/bigdata/v20240228/Backup.py +257 -0
- info2soft/bigdata/v20240228/__init__.py +2 -0
- info2soft/bigdata/v20240819/Backup.py +243 -0
- info2soft/bigdata/v20240819/Recovery.py +152 -0
- info2soft/bigdata/v20240819/__init__.py +4 -0
- info2soft/bigdata/v20250123/Backup.py +243 -0
- info2soft/bigdata/v20250123/Recovery.py +152 -0
- info2soft/bigdata/v20250123/__init__.py +4 -0
- info2soft/bigdata/v20250630/Backup.py +243 -0
- info2soft/bigdata/v20250630/Recovery.py +152 -0
- info2soft/bigdata/v20250630/__init__.py +4 -0
- info2soft/bigdataBackupRule/__init__.py +0 -0
- info2soft/bigdataBackupRule/v20240819/BigdataBackupRule.py +152 -0
- info2soft/bigdataBackupRule/v20240819/__init__.py +2 -0
- info2soft/bigdataBackupRule/v20250123/BigdataBackupRule.py +152 -0
- info2soft/bigdataBackupRule/v20250123/__init__.py +2 -0
- info2soft/bigdataBackupRule/v20250630/BigdataBackupRule.py +152 -0
- info2soft/bigdataBackupRule/v20250630/__init__.py +2 -0
- info2soft/bigdataRecoveryRule/__init__.py +0 -0
- info2soft/bigdataRecoveryRule/v20240819/BigdataRecoveryRule.py +76 -0
- info2soft/bigdataRecoveryRule/v20240819/__init__.py +2 -0
- info2soft/bigdataRecoveryRule/v20250123/BigdataRecoveryRule.py +76 -0
- info2soft/bigdataRecoveryRule/v20250123/__init__.py +2 -0
- info2soft/bigdataRecoveryRule/v20250630/BigdataRecoveryRule.py +76 -0
- info2soft/bigdataRecoveryRule/v20250630/__init__.py +2 -0
- info2soft/cdm/__init__.py +1 -0
- info2soft/cdm/v20200729/Cdm.py +688 -0
- info2soft/cdm/v20200729/__init__.py +2 -0
- info2soft/cdm/v20220622/Cdm.py +688 -0
- info2soft/cdm/v20220622/__init__.py +2 -0
- info2soft/cdm/v20230227/Cdm.py +602 -0
- info2soft/cdm/v20230227/__init__.py +2 -0
- info2soft/cdm/v20240228/Cdm.py +640 -0
- info2soft/cdm/v20240228/__init__.py +2 -0
- info2soft/cdm/v20240819/Cdm.py +232 -0
- info2soft/cdm/v20240819/CdmRecovery.py +99 -0
- info2soft/cdm/v20240819/CdmRule.py +113 -0
- info2soft/cdm/v20240819/Drill.py +127 -0
- info2soft/cdm/v20240819/FfoMount.py +89 -0
- info2soft/cdm/v20240819/RemoteCoopy.py +178 -0
- info2soft/cdm/v20240819/__init__.py +12 -0
- info2soft/cdm/v20250123/Cdm.py +232 -0
- info2soft/cdm/v20250123/CdmRecovery.py +99 -0
- info2soft/cdm/v20250123/CdmRule.py +113 -0
- info2soft/cdm/v20250123/Drill.py +127 -0
- info2soft/cdm/v20250123/FfoMount.py +89 -0
- info2soft/cdm/v20250123/RemoteCoopy.py +178 -0
- info2soft/cdm/v20250123/__init__.py +12 -0
- info2soft/cdm/v20250630/Cdm.py +232 -0
- info2soft/cdm/v20250630/CdmRecovery.py +99 -0
- info2soft/cdm/v20250630/CdmRule.py +113 -0
- info2soft/cdm/v20250630/Drill.py +127 -0
- info2soft/cdm/v20250630/FfoMount.py +89 -0
- info2soft/cdm/v20250630/RemoteCoopy.py +178 -0
- info2soft/cdm/v20250630/__init__.py +12 -0
- info2soft/cfs/__init__.py +0 -0
- info2soft/cfs/v20240228/CfsBackup.py +218 -0
- info2soft/cfs/v20240228/__init__.py +2 -0
- info2soft/cfs/v20240819/CfsBackup.py +193 -0
- info2soft/cfs/v20240819/__init__.py +2 -0
- info2soft/cfs/v20250123/CfsBackup.py +193 -0
- info2soft/cfs/v20250123/__init__.py +2 -0
- info2soft/cfs/v20250630/CfsBackup.py +232 -0
- info2soft/cfs/v20250630/__init__.py +2 -0
- info2soft/cloud/__init__.py +1 -0
- info2soft/cloud/v20200727/CloudBackup.py +170 -0
- info2soft/cloud/v20200727/CloudEcs.py +237 -0
- info2soft/cloud/v20200727/CloudPlatform.py +191 -0
- info2soft/cloud/v20200727/CloudRehearse.py +438 -0
- info2soft/cloud/v20200727/CloudVolume.py +123 -0
- info2soft/cloud/v20200727/__init__.py +6 -0
- info2soft/cloud/v20220622/CloudBackup.py +170 -0
- info2soft/cloud/v20220622/CloudEcs.py +237 -0
- info2soft/cloud/v20220622/CloudPlatform.py +191 -0
- info2soft/cloud/v20220622/CloudRehearse.py +438 -0
- info2soft/cloud/v20220622/CloudVolume.py +123 -0
- info2soft/cloud/v20220622/__init__.py +6 -0
- info2soft/cloud/v20230227/CloudBackup.py +1028 -0
- info2soft/cloud/v20230227/__init__.py +2 -0
- info2soft/cloud/v20240228/CloudBackup.py +1098 -0
- info2soft/cloud/v20240228/__init__.py +2 -0
- info2soft/cloud/v20240819/CloudBackendStorage.py +76 -0
- info2soft/cloud/v20240819/CloudBackup.py +153 -0
- info2soft/cloud/v20240819/CloudEcs.py +256 -0
- info2soft/cloud/v20240819/CloudPlatform.py +193 -0
- info2soft/cloud/v20240819/CloudRehearse.py +438 -0
- info2soft/cloud/v20240819/CloudVolume.py +124 -0
- info2soft/cloud/v20240819/__init__.py +12 -0
- info2soft/cloud/v20250123/CloudBackendStorage.py +76 -0
- info2soft/cloud/v20250123/CloudBackup.py +153 -0
- info2soft/cloud/v20250123/CloudEcs.py +256 -0
- info2soft/cloud/v20250123/CloudPlatform.py +193 -0
- info2soft/cloud/v20250123/CloudRehearse.py +438 -0
- info2soft/cloud/v20250123/CloudVolume.py +124 -0
- info2soft/cloud/v20250123/__init__.py +12 -0
- info2soft/cloud/v20250630/CloudBackendStorage.py +76 -0
- info2soft/cloud/v20250630/CloudBackup.py +153 -0
- info2soft/cloud/v20250630/CloudEcs.py +256 -0
- info2soft/cloud/v20250630/CloudPlatform.py +193 -0
- info2soft/cloud/v20250630/CloudRehearse.py +438 -0
- info2soft/cloud/v20250630/CloudVolume.py +124 -0
- info2soft/cloud/v20250630/__init__.py +12 -0
- info2soft/common/Auth.py +215 -0
- info2soft/common/BackupMigrate.py +111 -0
- info2soft/common/Cache.py +93 -0
- info2soft/common/CcMonitor.py +33 -0
- info2soft/common/Client.py +101 -0
- info2soft/common/CompareResult.py +78 -0
- info2soft/common/Credential.py +102 -0
- info2soft/common/DataBaseBackup.py +68 -0
- info2soft/common/DbConvert.py +46 -0
- info2soft/common/Diagnose.py +47 -0
- info2soft/common/Dir.py +112 -0
- info2soft/common/FindPassword.py +60 -0
- info2soft/common/GTS.py +83 -0
- info2soft/common/GeneralInterface.py +256 -0
- info2soft/common/Lic.py +215 -0
- info2soft/common/Logs.py +85 -0
- info2soft/common/Menu.py +20 -0
- info2soft/common/Notifications.py +177 -0
- info2soft/common/OpLogs.py +72 -0
- info2soft/common/Permission.py +32 -0
- info2soft/common/Qr.py +99 -0
- info2soft/common/RestrpcServer.py +114 -0
- info2soft/common/Rsa.py +67 -0
- info2soft/common/Settings.py +448 -0
- info2soft/common/Statistics.py +101 -0
- info2soft/common/Storage.py +978 -0
- info2soft/common/Tenant.py +62 -0
- info2soft/common/Wechat.py +45 -0
- info2soft/common/__init__.py +0 -0
- info2soft/common/test/__init__.py +0 -0
- info2soft/common/test/v20190104/AuthTest.py +124 -0
- info2soft/common/test/v20190104/BackupMigrateTest.py +149 -0
- info2soft/common/test/v20190104/CcMonitorTest.py +63 -0
- info2soft/common/test/v20190104/ClientTest.py +153 -0
- info2soft/common/test/v20190104/CompareResultTest.py +102 -0
- info2soft/common/test/v20190104/CredentialTest.py +129 -0
- info2soft/common/test/v20190104/DataBaseBackupTest.py +75 -0
- info2soft/common/test/v20190104/DbConvertTest.py +73 -0
- info2soft/common/test/v20190104/DiagnoseTest.py +79 -0
- info2soft/common/test/v20190104/DirTest.py +158 -0
- info2soft/common/test/v20190104/FindPasswordTest.py +92 -0
- info2soft/common/test/v20190104/GTSTest.py +117 -0
- info2soft/common/test/v20190104/GeneralInterfaceTest.py +285 -0
- info2soft/common/test/v20190104/LicTest.py +265 -0
- info2soft/common/test/v20190104/LogsTest.py +153 -0
- info2soft/common/test/v20190104/MenuTest.py +48 -0
- info2soft/common/test/v20190104/NotificationsTest.py +256 -0
- info2soft/common/test/v20190104/OpLogsTest.py +125 -0
- info2soft/common/test/v20190104/PermissionTest.py +55 -0
- info2soft/common/test/v20190104/QrTest.py +117 -0
- info2soft/common/test/v20190104/RestrpcServerTest.py +159 -0
- info2soft/common/test/v20190104/SettingsTest.py +518 -0
- info2soft/common/test/v20190104/StatisticsTest.py +210 -0
- info2soft/common/test/v20190104/StorageTest.py +48 -0
- info2soft/common/test/v20190104/TenantTest.py +100 -0
- info2soft/common/test/v20190104/WechatTest.py +72 -0
- info2soft/common/test/v20190104/__init__.py +0 -0
- info2soft/common/test/v20190805/MonitorTest.py +45 -0
- info2soft/common/test/v20190805/PermissionTest.py +45 -0
- info2soft/common/test/v20190805/StorageTest.py +1058 -0
- info2soft/common/test/v20190805/__init__.py +0 -0
- info2soft/common/test/v20220622/AuthTest.py +124 -0
- info2soft/common/test/v20220622/BackupMigrateTest.py +149 -0
- info2soft/common/test/v20220622/CcMonitorTest.py +63 -0
- info2soft/common/test/v20220622/ClientTest.py +153 -0
- info2soft/common/test/v20220622/CompareResultTest.py +102 -0
- info2soft/common/test/v20220622/CredentialTest.py +129 -0
- info2soft/common/test/v20220622/DataBaseBackupTest.py +75 -0
- info2soft/common/test/v20220622/DbConvertTest.py +73 -0
- info2soft/common/test/v20220622/DiagnoseTest.py +79 -0
- info2soft/common/test/v20220622/DirTest.py +158 -0
- info2soft/common/test/v20220622/FindPasswordTest.py +92 -0
- info2soft/common/test/v20220622/GTSTest.py +117 -0
- info2soft/common/test/v20220622/GeneralInterfaceTest.py +285 -0
- info2soft/common/test/v20220622/LicTest.py +265 -0
- info2soft/common/test/v20220622/LogsTest.py +153 -0
- info2soft/common/test/v20220622/MenuTest.py +48 -0
- info2soft/common/test/v20220622/NotificationsTest.py +256 -0
- info2soft/common/test/v20220622/OpLogsTest.py +125 -0
- info2soft/common/test/v20220622/PermissionTest.py +55 -0
- info2soft/common/test/v20220622/QrTest.py +117 -0
- info2soft/common/test/v20220622/RestrpcServerTest.py +159 -0
- info2soft/common/test/v20220622/SettingsTest.py +518 -0
- info2soft/common/test/v20220622/StatisticsTest.py +210 -0
- info2soft/common/test/v20220622/StorageTest.py +48 -0
- info2soft/common/test/v20220622/TenantTest.py +100 -0
- info2soft/common/test/v20220622/WechatTest.py +72 -0
- info2soft/common/test/v20220622/__init__.py +0 -0
- info2soft/common/utils.py +168 -0
- info2soft/common/v20230227/Auth.py +218 -0
- info2soft/common/v20230227/BackupMigrate.py +111 -0
- info2soft/common/v20230227/BigScreen.py +192 -0
- info2soft/common/v20230227/CcMonitor.py +33 -0
- info2soft/common/v20230227/Client.py +112 -0
- info2soft/common/v20230227/CommonTemplate.py +77 -0
- info2soft/common/v20230227/CompareResult.py +76 -0
- info2soft/common/v20230227/Credential.py +115 -0
- info2soft/common/v20230227/DataBaseBackup.py +69 -0
- info2soft/common/v20230227/DbConvert.py +46 -0
- info2soft/common/v20230227/Diagnose.py +59 -0
- info2soft/common/v20230227/Dir.py +112 -0
- info2soft/common/v20230227/FindPassword.py +60 -0
- info2soft/common/v20230227/GTS.py +83 -0
- info2soft/common/v20230227/GeneralInterface.py +295 -0
- info2soft/common/v20230227/Lic.py +239 -0
- info2soft/common/v20230227/Logs.py +85 -0
- info2soft/common/v20230227/Menu.py +20 -0
- info2soft/common/v20230227/Notifications.py +203 -0
- info2soft/common/v20230227/OpLogs.py +72 -0
- info2soft/common/v20230227/Permission.py +45 -0
- info2soft/common/v20230227/Qr.py +73 -0
- info2soft/common/v20230227/RestrpcServer.py +112 -0
- info2soft/common/v20230227/Settings.py +487 -0
- info2soft/common/v20230227/Statistics.py +112 -0
- info2soft/common/v20230227/Tenant.py +60 -0
- info2soft/common/v20230227/Webhook.py +130 -0
- info2soft/common/v20230227/Wechat.py +45 -0
- info2soft/common/v20230227/__init__.py +60 -0
- info2soft/common/v20240228/Auth.py +218 -0
- info2soft/common/v20240228/BackupMigrate.py +111 -0
- info2soft/common/v20240228/BigScreen.py +192 -0
- info2soft/common/v20240228/CcMonitor.py +161 -0
- info2soft/common/v20240228/Client.py +242 -0
- info2soft/common/v20240228/CommonTemplate.py +77 -0
- info2soft/common/v20240228/CompareResult.py +76 -0
- info2soft/common/v20240228/Credential.py +115 -0
- info2soft/common/v20240228/DataBaseBackup.py +69 -0
- info2soft/common/v20240228/DbConvert.py +46 -0
- info2soft/common/v20240228/Diagnose.py +59 -0
- info2soft/common/v20240228/Dir.py +125 -0
- info2soft/common/v20240228/FindPassword.py +60 -0
- info2soft/common/v20240228/GTS.py +83 -0
- info2soft/common/v20240228/GeneralInterface.py +333 -0
- info2soft/common/v20240228/GuardData.py +114 -0
- info2soft/common/v20240228/Lic.py +280 -0
- info2soft/common/v20240228/Logs.py +85 -0
- info2soft/common/v20240228/Menu.py +20 -0
- info2soft/common/v20240228/Notifications.py +203 -0
- info2soft/common/v20240228/OpLogs.py +72 -0
- info2soft/common/v20240228/Permission.py +45 -0
- info2soft/common/v20240228/Qr.py +73 -0
- info2soft/common/v20240228/RestrpcServer.py +112 -0
- info2soft/common/v20240228/Settings.py +550 -0
- info2soft/common/v20240228/Statistics.py +125 -0
- info2soft/common/v20240228/Tenant.py +60 -0
- info2soft/common/v20240228/Webhook.py +130 -0
- info2soft/common/v20240228/Wechat.py +45 -0
- info2soft/common/v20240228/__init__.py +60 -0
- info2soft/common/v20240819/Auth.py +122 -0
- info2soft/common/v20240819/BackupMigrate.py +111 -0
- info2soft/common/v20240819/BigScreen.py +192 -0
- info2soft/common/v20240819/CcMonitor.py +137 -0
- info2soft/common/v20240819/Client.py +254 -0
- info2soft/common/v20240819/CommonTemplate.py +77 -0
- info2soft/common/v20240819/CompareResult.py +76 -0
- info2soft/common/v20240819/Credential.py +115 -0
- info2soft/common/v20240819/DbConvert.py +46 -0
- info2soft/common/v20240819/Diagnose.py +59 -0
- info2soft/common/v20240819/Dir.py +125 -0
- info2soft/common/v20240819/FindPassword.py +60 -0
- info2soft/common/v20240819/GeneralInterface.py +419 -0
- info2soft/common/v20240819/Lic.py +149 -0
- info2soft/common/v20240819/Logs.py +85 -0
- info2soft/common/v20240819/Menu.py +20 -0
- info2soft/common/v20240819/Notifications.py +216 -0
- info2soft/common/v20240819/OpLogs.py +59 -0
- info2soft/common/v20240819/Permission.py +58 -0
- info2soft/common/v20240819/Qr.py +99 -0
- info2soft/common/v20240819/Settings.py +729 -0
- info2soft/common/v20240819/Statistics.py +138 -0
- info2soft/common/v20240819/Tenant.py +62 -0
- info2soft/common/v20240819/Webhook.py +130 -0
- info2soft/common/v20240819/Wechat.py +45 -0
- info2soft/common/v20240819/__init__.py +50 -0
- info2soft/common/v20250123/Auth.py +148 -0
- info2soft/common/v20250123/BackupMigrate.py +111 -0
- info2soft/common/v20250123/BigScreen.py +192 -0
- info2soft/common/v20250123/CcMonitor.py +137 -0
- info2soft/common/v20250123/Client.py +254 -0
- info2soft/common/v20250123/CommonTemplate.py +77 -0
- info2soft/common/v20250123/CompareResult.py +76 -0
- info2soft/common/v20250123/Credential.py +115 -0
- info2soft/common/v20250123/DbConvert.py +46 -0
- info2soft/common/v20250123/Diagnose.py +59 -0
- info2soft/common/v20250123/Dir.py +125 -0
- info2soft/common/v20250123/FindPassword.py +60 -0
- info2soft/common/v20250123/GeneralInterface.py +419 -0
- info2soft/common/v20250123/GeneralSettings.py +84 -0
- info2soft/common/v20250123/Lic.py +149 -0
- info2soft/common/v20250123/LicQuota.py +102 -0
- info2soft/common/v20250123/Logs.py +85 -0
- info2soft/common/v20250123/Menu.py +20 -0
- info2soft/common/v20250123/Notifications.py +216 -0
- info2soft/common/v20250123/OpLogs.py +59 -0
- info2soft/common/v20250123/Permission.py +58 -0
- info2soft/common/v20250123/Qr.py +99 -0
- info2soft/common/v20250123/Settings.py +537 -0
- info2soft/common/v20250123/Statistics.py +163 -0
- info2soft/common/v20250123/Tenant.py +62 -0
- info2soft/common/v20250123/UserSettings.py +173 -0
- info2soft/common/v20250123/Webhook.py +130 -0
- info2soft/common/v20250123/Wechat.py +45 -0
- info2soft/common/v20250123/__init__.py +56 -0
- info2soft/common/v20250630/BackupMigrate.py +111 -0
- info2soft/common/v20250630/BigScreen.py +192 -0
- info2soft/common/v20250630/CcMonitor.py +137 -0
- info2soft/common/v20250630/Client.py +254 -0
- info2soft/common/v20250630/CommonTemplate.py +77 -0
- info2soft/common/v20250630/CompareResult.py +76 -0
- info2soft/common/v20250630/Credential.py +115 -0
- info2soft/common/v20250630/DbConvert.py +46 -0
- info2soft/common/v20250630/Diagnose.py +59 -0
- info2soft/common/v20250630/Dir.py +125 -0
- info2soft/common/v20250630/FindPassword.py +60 -0
- info2soft/common/v20250630/GeneralInterface.py +419 -0
- info2soft/common/v20250630/GeneralSettings.py +84 -0
- info2soft/common/v20250630/Lic.py +161 -0
- info2soft/common/v20250630/LicQuota.py +102 -0
- info2soft/common/v20250630/Logs.py +85 -0
- info2soft/common/v20250630/Menu.py +20 -0
- info2soft/common/v20250630/Notifications.py +216 -0
- info2soft/common/v20250630/OpLogs.py +59 -0
- info2soft/common/v20250630/Permission.py +58 -0
- info2soft/common/v20250630/Qr.py +99 -0
- info2soft/common/v20250630/Settings.py +537 -0
- info2soft/common/v20250630/Statistics.py +163 -0
- info2soft/common/v20250630/Tenant.py +62 -0
- info2soft/common/v20250630/UserSettings.py +173 -0
- info2soft/common/v20250630/Webhook.py +130 -0
- info2soft/common/v20250630/Wechat.py +45 -0
- info2soft/common/v20250630/__init__.py +54 -0
- info2soft/compat.py +76 -0
- info2soft/config.py +33 -0
- info2soft/container_cls/__init__.py +0 -0
- info2soft/container_cls/v20230227/ContainerCls.py +209 -0
- info2soft/container_cls/v20230227/__init__.py +2 -0
- info2soft/container_cls/v20240228/ContainerCls.py +247 -0
- info2soft/container_cls/v20240228/__init__.py +2 -0
- info2soft/dashboard/__init__.py +0 -0
- info2soft/dashboard/test/__init__.py +0 -0
- info2soft/dashboard/test/v20190104/DashboardTest.py +100 -0
- info2soft/dashboard/test/v20190104/__init__.py +0 -0
- info2soft/dashboard/test/v20220622/DashboardTest.py +100 -0
- info2soft/dashboard/test/v20220622/__init__.py +0 -0
- info2soft/dashboard/v20181227/Dashboard.py +73 -0
- info2soft/dashboard/v20181227/__init__.py +0 -0
- info2soft/dashboard/v20220622/Dashboard.py +73 -0
- info2soft/dashboard/v20220622/__init__.py +1 -0
- info2soft/dashboard/v20240819/Dashboard.py +120 -0
- info2soft/dashboard/v20240819/__init__.py +2 -0
- info2soft/dashboard/v20250123/Dashboard.py +120 -0
- info2soft/dashboard/v20250123/__init__.py +2 -0
- info2soft/dashboard/v20250630/Dashboard.py +120 -0
- info2soft/dashboard/v20250630/__init__.py +2 -0
- info2soft/dbInstance/__init__.py +0 -0
- info2soft/dbInstance/v20240819/DbInstance.py +140 -0
- info2soft/dbInstance/v20240819/__init__.py +2 -0
- info2soft/dbInstance/v20250123/DbInstance.py +140 -0
- info2soft/dbInstance/v20250123/__init__.py +2 -0
- info2soft/dbInstance/v20250630/DbInstance.py +140 -0
- info2soft/dbInstance/v20250630/__init__.py +2 -0
- info2soft/dedupeStorage/__init__.py +0 -0
- info2soft/dedupeStorage/v20240819/DedupeStorage.py +115 -0
- info2soft/dedupeStorage/v20240819/__init__.py +2 -0
- info2soft/dedupeStorage/v20250123/DedupeStorage.py +115 -0
- info2soft/dedupeStorage/v20250123/__init__.py +2 -0
- info2soft/dedupeStorage/v20250630/DedupeStorage.py +115 -0
- info2soft/dedupeStorage/v20250630/__init__.py +2 -0
- info2soft/distributor/__init__.py +1 -0
- info2soft/distributor/v20200727/DistributorSystem.py +216 -0
- info2soft/distributor/v20200727/Group.py +150 -0
- info2soft/distributor/v20200727/Node.py +176 -0
- info2soft/distributor/v20200727/__init__.py +6 -0
- info2soft/distributor/v20220622/DistributorSystem.py +216 -0
- info2soft/distributor/v20220622/Group.py +150 -0
- info2soft/distributor/v20220622/Node.py +176 -0
- info2soft/distributor/v20220622/__init__.py +6 -0
- info2soft/dto/Dto.py +221 -0
- info2soft/dto/__init__.py +0 -0
- info2soft/dto/v20220622/Dto.py +221 -0
- info2soft/dto/v20220622/__init__.py +1 -0
- info2soft/dto/v20230227/Dto.py +158 -0
- info2soft/dto/v20230227/__init__.py +2 -0
- info2soft/dto/v20240228/Dto.py +158 -0
- info2soft/dto/v20240228/__init__.py +2 -0
- info2soft/dto/v20240819/Dto.py +249 -0
- info2soft/dto/v20240819/DtoArchive.py +164 -0
- info2soft/dto/v20240819/__init__.py +4 -0
- info2soft/dto/v20250123/Dto.py +249 -0
- info2soft/dto/v20250123/DtoArchive.py +164 -0
- info2soft/dto/v20250123/__init__.py +4 -0
- info2soft/dto/v20250630/Dto.py +262 -0
- info2soft/dto/v20250630/DtoArchive.py +164 -0
- info2soft/dto/v20250630/__init__.py +4 -0
- info2soft/dtrack/Dtrack.py +809 -0
- info2soft/dtrack/__init__.py +2 -0
- info2soft/dtrack/v20220622/Dtrack.py +809 -0
- info2soft/dtrack/v20220622/__init__.py +2 -0
- info2soft/dtrack/v20230227/Dtrack.py +862 -0
- info2soft/dtrack/v20230227/__init__.py +2 -0
- info2soft/examineApprove/__init__.py +0 -0
- info2soft/examineApprove/v20240819/ExamineApprove.py +137 -0
- info2soft/examineApprove/v20240819/__init__.py +2 -0
- info2soft/examineApprove/v20250123/ExamineApprove.py +137 -0
- info2soft/examineApprove/v20250123/__init__.py +2 -0
- info2soft/examineApprove/v20250630/ExamineApprove.py +137 -0
- info2soft/examineApprove/v20250630/__init__.py +2 -0
- info2soft/fileWriter.py +16 -0
- info2soft/fingerprintDomain/__init__.py +0 -0
- info2soft/fingerprintDomain/v20240819/FingerprintDomain.py +89 -0
- info2soft/fingerprintDomain/v20240819/__init__.py +2 -0
- info2soft/fingerprintDomain/v20250123/FingerprintDomain.py +89 -0
- info2soft/fingerprintDomain/v20250123/__init__.py +2 -0
- info2soft/fingerprintDomain/v20250630/FingerprintDomain.py +102 -0
- info2soft/fingerprintDomain/v20250630/__init__.py +2 -0
- info2soft/fsp/FspBackup.py +228 -0
- info2soft/fsp/FspMove.py +233 -0
- info2soft/fsp/FspRecovery.py +253 -0
- info2soft/fsp/__init__.py +0 -0
- info2soft/fsp/test/FspBackupTest.py +426 -0
- info2soft/fsp/test/FspMoveTest.py +450 -0
- info2soft/fsp/test/FspRecoveryTest.py +393 -0
- info2soft/fsp/test/__init__.py +0 -0
- info2soft/fsp/test/v20220622/FspBackupTest.py +427 -0
- info2soft/fsp/test/v20220622/FspMoveTest.py +451 -0
- info2soft/fsp/test/v20220622/FspRecoveryTest.py +394 -0
- info2soft/fsp/test/v20220622/__init__.py +0 -0
- info2soft/fsp/v20220622/FspBackup.py +228 -0
- info2soft/fsp/v20220622/FspMove.py +233 -0
- info2soft/fsp/v20220622/FspRecovery.py +253 -0
- info2soft/fsp/v20220622/__init__.py +3 -0
- info2soft/fsp/v20230227/FspBackup.py +601 -0
- info2soft/fsp/v20230227/__init__.py +2 -0
- info2soft/fsp/v20240228/FspBackup.py +614 -0
- info2soft/fsp/v20240228/__init__.py +2 -0
- info2soft/fsp/v20240819/FspBackup.py +271 -0
- info2soft/fsp/v20240819/FspMove.py +232 -0
- info2soft/fsp/v20240819/FspRecovery.py +257 -0
- info2soft/fsp/v20240819/__init__.py +2 -0
- info2soft/fsp/v20250123/FspBackup.py +271 -0
- info2soft/fsp/v20250123/FspMove.py +232 -0
- info2soft/fsp/v20250123/FspRecovery.py +257 -0
- info2soft/fsp/v20250123/__init__.py +6 -0
- info2soft/fsp/v20250630/FspBackup.py +271 -0
- info2soft/fsp/v20250630/FspMove.py +232 -0
- info2soft/fsp/v20250630/FspRecovery.py +257 -0
- info2soft/fsp/v20250630/__init__.py +6 -0
- info2soft/fspBackupRule/__init__.py +0 -0
- info2soft/fspBackupRule/v20240819/FspBackupRule.py +154 -0
- info2soft/fspBackupRule/v20240819/__init__.py +2 -0
- info2soft/fspBackupRule/v20250123/FspBackupRule.py +154 -0
- info2soft/fspBackupRule/v20250123/__init__.py +2 -0
- info2soft/fspBackupRule/v20250630/FspBackupRule.py +154 -0
- info2soft/fspBackupRule/v20250630/__init__.py +2 -0
- info2soft/fspRecoveryRule/__init__.py +0 -0
- info2soft/fspRecoveryRule/v20240819/FspRecoveryRule.py +153 -0
- info2soft/fspRecoveryRule/v20240819/__init__.py +2 -0
- info2soft/fspRecoveryRule/v20250123/FspRecoveryRule.py +153 -0
- info2soft/fspRecoveryRule/v20250123/__init__.py +2 -0
- info2soft/fspRecoveryRule/v20250630/FspRecoveryRule.py +179 -0
- info2soft/fspRecoveryRule/v20250630/__init__.py +2 -0
- info2soft/fullMachineCopy/__init__.py +0 -0
- info2soft/fullMachineCopy/v20240819/FullMachineCopy.py +115 -0
- info2soft/fullMachineCopy/v20240819/__init__.py +2 -0
- info2soft/fullMachineCopy/v20250123/FullMachineCopy.py +115 -0
- info2soft/fullMachineCopy/v20250123/__init__.py +2 -0
- info2soft/fullMachineCopy/v20250630/FullMachineCopy.py +115 -0
- info2soft/fullMachineCopy/v20250630/__init__.py +2 -0
- info2soft/gts/__init__.py +0 -0
- info2soft/gts/test/GTS.py +157 -0
- info2soft/gts/test/__init__.py +0 -0
- info2soft/gts/test/v20220622/GTS.py +157 -0
- info2soft/gts/test/v20220622/__init__.py +0 -0
- info2soft/gts/v20190805/GTS.py +123 -0
- info2soft/gts/v20190805/__init__.py +0 -0
- info2soft/gts/v20220622/GTS.py +123 -0
- info2soft/gts/v20220622/__init__.py +1 -0
- info2soft/guardData/__init__.py +0 -0
- info2soft/guardData/v20240819/GuardData.py +114 -0
- info2soft/guardData/v20240819/__init__.py +2 -0
- info2soft/guardData/v20250123/GuardData.py +114 -0
- info2soft/guardData/v20250123/__init__.py +2 -0
- info2soft/guardData/v20250630/GuardData.py +114 -0
- info2soft/guardData/v20250630/__init__.py +2 -0
- info2soft/ha/__init__.py +1 -0
- info2soft/ha/test/__init__.py +0 -0
- info2soft/ha/test/v20190104/AppHighAvailabilityTest.py +383 -0
- info2soft/ha/test/v20190104/__init__.py +0 -0
- info2soft/ha/test/v20190806/AppHighAvailabilityTest.py +246 -0
- info2soft/ha/test/v20190806/__init__.py +0 -0
- info2soft/ha/test/v20200727/ClusterTest.py +330 -0
- info2soft/ha/test/v20200727/__init__.py +0 -0
- info2soft/ha/test/v20220622/AppHighAvailabilityTest.py +246 -0
- info2soft/ha/test/v20220622/ClusterTest.py +330 -0
- info2soft/ha/test/v20220622/__init__.py +0 -0
- info2soft/ha/v20181227/AppHighAvailability.py +335 -0
- info2soft/ha/v20181227/__init__.py +0 -0
- info2soft/ha/v20200724/Cluster.py +270 -0
- info2soft/ha/v20200724/__init__.py +2 -0
- info2soft/ha/v20220622/AppHighAvailability.py +335 -0
- info2soft/ha/v20220622/Cluster.py +270 -0
- info2soft/ha/v20220622/__init__.py +3 -0
- info2soft/ha/v20230227/AppHighAvailability.py +302 -0
- info2soft/ha/v20230227/Cluster.py +232 -0
- info2soft/ha/v20230227/__init__.py +4 -0
- info2soft/ha/v20240228/AppHighAvailability.py +302 -0
- info2soft/ha/v20240228/Cluster.py +232 -0
- info2soft/ha/v20240228/__init__.py +4 -0
- info2soft/ha/v20240819/AppHighAvailability.py +318 -0
- info2soft/ha/v20240819/Cluster.py +204 -0
- info2soft/ha/v20240819/Label.py +62 -0
- info2soft/ha/v20240819/__init__.py +6 -0
- info2soft/ha/v20250123/AppHighAvailability.py +318 -0
- info2soft/ha/v20250123/Cluster.py +192 -0
- info2soft/ha/v20250123/Label.py +62 -0
- info2soft/ha/v20250123/__init__.py +6 -0
- info2soft/ha/v20250630/AppHighAvailability.py +318 -0
- info2soft/ha/v20250630/Cluster.py +192 -0
- info2soft/ha/v20250630/Label.py +62 -0
- info2soft/ha/v20250630/__init__.py +6 -0
- info2soft/hdfs/Hdfs.py +112 -0
- info2soft/hdfs/__init__.py +2 -0
- info2soft/hdfs/v20220622/Hdfs.py +112 -0
- info2soft/hdfs/v20220622/__init__.py +2 -0
- info2soft/hdfs/v20230227/Hdfs.py +89 -0
- info2soft/hdfs/v20230227/__init__.py +2 -0
- info2soft/hdfs/v20240228/Hdfs.py +89 -0
- info2soft/hdfs/v20240228/__init__.py +2 -0
- info2soft/hdfs/v20240819/Hdfs.py +300 -0
- info2soft/hdfs/v20240819/__init__.py +2 -0
- info2soft/hdfs/v20250123/Hdfs.py +300 -0
- info2soft/hdfs/v20250123/__init__.py +2 -0
- info2soft/hdfs/v20250630/Hdfs.py +300 -0
- info2soft/hdfs/v20250630/__init__.py +2 -0
- info2soft/https.py +422 -0
- info2soft/hw/__init__.py +0 -0
- info2soft/hw/v20240819/GTS.py +87 -0
- info2soft/hw/v20240819/HDR.py +58 -0
- info2soft/hw/v20240819/__init__.py +4 -0
- info2soft/hw/v20250123/GTS.py +87 -0
- info2soft/hw/v20250123/HDR.py +58 -0
- info2soft/hw/v20250123/__init__.py +4 -0
- info2soft/hw/v20250630/CBG.py +21 -0
- info2soft/hw/v20250630/GTS.py +87 -0
- info2soft/hw/v20250630/HDR.py +121 -0
- info2soft/hw/v20250630/__init__.py +6 -0
- info2soft/mountTask/__init__.py +0 -0
- info2soft/mountTask/v20240819/MountTask.py +139 -0
- info2soft/mountTask/v20240819/__init__.py +2 -0
- info2soft/mountTask/v20250123/MountTask.py +139 -0
- info2soft/mountTask/v20250123/__init__.py +2 -0
- info2soft/mountTask/v20250630/MountTask.py +139 -0
- info2soft/mountTask/v20250630/__init__.py +2 -0
- info2soft/nas/__init__.py +0 -0
- info2soft/nas/test/NASTest.py +111 -0
- info2soft/nas/test/__init__.py +0 -0
- info2soft/nas/test/v20190104/NASTest.py +173 -0
- info2soft/nas/test/v20190104/__init__.py +0 -0
- info2soft/nas/test/v20220622/NASTest.py +175 -0
- info2soft/nas/test/v20220622/__init__.py +0 -0
- info2soft/nas/v20190102/NAS.py +119 -0
- info2soft/nas/v20190102/__init__.py +0 -0
- info2soft/nas/v20220622/NAS.py +119 -0
- info2soft/nas/v20220622/__init__.py +1 -0
- info2soft/nas/v20230227/NAS.py +102 -0
- info2soft/nas/v20230227/__init__.py +2 -0
- info2soft/nas/v20240228/NAS.py +102 -0
- info2soft/nas/v20240228/__init__.py +2 -0
- info2soft/nas/v20240819/Nas.py +115 -0
- info2soft/nas/v20240819/__init__.py +2 -0
- info2soft/nas/v20250123/Nas.py +115 -0
- info2soft/nas/v20250123/__init__.py +2 -0
- info2soft/nas/v20250630/Nas.py +115 -0
- info2soft/nas/v20250630/__init__.py +2 -0
- info2soft/nbuBackupSet/__init__.py +0 -0
- info2soft/nbuBackupSet/v20250630/NbuBackupSet.py +34 -0
- info2soft/nbuBackupSet/v20250630/__init__.py +2 -0
- info2soft/notifications/__init__.py +0 -0
- info2soft/notifications/test/NotificationsTest.py +90 -0
- info2soft/notifications/test/__init__.py +0 -0
- info2soft/notifications/test/v20190104/NotificationsTest.py +192 -0
- info2soft/notifications/test/v20190104/__init__.py +0 -0
- info2soft/notifications/test/v20190806/NotificationsTest.py +63 -0
- info2soft/notifications/test/v20190806/__init__.py +0 -0
- info2soft/notifications/v20181227/Notifications.py +142 -0
- info2soft/notifications/v20181227/__init__.py +0 -0
- info2soft/recovery/__init__.py +0 -0
- info2soft/recovery/v20240819/Recovery.py +34 -0
- info2soft/recovery/v20240819/__init__.py +2 -0
- info2soft/recovery/v20250123/Recovery.py +34 -0
- info2soft/recovery/v20250123/__init__.py +2 -0
- info2soft/recovery/v20250630/Recovery.py +34 -0
- info2soft/recovery/v20250630/__init__.py +2 -0
- info2soft/recoveryRule/__init__.py +0 -0
- info2soft/recoveryRule/v20240228/RecoveryRule.py +212 -0
- info2soft/recoveryRule/v20240228/__init__.py +2 -0
- info2soft/recoveryRule/v20240819/RecoveryRule.py +207 -0
- info2soft/recoveryRule/v20240819/__init__.py +2 -0
- info2soft/recoveryRule/v20250123/RecoveryRule.py +207 -0
- info2soft/recoveryRule/v20250123/__init__.py +2 -0
- info2soft/recoveryRule/v20250630/BatchRecoveryRule.py +154 -0
- info2soft/recoveryRule/v20250630/RecoveryRule.py +220 -0
- info2soft/recoveryRule/v20250630/__init__.py +4 -0
- info2soft/recycleBin/__init__.py +0 -0
- info2soft/recycleBin/v20240819/RecycleBin.py +35 -0
- info2soft/recycleBin/v20240819/__init__.py +2 -0
- info2soft/recycleBin/v20250123/RecycleBin.py +35 -0
- info2soft/recycleBin/v20250123/__init__.py +2 -0
- info2soft/recycleBin/v20250630/RecycleBin.py +35 -0
- info2soft/recycleBin/v20250630/__init__.py +2 -0
- info2soft/remoteRep/__init__.py +0 -0
- info2soft/remoteRep/v20240819/RemoteRep.py +206 -0
- info2soft/remoteRep/v20240819/__init__.py +2 -0
- info2soft/remoteRep/v20250123/RemoteRep.py +206 -0
- info2soft/remoteRep/v20250123/__init__.py +2 -0
- info2soft/remoteRep/v20250630/RemoteRep.py +206 -0
- info2soft/remoteRep/v20250630/__init__.py +2 -0
- info2soft/remote_rep/__init__.py +0 -0
- info2soft/remote_rep/v20230227/RemoteRep.py +167 -0
- info2soft/remote_rep/v20230227/__init__.py +2 -0
- info2soft/remote_rep/v20240228/RemoteRep.py +211 -0
- info2soft/remote_rep/v20240228/__init__.py +2 -0
- info2soft/rep/__init__.py +0 -0
- info2soft/rep/test/__init__.py +0 -0
- info2soft/rep/test/v20190104/RepBackupTest.py +513 -0
- info2soft/rep/test/v20190104/RepRecoveryTest.py +279 -0
- info2soft/rep/test/v20190104/__init__.py +0 -0
- info2soft/rep/test/v20220622/RepBackupTest.py +513 -0
- info2soft/rep/test/v20220622/RepRecoveryTest.py +279 -0
- info2soft/rep/test/v20220622/__init__.py +0 -0
- info2soft/rep/v20181227/RepBackup.py +325 -0
- info2soft/rep/v20181227/RepRecovery.py +203 -0
- info2soft/rep/v20181227/__init__.py +0 -0
- info2soft/rep/v20220622/RepBackup.py +325 -0
- info2soft/rep/v20220622/RepRecovery.py +203 -0
- info2soft/rep/v20220622/__init__.py +2 -0
- info2soft/rep/v20230227/RepBackup.py +308 -0
- info2soft/rep/v20230227/RepRecovery.py +156 -0
- info2soft/rep/v20230227/__init__.py +4 -0
- info2soft/rep/v20240228/RepBackup.py +308 -0
- info2soft/rep/v20240228/RepRecovery.py +156 -0
- info2soft/rep/v20240228/__init__.py +4 -0
- info2soft/rep/v20240819/RepBackup.py +360 -0
- info2soft/rep/v20240819/RepRecovery.py +195 -0
- info2soft/rep/v20240819/__init__.py +4 -0
- info2soft/rep/v20250123/RepBackup.py +360 -0
- info2soft/rep/v20250123/RepRecovery.py +195 -0
- info2soft/rep/v20250123/__init__.py +4 -0
- info2soft/rep/v20250630/RepBackup.py +360 -0
- info2soft/rep/v20250630/RepRecovery.py +195 -0
- info2soft/rep/v20250630/__init__.py +4 -0
- info2soft/replica/__init__.py +0 -0
- info2soft/replica/v20240819/First.py +115 -0
- info2soft/replica/v20240819/Second.py +139 -0
- info2soft/replica/v20240819/__init__.py +4 -0
- info2soft/replica/v20250123/First.py +115 -0
- info2soft/replica/v20250123/Second.py +139 -0
- info2soft/replica/v20250123/__init__.py +4 -0
- info2soft/replica/v20250630/First.py +115 -0
- info2soft/replica/v20250630/Second.py +139 -0
- info2soft/replica/v20250630/__init__.py +4 -0
- info2soft/resource/__init__.py +2 -0
- info2soft/resource/test/__init__.py +0 -0
- info2soft/resource/test/v20190104/BizGroupTest.py +143 -0
- info2soft/resource/test/v20190104/ClusterTest.py +219 -0
- info2soft/resource/test/v20190104/NodeTest.py +575 -0
- info2soft/resource/test/v20190104/__init__.py +0 -0
- info2soft/resource/test/v20200727/BoxVmTest.py +139 -0
- info2soft/resource/test/v20200727/__init__.py +0 -0
- info2soft/resource/test/v20200930/ActiveNodeTest.py +479 -0
- info2soft/resource/test/v20200930/AppTypeTest.py +98 -0
- info2soft/resource/test/v20200930/AuthorizationTest.py +140 -0
- info2soft/resource/test/v20200930/CopyVolume.py +155 -0
- info2soft/resource/test/v20200930/DedupePoolTest.py +151 -0
- info2soft/resource/test/v20200930/DtoHostTest.py +266 -0
- info2soft/resource/test/v20200930/DtoLifeManagementTest.py +140 -0
- info2soft/resource/test/v20200930/DtoStorageTest.py +144 -0
- info2soft/resource/test/v20200930/HdfsPlatformTest.py +167 -0
- info2soft/resource/test/v20200930/MonitorTest.py +109 -0
- info2soft/resource/test/v20200930/NodeDbConfigTest.py +82 -0
- info2soft/resource/test/v20200930/NodeProxyTest.py +100 -0
- info2soft/resource/test/v20200930/ReCyleTest.py +76 -0
- info2soft/resource/test/v20200930/ServiceClusterTest.py +151 -0
- info2soft/resource/test/v20200930/StoragePool.py +200 -0
- info2soft/resource/test/v20200930/StorageTest.py +1734 -0
- info2soft/resource/test/v20200930/VirtualizationSupportTest.py +536 -0
- info2soft/resource/test/v20200930/__init__.py +0 -0
- info2soft/resource/test/v20220622/ActiveNodeTest.py +479 -0
- info2soft/resource/test/v20220622/AppTypeTest.py +98 -0
- info2soft/resource/test/v20220622/AuthorizationTest.py +140 -0
- info2soft/resource/test/v20220622/CopyVolume.py +155 -0
- info2soft/resource/test/v20220622/DedupePoolTest.py +151 -0
- info2soft/resource/test/v20220622/DtoHostTest.py +266 -0
- info2soft/resource/test/v20220622/DtoLifeManagementTest.py +140 -0
- info2soft/resource/test/v20220622/DtoStorageTest.py +144 -0
- info2soft/resource/test/v20220622/HdfsPlatformTest.py +167 -0
- info2soft/resource/test/v20220622/MonitorTest.py +109 -0
- info2soft/resource/test/v20220622/NodeDbConfigTest.py +82 -0
- info2soft/resource/test/v20220622/NodeProxyTest.py +100 -0
- info2soft/resource/test/v20220622/ReCyleTest.py +76 -0
- info2soft/resource/test/v20220622/ServiceClusterTest.py +151 -0
- info2soft/resource/test/v20220622/StoragePool.py +200 -0
- info2soft/resource/test/v20220622/StorageTest.py +1734 -0
- info2soft/resource/test/v20220622/VirtualizationSupportTest.py +536 -0
- info2soft/resource/test/v20220622/__init__.py +0 -0
- info2soft/resource/v20181227/BizGroup.py +106 -0
- info2soft/resource/v20181227/Cluster.py +190 -0
- info2soft/resource/v20181227/Node.py +463 -0
- info2soft/resource/v20181227/__init__.py +6 -0
- info2soft/resource/v20200727/BoxVm.py +106 -0
- info2soft/resource/v20200727/__init__.py +2 -0
- info2soft/resource/v20200729/AppSystem.py +364 -0
- info2soft/resource/v20200729/__init__.py +2 -0
- info2soft/resource/v20200930/ActiveNode.py +297 -0
- info2soft/resource/v20200930/AppType.py +75 -0
- info2soft/resource/v20200930/Authorization.py +99 -0
- info2soft/resource/v20200930/CopyVolume.py +129 -0
- info2soft/resource/v20200930/DedupePool.py +126 -0
- info2soft/resource/v20200930/DtoHost.py +242 -0
- info2soft/resource/v20200930/DtoLifeManagement.py +91 -0
- info2soft/resource/v20200930/DtoStorage.py +102 -0
- info2soft/resource/v20200930/HdfsPlatform.py +102 -0
- info2soft/resource/v20200930/Monitor.py +99 -0
- info2soft/resource/v20200930/NodeDbConfig.py +47 -0
- info2soft/resource/v20200930/NodeProxy.py +76 -0
- info2soft/resource/v20200930/ReCyle.py +47 -0
- info2soft/resource/v20200930/ServiceCluster.py +100 -0
- info2soft/resource/v20200930/Storage.py +1443 -0
- info2soft/resource/v20200930/StoragePool.py +166 -0
- info2soft/resource/v20200930/VirtualizationSupport.py +464 -0
- info2soft/resource/v20200930/__init__.py +17 -0
- info2soft/resource/v20220622/ActiveNode.py +297 -0
- info2soft/resource/v20220622/AppType.py +75 -0
- info2soft/resource/v20220622/Authorization.py +99 -0
- info2soft/resource/v20220622/CopyVolume.py +129 -0
- info2soft/resource/v20220622/DedupePool.py +126 -0
- info2soft/resource/v20220622/DtoHost.py +242 -0
- info2soft/resource/v20220622/DtoLifeManagement.py +91 -0
- info2soft/resource/v20220622/DtoStorage.py +102 -0
- info2soft/resource/v20220622/HdfsPlatform.py +102 -0
- info2soft/resource/v20220622/Monitor.py +99 -0
- info2soft/resource/v20220622/NodeDbConfig.py +47 -0
- info2soft/resource/v20220622/NodeProxy.py +76 -0
- info2soft/resource/v20220622/ReCyle.py +47 -0
- info2soft/resource/v20220622/ServiceCluster.py +100 -0
- info2soft/resource/v20220622/Storage.py +1443 -0
- info2soft/resource/v20220622/StoragePool.py +166 -0
- info2soft/resource/v20220622/VirtualizationSupport.py +464 -0
- info2soft/resource/v20220622/__init__.py +25 -0
- info2soft/resource/v20230227/ActiveNode.py +361 -0
- info2soft/resource/v20230227/AppSystem.py +307 -0
- info2soft/resource/v20230227/AppType.py +75 -0
- info2soft/resource/v20230227/Authorization.py +86 -0
- info2soft/resource/v20230227/BizGroup.py +118 -0
- info2soft/resource/v20230227/BoxVm.py +100 -0
- info2soft/resource/v20230227/Cluster.py +180 -0
- info2soft/resource/v20230227/ContainerCluster.py +313 -0
- info2soft/resource/v20230227/CopyVolume.py +130 -0
- info2soft/resource/v20230227/DedupePool.py +101 -0
- info2soft/resource/v20230227/DtoHost.py +218 -0
- info2soft/resource/v20230227/DtoLifeManagement.py +91 -0
- info2soft/resource/v20230227/DtoStorage.py +128 -0
- info2soft/resource/v20230227/HdfsPlatform.py +102 -0
- info2soft/resource/v20230227/Monitor.py +92 -0
- info2soft/resource/v20230227/Node.py +518 -0
- info2soft/resource/v20230227/NodeDbConfig.py +47 -0
- info2soft/resource/v20230227/NodeProxy.py +76 -0
- info2soft/resource/v20230227/Npsvr.py +126 -0
- info2soft/resource/v20230227/ReCyle.py +60 -0
- info2soft/resource/v20230227/ServiceCluster.py +139 -0
- info2soft/resource/v20230227/Storage.py +1374 -0
- info2soft/resource/v20230227/StoragePool.py +180 -0
- info2soft/resource/v20230227/Ukey.py +153 -0
- info2soft/resource/v20230227/VirtualizationSupport.py +604 -0
- info2soft/resource/v20230227/__init__.py +46 -0
- info2soft/resource/v20240228/ActiveDbType.py +99 -0
- info2soft/resource/v20240228/ActiveNode.py +387 -0
- info2soft/resource/v20240228/AppSystem.py +1221 -0
- info2soft/resource/v20240228/AppType.py +80 -0
- info2soft/resource/v20240228/Authorization.py +86 -0
- info2soft/resource/v20240228/BizGroup.py +118 -0
- info2soft/resource/v20240228/BoxVm.py +119 -0
- info2soft/resource/v20240228/Cfs.py +133 -0
- info2soft/resource/v20240228/Cluster.py +206 -0
- info2soft/resource/v20240228/ContainerCluster.py +313 -0
- info2soft/resource/v20240228/CopyVolume.py +139 -0
- info2soft/resource/v20240228/DedupePool.py +126 -0
- info2soft/resource/v20240228/DtoHost.py +254 -0
- info2soft/resource/v20240228/DtoLifeManagement.py +96 -0
- info2soft/resource/v20240228/DtoStorage.py +128 -0
- info2soft/resource/v20240228/Filesystem.py +114 -0
- info2soft/resource/v20240228/HdfsPlatform.py +288 -0
- info2soft/resource/v20240228/LanfreeChannel.py +101 -0
- info2soft/resource/v20240228/Monitor.py +92 -0
- info2soft/resource/v20240228/Node.py +544 -0
- info2soft/resource/v20240228/NodeDbConfig.py +47 -0
- info2soft/resource/v20240228/NodeProxy.py +76 -0
- info2soft/resource/v20240228/Npsvr.py +164 -0
- info2soft/resource/v20240228/ReCyle.py +60 -0
- info2soft/resource/v20240228/ServiceCluster.py +140 -0
- info2soft/resource/v20240228/Storage.py +1452 -0
- info2soft/resource/v20240228/StoragePool.py +253 -0
- info2soft/resource/v20240228/StorageUnit.py +196 -0
- info2soft/resource/v20240228/Tape.py +487 -0
- info2soft/resource/v20240228/Ukey.py +248 -0
- info2soft/resource/v20240228/VirtualizationSupport.py +620 -0
- info2soft/resource/v20240228/__init__.py +52 -0
- info2soft/resource/v20240819/ActiveDbType.py +113 -0
- info2soft/resource/v20240819/ActiveNode.py +375 -0
- info2soft/resource/v20240819/ActiveNodeCluster.py +141 -0
- info2soft/resource/v20240819/ActiveNodeV3.py +348 -0
- info2soft/resource/v20240819/AppSystem.py +181 -0
- info2soft/resource/v20240819/AppType.py +75 -0
- info2soft/resource/v20240819/BigdataPlatform.py +194 -0
- info2soft/resource/v20240819/BizGroup.py +118 -0
- info2soft/resource/v20240819/BoxVm.py +100 -0
- info2soft/resource/v20240819/Cfs.py +128 -0
- info2soft/resource/v20240819/Cluster.py +206 -0
- info2soft/resource/v20240819/ContainerCluster.py +326 -0
- info2soft/resource/v20240819/CopyVolume.py +156 -0
- info2soft/resource/v20240819/DedupePool.py +114 -0
- info2soft/resource/v20240819/DiskPool.py +89 -0
- info2soft/resource/v20240819/DtoHost.py +270 -0
- info2soft/resource/v20240819/DtoLifeManagement.py +60 -0
- info2soft/resource/v20240819/DtoStorage.py +128 -0
- info2soft/resource/v20240819/DtoStorageBucket.py +74 -0
- info2soft/resource/v20240819/Filesystem.py +114 -0
- info2soft/resource/v20240819/HdfsPlatform.py +141 -0
- info2soft/resource/v20240819/LanfreeChannel.py +114 -0
- info2soft/resource/v20240819/Monitor.py +92 -0
- info2soft/resource/v20240819/Node.py +611 -0
- info2soft/resource/v20240819/NodeDbConfig.py +47 -0
- info2soft/resource/v20240819/NodeProxy.py +76 -0
- info2soft/resource/v20240819/Npsvr.py +130 -0
- info2soft/resource/v20240819/ReCyle.py +47 -0
- info2soft/resource/v20240819/ServiceCluster.py +139 -0
- info2soft/resource/v20240819/Storage.py +1530 -0
- info2soft/resource/v20240819/StoragePool.py +206 -0
- info2soft/resource/v20240819/StorageUnit.py +209 -0
- info2soft/resource/v20240819/Tape.py +505 -0
- info2soft/resource/v20240819/Ukey.py +218 -0
- info2soft/resource/v20240819/VirtualizationSupport.py +741 -0
- info2soft/resource/v20240819/__init__.py +70 -0
- info2soft/resource/v20250123/ActiveDbType.py +113 -0
- info2soft/resource/v20250123/ActiveNode.py +375 -0
- info2soft/resource/v20250123/ActiveNodeCluster.py +141 -0
- info2soft/resource/v20250123/ActiveNodeV3.py +348 -0
- info2soft/resource/v20250123/AppSystem.py +181 -0
- info2soft/resource/v20250123/AppType.py +75 -0
- info2soft/resource/v20250123/BigdataPlatform.py +194 -0
- info2soft/resource/v20250123/BizGroup.py +118 -0
- info2soft/resource/v20250123/BoxVm.py +100 -0
- info2soft/resource/v20250123/Cfs.py +128 -0
- info2soft/resource/v20250123/Cluster.py +245 -0
- info2soft/resource/v20250123/ContainerCluster.py +326 -0
- info2soft/resource/v20250123/CopyVolume.py +156 -0
- info2soft/resource/v20250123/DedupePool.py +114 -0
- info2soft/resource/v20250123/DiskPool.py +89 -0
- info2soft/resource/v20250123/DtoGateway.py +116 -0
- info2soft/resource/v20250123/DtoHost.py +270 -0
- info2soft/resource/v20250123/DtoLifeManagement.py +60 -0
- info2soft/resource/v20250123/DtoStorage.py +128 -0
- info2soft/resource/v20250123/DtoStorageBucket.py +89 -0
- info2soft/resource/v20250123/Filesystem.py +114 -0
- info2soft/resource/v20250123/HdfsPlatform.py +141 -0
- info2soft/resource/v20250123/LanfreeChannel.py +114 -0
- info2soft/resource/v20250123/Monitor.py +92 -0
- info2soft/resource/v20250123/Node.py +611 -0
- info2soft/resource/v20250123/NodeDbConfig.py +47 -0
- info2soft/resource/v20250123/NodeProxy.py +76 -0
- info2soft/resource/v20250123/Npsvr.py +130 -0
- info2soft/resource/v20250123/ReCyle.py +47 -0
- info2soft/resource/v20250123/ServiceCluster.py +139 -0
- info2soft/resource/v20250123/Storage.py +1530 -0
- info2soft/resource/v20250123/StoragePool.py +206 -0
- info2soft/resource/v20250123/StorageUnit.py +209 -0
- info2soft/resource/v20250123/Tape.py +505 -0
- info2soft/resource/v20250123/Ukey.py +218 -0
- info2soft/resource/v20250123/VirtualizationSupport.py +756 -0
- info2soft/resource/v20250123/__init__.py +72 -0
- info2soft/resource/v20250630/ActiveDbType.py +113 -0
- info2soft/resource/v20250630/ActiveNode.py +375 -0
- info2soft/resource/v20250630/ActiveNodeCluster.py +141 -0
- info2soft/resource/v20250630/ActiveNodeClusterV3.py +141 -0
- info2soft/resource/v20250630/ActiveNodeV3.py +361 -0
- info2soft/resource/v20250630/AppSystem.py +181 -0
- info2soft/resource/v20250630/AppType.py +75 -0
- info2soft/resource/v20250630/BigdataPlatform.py +194 -0
- info2soft/resource/v20250630/BizGroup.py +118 -0
- info2soft/resource/v20250630/BoxVm.py +100 -0
- info2soft/resource/v20250630/Cfs.py +128 -0
- info2soft/resource/v20250630/Cluster.py +335 -0
- info2soft/resource/v20250630/ContainerCluster.py +325 -0
- info2soft/resource/v20250630/CopyVolume.py +156 -0
- info2soft/resource/v20250630/DedupePool.py +114 -0
- info2soft/resource/v20250630/DiskPool.py +89 -0
- info2soft/resource/v20250630/DtoGateway.py +155 -0
- info2soft/resource/v20250630/DtoHost.py +270 -0
- info2soft/resource/v20250630/DtoLifeManagement.py +60 -0
- info2soft/resource/v20250630/DtoStorage.py +128 -0
- info2soft/resource/v20250630/DtoStorageBucket.py +89 -0
- info2soft/resource/v20250630/Filesystem.py +114 -0
- info2soft/resource/v20250630/HdfsPlatform.py +141 -0
- info2soft/resource/v20250630/LanfreeChannel.py +114 -0
- info2soft/resource/v20250630/Monitor.py +92 -0
- info2soft/resource/v20250630/Node.py +624 -0
- info2soft/resource/v20250630/NodeDbConfig.py +47 -0
- info2soft/resource/v20250630/NodeProxy.py +76 -0
- info2soft/resource/v20250630/NodeV3.py +663 -0
- info2soft/resource/v20250630/Npsvr.py +130 -0
- info2soft/resource/v20250630/ReCyle.py +47 -0
- info2soft/resource/v20250630/ServiceCluster.py +139 -0
- info2soft/resource/v20250630/Storage.py +1531 -0
- info2soft/resource/v20250630/StoragePool.py +206 -0
- info2soft/resource/v20250630/StorageUnit.py +209 -0
- info2soft/resource/v20250630/Tape.py +505 -0
- info2soft/resource/v20250630/Ukey.py +218 -0
- info2soft/resource/v20250630/VirtualizationSupport.py +756 -0
- info2soft/resource/v20250630/__init__.py +76 -0
- info2soft/retentionPolicy/__init__.py +0 -0
- info2soft/retentionPolicy/v20240228/RetentionPolicy.py +33 -0
- info2soft/retentionPolicy/v20240228/__init__.py +2 -0
- info2soft/retentionPolicy/v20240819/RetentionPolicy.py +33 -0
- info2soft/retentionPolicy/v20240819/__init__.py +2 -0
- info2soft/retentionPolicy/v20250123/RetentionPolicy.py +33 -0
- info2soft/retentionPolicy/v20250123/__init__.py +2 -0
- info2soft/retentionPolicy/v20250630/RetentionPolicy.py +33 -0
- info2soft/retentionPolicy/v20250630/__init__.py +2 -0
- info2soft/ruleVersion/__init__.py +0 -0
- info2soft/ruleVersion/v20240228/RuleVersion.py +34 -0
- info2soft/ruleVersion/v20240228/__init__.py +2 -0
- info2soft/ruleVersion/v20240819/RuleVersion.py +47 -0
- info2soft/ruleVersion/v20240819/__init__.py +2 -0
- info2soft/ruleVersion/v20250123/RuleVersion.py +47 -0
- info2soft/ruleVersion/v20250123/__init__.py +2 -0
- info2soft/ruleVersion/v20250630/RuleVersion.py +47 -0
- info2soft/ruleVersion/v20250630/__init__.py +2 -0
- info2soft/snapshotTask/__init__.py +0 -0
- info2soft/snapshotTask/v20240819/SnapshotTask.py +157 -0
- info2soft/snapshotTask/v20240819/__init__.py +2 -0
- info2soft/snapshotTask/v20250123/SnapshotTask.py +157 -0
- info2soft/snapshotTask/v20250123/__init__.py +2 -0
- info2soft/snapshotTask/v20250630/SnapshotTask.py +157 -0
- info2soft/snapshotTask/v20250630/__init__.py +2 -0
- info2soft/stoCluster/__init__.py +0 -0
- info2soft/stoCluster/v20250630/StoCluster.py +89 -0
- info2soft/stoCluster/v20250630/__init__.py +2 -0
- info2soft/storage_cdm/FfoMount.py +76 -0
- info2soft/storage_cdm/MountTask.py +151 -0
- info2soft/storage_cdm/SnapshotTask.py +173 -0
- info2soft/storage_cdm/__init__.py +6 -0
- info2soft/storage_cdm/v20220622/FfoMount.py +76 -0
- info2soft/storage_cdm/v20220622/MountTask.py +151 -0
- info2soft/storage_cdm/v20220622/SnapshotTask.py +173 -0
- info2soft/storage_cdm/v20220622/__init__.py +6 -0
- info2soft/storage_cdm/v20230227/MountTask.py +113 -0
- info2soft/storage_cdm/v20230227/SnapshotTask.py +118 -0
- info2soft/storage_cdm/v20230227/__init__.py +3 -0
- info2soft/storage_cdm/v20240228/MountTask.py +151 -0
- info2soft/storage_cdm/v20240228/SnapshotTask.py +175 -0
- info2soft/storage_cdm/v20240228/__init__.py +3 -0
- info2soft/stream/__init__.py +0 -0
- info2soft/stream/v20240228/ObjCmp.py +21 -0
- info2soft/stream/v20240228/OracleBkTakeover.py +74 -0
- info2soft/stream/v20240228/OracleReverse.py +21 -0
- info2soft/stream/v20240228/SyncRule.py +331 -0
- info2soft/stream/v20240228/TbCmp.py +97 -0
- info2soft/stream/v20240228/__init__.py +10 -0
- info2soft/stream/v20240819/ObjCmp.py +99 -0
- info2soft/stream/v20240819/OracleBkTakeover.py +47 -0
- info2soft/stream/v20240819/OracleReverse.py +21 -0
- info2soft/stream/v20240819/RuleMonitor.py +137 -0
- info2soft/stream/v20240819/SyncRule.py +322 -0
- info2soft/stream/v20240819/TbCmp.py +125 -0
- info2soft/stream/v20240819/TrafficReport.py +47 -0
- info2soft/stream/v20240819/__init__.py +14 -0
- info2soft/stream/v20250123/ObjCmp.py +99 -0
- info2soft/stream/v20250123/OracleBkTakeover.py +47 -0
- info2soft/stream/v20250123/OracleReverse.py +21 -0
- info2soft/stream/v20250123/RuleMonitor.py +137 -0
- info2soft/stream/v20250123/SyncRule.py +322 -0
- info2soft/stream/v20250123/TbCmp.py +125 -0
- info2soft/stream/v20250123/TrafficReport.py +47 -0
- info2soft/stream/v20250123/__init__.py +14 -0
- info2soft/stream/v20250630/MaskAlgo.py +61 -0
- info2soft/stream/v20250630/MaskRule.py +140 -0
- info2soft/stream/v20250630/MaskSensType.py +50 -0
- info2soft/stream/v20250630/ObjCmp.py +112 -0
- info2soft/stream/v20250630/OracleBkTakeover.py +85 -0
- info2soft/stream/v20250630/OracleReverse.py +21 -0
- info2soft/stream/v20250630/RuleMonitor.py +137 -0
- info2soft/stream/v20250630/Script.py +89 -0
- info2soft/stream/v20250630/ScriptRule.py +115 -0
- info2soft/stream/v20250630/SensCheck.py +143 -0
- info2soft/stream/v20250630/SensMap.py +129 -0
- info2soft/stream/v20250630/SyncRule.py +698 -0
- info2soft/stream/v20250630/TbCmp.py +151 -0
- info2soft/stream/v20250630/TrafficReport.py +47 -0
- info2soft/stream/v20250630/__init__.py +28 -0
- info2soft/system/__init__.py +1 -0
- info2soft/system/test/__init__.py +0 -0
- info2soft/system/test/v20190104/LicTest.py +215 -0
- info2soft/system/test/v20190104/UserTest.py +152 -0
- info2soft/system/test/v20190104/__init__.py +0 -0
- info2soft/system/test/v20190806/UserTest.py +92 -0
- info2soft/system/test/v20190806/__init__.py +0 -0
- info2soft/system/test/v20220622/CredentialTest.py +129 -0
- info2soft/system/test/v20220622/LicTest.py +215 -0
- info2soft/system/test/v20220622/UserTest.py +92 -0
- info2soft/system/test/v20220622/__init__.py +0 -0
- info2soft/system/v20181227/Lic.py +204 -0
- info2soft/system/v20181227/User.py +203 -0
- info2soft/system/v20181227/__init__.py +0 -0
- info2soft/system/v20200729/Credential.py +102 -0
- info2soft/system/v20200729/__init__.py +2 -0
- info2soft/system/v20220622/Credential.py +102 -0
- info2soft/system/v20220622/Lic.py +204 -0
- info2soft/system/v20220622/User.py +203 -0
- info2soft/system/v20220622/__init__.py +5 -0
- info2soft/system/v20240819/Lic.py +189 -0
- info2soft/system/v20240819/__init__.py +2 -0
- info2soft/system/v20250123/Lic.py +189 -0
- info2soft/system/v20250123/__init__.py +2 -0
- info2soft/system/v20250630/Lic.py +189 -0
- info2soft/system/v20250630/__init__.py +2 -0
- info2soft/tape/Tape.py +74 -0
- info2soft/tape/__init__.py +2 -0
- info2soft/tape/v20220622/Tape.py +74 -0
- info2soft/tape/v20220622/__init__.py +2 -0
- info2soft/tape/v20230227/Tape.py +74 -0
- info2soft/tape/v20230227/__init__.py +2 -0
- info2soft/tape/v20240228/Tape.py +74 -0
- info2soft/tape/v20240228/__init__.py +2 -0
- info2soft/tape/v20240819/TapeRecovery.py +74 -0
- info2soft/tape/v20240819/__init__.py +2 -0
- info2soft/tape/v20250123/TapeRecovery.py +74 -0
- info2soft/tape/v20250123/__init__.py +2 -0
- info2soft/tape/v20250630/TapeRecovery.py +74 -0
- info2soft/tape/v20250630/__init__.py +2 -0
- info2soft/tape_copy/__init__.py +0 -0
- info2soft/tape_copy/v20230227/TapeCopy.py +74 -0
- info2soft/tape_copy/v20230227/__init__.py +2 -0
- info2soft/tape_copy/v20240228/TapeCopy.py +74 -0
- info2soft/tape_copy/v20240228/__init__.py +2 -0
- info2soft/taskCenter/__init__.py +0 -0
- info2soft/taskCenter/v20240819/BatchTask.py +73 -0
- info2soft/taskCenter/v20240819/__init__.py +2 -0
- info2soft/taskCenter/v20250123/BatchTask.py +73 -0
- info2soft/taskCenter/v20250123/__init__.py +2 -0
- info2soft/taskCenter/v20250630/BatchTask.py +73 -0
- info2soft/taskCenter/v20250630/__init__.py +2 -0
- info2soft/thirdParty/__init__.py +0 -0
- info2soft/thirdParty/v20240819/ThirdParty.py +21 -0
- info2soft/thirdParty/v20240819/__init__.py +2 -0
- info2soft/thirdParty/v20250123/ThirdParty.py +21 -0
- info2soft/thirdParty/v20250123/__init__.py +2 -0
- info2soft/thirdParty/v20250630/ThirdParty.py +21 -0
- info2soft/thirdParty/v20250630/__init__.py +2 -0
- info2soft/timing/TimingBackup.py +239 -0
- info2soft/timing/TimingRecovery.py +369 -0
- info2soft/timing/__init__.py +0 -0
- info2soft/timing/test/TimingBackupTest.py +451 -0
- info2soft/timing/test/TimingRecoveryTest.py +478 -0
- info2soft/timing/test/__init__.py +0 -0
- info2soft/timing/test/v20220622/TimingBackupTest.py +451 -0
- info2soft/timing/test/v20220622/TimingRecoveryTest.py +478 -0
- info2soft/timing/test/v20220622/__init__.py +0 -0
- info2soft/timing/v20220622/TimingBackup.py +239 -0
- info2soft/timing/v20220622/TimingRecovery.py +369 -0
- info2soft/timing/v20220622/__init__.py +2 -0
- info2soft/timing/v20230227/TimingBackup.py +626 -0
- info2soft/timing/v20230227/__init__.py +2 -0
- info2soft/timing/v20240228/TimingBackup.py +664 -0
- info2soft/timing/v20240228/__init__.py +2 -0
- info2soft/timing/v20240819/TimingBackup.py +361 -0
- info2soft/timing/v20240819/TimingRecovery.py +376 -0
- info2soft/timing/v20240819/__init__.py +4 -0
- info2soft/timing/v20250123/TimingBackup.py +361 -0
- info2soft/timing/v20250123/TimingRecovery.py +376 -0
- info2soft/timing/v20250123/__init__.py +4 -0
- info2soft/timing/v20250630/TimingBackup.py +361 -0
- info2soft/timing/v20250630/TimingRecovery.py +376 -0
- info2soft/timing/v20250630/__init__.py +4 -0
- info2soft/tools/__init__.py +0 -0
- info2soft/tools/test/DiagnoseTest.py +62 -0
- info2soft/tools/test/__init__.py +0 -0
- info2soft/tools/test/v20190104/CompareTest.py +241 -0
- info2soft/tools/test/v20190104/DiagnoseTest.py +73 -0
- info2soft/tools/test/v20190104/__init__.py +0 -0
- info2soft/tools/test/v20220622/CompareTest.py +241 -0
- info2soft/tools/test/v20220622/DiagnoseTest.py +62 -0
- info2soft/tools/test/v20220622/__init__.py +0 -0
- info2soft/tools/v20181227/Compare.py +177 -0
- info2soft/tools/v20181227/Diagnose.py +60 -0
- info2soft/tools/v20181227/__init__.py +0 -0
- info2soft/tools/v20220622/Compare.py +177 -0
- info2soft/tools/v20220622/Diagnose.py +60 -0
- info2soft/tools/v20220622/__init__.py +2 -0
- info2soft/tools/v20230227/Compare.py +129 -0
- info2soft/tools/v20230227/__init__.py +2 -0
- info2soft/tools/v20240228/Compare.py +129 -0
- info2soft/tools/v20240228/__init__.py +2 -0
- info2soft/tools/v20240819/Compare.py +156 -0
- info2soft/tools/v20240819/__init__.py +2 -0
- info2soft/tools/v20250123/Compare.py +156 -0
- info2soft/tools/v20250123/__init__.py +2 -0
- info2soft/tools/v20250630/Compare.py +156 -0
- info2soft/tools/v20250630/__init__.py +2 -0
- info2soft/upmonitor/__init__.py +0 -0
- info2soft/upmonitor/test/UpMonitor.py +153 -0
- info2soft/upmonitor/test/__init__.py +0 -0
- info2soft/upmonitor/test/v20220622/UpMonitor.py +153 -0
- info2soft/upmonitor/test/v20220622/__init__.py +0 -0
- info2soft/upmonitor/v20190805/UpMonitor.py +134 -0
- info2soft/upmonitor/v20190805/__init__.py +0 -0
- info2soft/upmonitor/v20220622/UpMonitor.py +134 -0
- info2soft/upmonitor/v20220622/__init__.py +1 -0
- info2soft/upmonitor/v20230227/UpMonitor.py +128 -0
- info2soft/upmonitor/v20230227/__init__.py +2 -0
- info2soft/upmonitor/v20240228/UpMonitor.py +128 -0
- info2soft/upmonitor/v20240228/__init__.py +2 -0
- info2soft/upmonitor/v20240819/UpMonitor.py +245 -0
- info2soft/upmonitor/v20240819/__init__.py +2 -0
- info2soft/upmonitor/v20250123/UpMonitor.py +245 -0
- info2soft/upmonitor/v20250123/__init__.py +2 -0
- info2soft/upmonitor/v20250630/UpMonitor.py +245 -0
- info2soft/upmonitor/v20250630/__init__.py +2 -0
- info2soft/vmClone/__init__.py +0 -0
- info2soft/vmClone/v20240819/VmCloneRule.py +100 -0
- info2soft/vmClone/v20240819/VmCloneVm.py +102 -0
- info2soft/vmClone/v20240819/__init__.py +4 -0
- info2soft/vmClone/v20250123/VmCloneRule.py +100 -0
- info2soft/vmClone/v20250123/VmCloneVm.py +102 -0
- info2soft/vmClone/v20250123/__init__.py +4 -0
- info2soft/vmClone/v20250630/VmCloneRule.py +100 -0
- info2soft/vmClone/v20250630/VmCloneVm.py +102 -0
- info2soft/vmClone/v20250630/__init__.py +4 -0
- info2soft/vp/VirtualizationSupport.py +1066 -0
- info2soft/vp/__init__.py +0 -0
- info2soft/vp/test/VirtualizationSupportTest.py +1341 -0
- info2soft/vp/test/__init__.py +0 -0
- info2soft/vp/test/v20220622/VirtualizationSupportTest.py +1341 -0
- info2soft/vp/test/v20220622/__init__.py +0 -0
- info2soft/vp/v20220622/VirtualizationSupport.py +1066 -0
- info2soft/vp/v20220622/__init__.py +1 -0
- info2soft/vp/v20230227/VirtualizationSupport.py +570 -0
- info2soft/vp/v20230227/__init__.py +2 -0
- info2soft/vp/v20240228/VirtualizationSupport.py +570 -0
- info2soft/vp/v20240228/__init__.py +2 -0
- info2soft/vp/v20240819/VirtualizationSupport.py +876 -0
- info2soft/vp/v20240819/__init__.py +2 -0
- info2soft/vp/v20250123/VirtualizationSupport.py +876 -0
- info2soft/vp/v20250123/__init__.py +2 -0
- info2soft/vp/v20250630/VirtualizationSupport.py +876 -0
- info2soft/vp/v20250630/__init__.py +2 -0
- info2soft/vpBackupRule/__init__.py +0 -0
- info2soft/vpBackupRule/v20240819/VpBackupRule.py +115 -0
- info2soft/vpBackupRule/v20240819/__init__.py +2 -0
- info2soft/vpBackupRule/v20250123/VpBackupRule.py +115 -0
- info2soft/vpBackupRule/v20250123/__init__.py +2 -0
- info2soft/vpBackupRule/v20250630/VpBackupRule.py +127 -0
- info2soft/vpBackupRule/v20250630/__init__.py +2 -0
- info2soft/vpRecoveryRule/__init__.py +0 -0
- info2soft/vpRecoveryRule/v20240819/VpRecoveryRule.py +102 -0
- info2soft/vpRecoveryRule/v20240819/__init__.py +2 -0
- info2soft/vpRecoveryRule/v20250123/VpRecoveryRule.py +102 -0
- info2soft/vpRecoveryRule/v20250123/__init__.py +2 -0
- info2soft/vpRecoveryRule/v20250630/VpRecoveryRule.py +102 -0
- info2soft/vpRecoveryRule/v20250630/__init__.py +2 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
|
|
2
|
+
from info2soft import config
|
|
3
|
+
from info2soft import https
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Postgres (object):
|
|
7
|
+
def __init__(self, auth):
|
|
8
|
+
self.auth = auth
|
|
9
|
+
'''
|
|
10
|
+
* postgres同步规则-列表
|
|
11
|
+
*
|
|
12
|
+
* @param dict $body 参数详见 API 手册
|
|
13
|
+
* @return list
|
|
14
|
+
'''
|
|
15
|
+
def listPgsqlRule(self, body):
|
|
16
|
+
|
|
17
|
+
url = '{0}/pgsql/rule'.format(config.get_default('default_api_host'))
|
|
18
|
+
|
|
19
|
+
res = https._get(url, body, self.auth)
|
|
20
|
+
return res
|
|
21
|
+
|
|
22
|
+
'''
|
|
23
|
+
* 新建
|
|
24
|
+
*
|
|
25
|
+
* @param dict $body 参数详见 API 手册
|
|
26
|
+
* @return list
|
|
27
|
+
'''
|
|
28
|
+
def createPgsqlRule(self, body):
|
|
29
|
+
|
|
30
|
+
url = '{0}pgsql/rule'.format(config.get_default('default_api_host'))
|
|
31
|
+
|
|
32
|
+
res = https._post(url, body, self.auth)
|
|
33
|
+
return res
|
|
34
|
+
|
|
35
|
+
'''
|
|
36
|
+
* 修改
|
|
37
|
+
*
|
|
38
|
+
* @param dict $body 参数详见 API 手册
|
|
39
|
+
* @return list
|
|
40
|
+
'''
|
|
41
|
+
def modifyPgsqlRule(self, body):
|
|
42
|
+
|
|
43
|
+
url = '{0}/pgsql/rule'.format(config.get_default('default_api_host'))
|
|
44
|
+
|
|
45
|
+
res = https._put(url, body, self.auth)
|
|
46
|
+
return res
|
|
47
|
+
|
|
48
|
+
'''
|
|
49
|
+
* 删除
|
|
50
|
+
*
|
|
51
|
+
* @param dict $body 参数详见 API 手册
|
|
52
|
+
* @return list
|
|
53
|
+
'''
|
|
54
|
+
def deletePgsqlRule(self, body):
|
|
55
|
+
|
|
56
|
+
url = '{0}/pgsql/rule'.format(config.get_default('default_api_host'))
|
|
57
|
+
|
|
58
|
+
res = https._delete(url, body, self.auth)
|
|
59
|
+
return res
|
|
60
|
+
|
|
61
|
+
'''
|
|
62
|
+
* 操作 停止
|
|
63
|
+
*
|
|
64
|
+
* @param dict $body 参数详见 API 手册
|
|
65
|
+
* @return list
|
|
66
|
+
'''
|
|
67
|
+
def stopPgsqlRule(self, body):
|
|
68
|
+
if body is None:
|
|
69
|
+
body = {
|
|
70
|
+
'operate': 'stop'
|
|
71
|
+
}
|
|
72
|
+
else:
|
|
73
|
+
body['operate'] = 'stop'
|
|
74
|
+
|
|
75
|
+
url = '{0}/pgsql/rule/operate'.format(config.get_default('default_api_host'))
|
|
76
|
+
|
|
77
|
+
res = https._post(url, body, self.auth)
|
|
78
|
+
return res
|
|
79
|
+
|
|
80
|
+
'''
|
|
81
|
+
* 操作 重新同步
|
|
82
|
+
*
|
|
83
|
+
* @param dict $body 参数详见 API 手册
|
|
84
|
+
* @return list
|
|
85
|
+
'''
|
|
86
|
+
def restartPgsqlRule(self, body):
|
|
87
|
+
if body is None:
|
|
88
|
+
body = {
|
|
89
|
+
'operate': 'restart'
|
|
90
|
+
}
|
|
91
|
+
else:
|
|
92
|
+
body['operate'] = 'restart'
|
|
93
|
+
|
|
94
|
+
url = '{0}/pgsql/rule/operate'.format(config.get_default('default_api_host'))
|
|
95
|
+
|
|
96
|
+
res = https._post(url, body, self.auth)
|
|
97
|
+
return res
|
|
98
|
+
|
|
99
|
+
'''
|
|
100
|
+
* 操作 继续
|
|
101
|
+
*
|
|
102
|
+
* @param dict $body 参数详见 API 手册
|
|
103
|
+
* @return list
|
|
104
|
+
'''
|
|
105
|
+
def resumePgsqlRule(self, body):
|
|
106
|
+
if body is None:
|
|
107
|
+
body = {
|
|
108
|
+
'operate': 'resume'
|
|
109
|
+
}
|
|
110
|
+
else:
|
|
111
|
+
body['operate'] = 'resume'
|
|
112
|
+
|
|
113
|
+
url = '{0}/pgsql/rule/operate'.format(config.get_default('default_api_host'))
|
|
114
|
+
|
|
115
|
+
res = https._post(url, body, self.auth)
|
|
116
|
+
return res
|
|
117
|
+
|
|
118
|
+
'''
|
|
119
|
+
* 操作 停止调度
|
|
120
|
+
*
|
|
121
|
+
* @param dict $body 参数详见 API 手册
|
|
122
|
+
* @return list
|
|
123
|
+
'''
|
|
124
|
+
def stopSchedulePgsqlRule(self, body):
|
|
125
|
+
if body is None:
|
|
126
|
+
body = {
|
|
127
|
+
'operate': 'stop_schedule'
|
|
128
|
+
}
|
|
129
|
+
else:
|
|
130
|
+
body['operate'] = 'stop_schedule'
|
|
131
|
+
|
|
132
|
+
url = '{0}/pgsql/rule/operate'.format(config.get_default('default_api_host'))
|
|
133
|
+
|
|
134
|
+
res = https._post(url, body, self.auth)
|
|
135
|
+
return res
|
|
136
|
+
|
|
137
|
+
'''
|
|
138
|
+
* 操作 启动调度
|
|
139
|
+
*
|
|
140
|
+
* @param dict $body 参数详见 API 手册
|
|
141
|
+
* @return list
|
|
142
|
+
'''
|
|
143
|
+
def startSchedulePgsqlRule(self, body):
|
|
144
|
+
if body is None:
|
|
145
|
+
body = {
|
|
146
|
+
'operate': 'start_schedule'
|
|
147
|
+
}
|
|
148
|
+
else:
|
|
149
|
+
body['operate'] = 'start_schedule'
|
|
150
|
+
|
|
151
|
+
url = '{0}/pgsql/rule/operate'.format(config.get_default('default_api_host'))
|
|
152
|
+
|
|
153
|
+
res = https._post(url, body, self.auth)
|
|
154
|
+
return res
|
|
155
|
+
|
|
156
|
+
'''
|
|
157
|
+
* postgres规则-状态
|
|
158
|
+
*
|
|
159
|
+
* @param dict $body 参数详见 API 手册
|
|
160
|
+
* @return list
|
|
161
|
+
'''
|
|
162
|
+
def listPgsqlStatus(self, body):
|
|
163
|
+
|
|
164
|
+
url = '{0}/pgsql/rule/status'.format(config.get_default('default_api_host'))
|
|
165
|
+
|
|
166
|
+
res = https._get(url, body, self.auth)
|
|
167
|
+
return res
|
|
168
|
+
|
|
169
|
+
'''
|
|
170
|
+
* postgres 日志
|
|
171
|
+
*
|
|
172
|
+
* @param dict $body 参数详见 API 手册
|
|
173
|
+
* @return list
|
|
174
|
+
'''
|
|
175
|
+
def listPgsqlRuleLog(self, body):
|
|
176
|
+
|
|
177
|
+
url = '{0}/pgsql/rule/log'.format(config.get_default('default_api_host'))
|
|
178
|
+
|
|
179
|
+
res = https._post(url, body, self.auth)
|
|
180
|
+
return res
|
|
181
|
+
|
|
182
|
+
'''
|
|
183
|
+
* postgres获取单个信息
|
|
184
|
+
*
|
|
185
|
+
* @body['uuid'] String 必填 节点uuid
|
|
186
|
+
* @param dict $body 参数详见 API 手册
|
|
187
|
+
* @return list
|
|
188
|
+
'''
|
|
189
|
+
def describePgsqlRules(self, body, uuid):
|
|
190
|
+
if uuid is None:
|
|
191
|
+
exit()
|
|
192
|
+
url = '{0}/pgsql/rule/{1}'.format(config.get_default('default_api_host'), uuid)
|
|
193
|
+
|
|
194
|
+
res = https._get(url, body, self.auth)
|
|
195
|
+
return res
|
|
196
|
+
|
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
from info2soft import config
|
|
2
|
+
from info2soft import https
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class QianBaseSync(object):
|
|
6
|
+
def __init__(self, auth):
|
|
7
|
+
self.auth = auth
|
|
8
|
+
|
|
9
|
+
'''
|
|
10
|
+
* qianbase同步规则-列表
|
|
11
|
+
*
|
|
12
|
+
* @param dict $body 参数详见 API 手册
|
|
13
|
+
* @return list
|
|
14
|
+
'''
|
|
15
|
+
|
|
16
|
+
def listQianbaseRule(self, body):
|
|
17
|
+
|
|
18
|
+
url = '{0}/qianbase/rule'.format(config.get_default('default_api_host'))
|
|
19
|
+
|
|
20
|
+
res = https._get(url, body, self.auth)
|
|
21
|
+
return res
|
|
22
|
+
|
|
23
|
+
'''
|
|
24
|
+
* 新建
|
|
25
|
+
*
|
|
26
|
+
* @param dict $body 参数详见 API 手册
|
|
27
|
+
* @return list
|
|
28
|
+
'''
|
|
29
|
+
|
|
30
|
+
def createQianbaseRule(self, body):
|
|
31
|
+
|
|
32
|
+
url = '{0}/qianbase/rule'.format(config.get_default('default_api_host'))
|
|
33
|
+
|
|
34
|
+
res = https._post(url, body, self.auth)
|
|
35
|
+
return res
|
|
36
|
+
|
|
37
|
+
'''
|
|
38
|
+
* 修改
|
|
39
|
+
*
|
|
40
|
+
* @param dict $body 参数详见 API 手册
|
|
41
|
+
* @return list
|
|
42
|
+
'''
|
|
43
|
+
|
|
44
|
+
def modifyQianbaseRule(self, body):
|
|
45
|
+
|
|
46
|
+
url = '{0}/qianbase/rule'.format(config.get_default('default_api_host'))
|
|
47
|
+
|
|
48
|
+
res = https._put(url, body, self.auth)
|
|
49
|
+
return res
|
|
50
|
+
|
|
51
|
+
'''
|
|
52
|
+
* 删除
|
|
53
|
+
*
|
|
54
|
+
* @param dict $body 参数详见 API 手册
|
|
55
|
+
* @return list
|
|
56
|
+
'''
|
|
57
|
+
|
|
58
|
+
def deleteQianbaseRule(self, body):
|
|
59
|
+
|
|
60
|
+
url = '{0}/qianbase/rule'.format(config.get_default('default_api_host'))
|
|
61
|
+
|
|
62
|
+
res = https._delete(url, body, self.auth)
|
|
63
|
+
return res
|
|
64
|
+
|
|
65
|
+
'''
|
|
66
|
+
* qianbase规则-状态
|
|
67
|
+
*
|
|
68
|
+
* @param dict $body 参数详见 API 手册
|
|
69
|
+
* @return list
|
|
70
|
+
'''
|
|
71
|
+
|
|
72
|
+
def listQianbaseStatus(self, body):
|
|
73
|
+
|
|
74
|
+
url = '{0}/qianbase/rule/status'.format(config.get_default('default_api_host'))
|
|
75
|
+
|
|
76
|
+
res = https._get(url, body, self.auth)
|
|
77
|
+
return res
|
|
78
|
+
|
|
79
|
+
'''
|
|
80
|
+
* 操作 继续
|
|
81
|
+
*
|
|
82
|
+
* @param dict $body 参数详见 API 手册
|
|
83
|
+
* @return list
|
|
84
|
+
'''
|
|
85
|
+
|
|
86
|
+
def resumeQianbaseRules(self, body):
|
|
87
|
+
if body is None:
|
|
88
|
+
body = {
|
|
89
|
+
'operate': 'resume'
|
|
90
|
+
}
|
|
91
|
+
else:
|
|
92
|
+
body['operate'] = 'resume'
|
|
93
|
+
|
|
94
|
+
url = '{0}/qianbase/rule/operate'.format(config.get_default('default_api_host'))
|
|
95
|
+
|
|
96
|
+
res = https._post(url, body, self.auth)
|
|
97
|
+
return res
|
|
98
|
+
|
|
99
|
+
'''
|
|
100
|
+
* 操作 停止
|
|
101
|
+
*
|
|
102
|
+
* @param dict $body 参数详见 API 手册
|
|
103
|
+
* @return list
|
|
104
|
+
'''
|
|
105
|
+
|
|
106
|
+
def stopQianbaseRules(self, body):
|
|
107
|
+
if body is None:
|
|
108
|
+
body = {
|
|
109
|
+
'operate': 'stop'
|
|
110
|
+
}
|
|
111
|
+
else:
|
|
112
|
+
body['operate'] = 'stop'
|
|
113
|
+
|
|
114
|
+
url = '{0}/qianbase/rule/operate'.format(config.get_default('default_api_host'))
|
|
115
|
+
|
|
116
|
+
res = https._post(url, body, self.auth)
|
|
117
|
+
return res
|
|
118
|
+
|
|
119
|
+
'''
|
|
120
|
+
* qianbase日志
|
|
121
|
+
*
|
|
122
|
+
* @param dict $body 参数详见 API 手册
|
|
123
|
+
* @return list
|
|
124
|
+
'''
|
|
125
|
+
|
|
126
|
+
def listQianbaseRuleLog(self, body):
|
|
127
|
+
|
|
128
|
+
url = '{0}/qianbase/rule/log'.format(config.get_default('default_api_host'))
|
|
129
|
+
|
|
130
|
+
res = https._post(url, body, self.auth)
|
|
131
|
+
return res
|
|
132
|
+
|
|
133
|
+
'''
|
|
134
|
+
* qianbase获取单个信息
|
|
135
|
+
*
|
|
136
|
+
* @body['uuid'] String 必填 节点uuid
|
|
137
|
+
* @param dict $body 参数详见 API 手册
|
|
138
|
+
* @return list
|
|
139
|
+
'''
|
|
140
|
+
|
|
141
|
+
def describeQianbaseRules(self, body, uuid):
|
|
142
|
+
if uuid is None:
|
|
143
|
+
exit()
|
|
144
|
+
url = '{0}/qianbase/rule/{1}'.format(config.get_default('default_api_host'), uuid)
|
|
145
|
+
|
|
146
|
+
res = https._get(url, body, self.auth)
|
|
147
|
+
return res
|
|
148
|
+
|
|
149
|
+
'''
|
|
150
|
+
* qianbase表比较 - 新建
|
|
151
|
+
*
|
|
152
|
+
* @param dict $body 参数详见 API 手册
|
|
153
|
+
* @return list
|
|
154
|
+
'''
|
|
155
|
+
|
|
156
|
+
def createQbTbCmp(self, body):
|
|
157
|
+
|
|
158
|
+
url = '{0}/qianbase/tb_cmp'.format(config.get_default('default_api_host'))
|
|
159
|
+
|
|
160
|
+
res = https._post(url, body, self.auth)
|
|
161
|
+
return res
|
|
162
|
+
|
|
163
|
+
'''
|
|
164
|
+
* qianbase状态接口
|
|
165
|
+
*
|
|
166
|
+
* @param dict $body 参数详见 API 手册
|
|
167
|
+
* @return list
|
|
168
|
+
'''
|
|
169
|
+
|
|
170
|
+
def listQbTbCmpStatus(self, body):
|
|
171
|
+
|
|
172
|
+
url = '{0}/qianbase/tb_cmp/status'.format(config.get_default('default_api_host'))
|
|
173
|
+
|
|
174
|
+
res = https._get(url, body, self.auth)
|
|
175
|
+
return res
|
|
176
|
+
|
|
177
|
+
'''
|
|
178
|
+
* qianbase表比较 - 获取单个
|
|
179
|
+
*
|
|
180
|
+
* @body['uuid'] String 必填 节点uuid
|
|
181
|
+
* @param dict $body 参数详见 API 手册
|
|
182
|
+
* @return list
|
|
183
|
+
'''
|
|
184
|
+
|
|
185
|
+
def describeQbTbCmp(self, body, uuid):
|
|
186
|
+
if uuid is None:
|
|
187
|
+
exit()
|
|
188
|
+
url = '{0}/qianbase/tb_cmp/{1}'.format(config.get_default('default_api_host'), uuid)
|
|
189
|
+
|
|
190
|
+
res = https._get(url, body, self.auth)
|
|
191
|
+
return res
|
|
192
|
+
|
|
193
|
+
'''
|
|
194
|
+
* qianbase表比较 - 删除
|
|
195
|
+
*
|
|
196
|
+
* @param dict $body 参数详见 API 手册
|
|
197
|
+
* @return list
|
|
198
|
+
'''
|
|
199
|
+
|
|
200
|
+
def deleteQbTbCmp(self, body):
|
|
201
|
+
|
|
202
|
+
url = '{0}/qianbase/tb_cmp'.format(config.get_default('default_api_host'))
|
|
203
|
+
|
|
204
|
+
res = https._delete(url, body, self.auth)
|
|
205
|
+
return res
|
|
206
|
+
|
|
207
|
+
'''
|
|
208
|
+
* qianbase表比较 - 列表
|
|
209
|
+
*
|
|
210
|
+
* @param dict $body 参数详见 API 手册
|
|
211
|
+
* @return list
|
|
212
|
+
'''
|
|
213
|
+
|
|
214
|
+
def listQbTbCmp(self, body):
|
|
215
|
+
|
|
216
|
+
url = '{0}/qianbase/tb_cmp'.format(config.get_default('default_api_host'))
|
|
217
|
+
|
|
218
|
+
res = https._get(url, body, self.auth)
|
|
219
|
+
return res
|
|
220
|
+
|
|
221
|
+
'''
|
|
222
|
+
* qianbase 历史结果
|
|
223
|
+
*
|
|
224
|
+
* @param dict $body 参数详见 API 手册
|
|
225
|
+
* @return list
|
|
226
|
+
'''
|
|
227
|
+
|
|
228
|
+
def listQbTbCmpResultTimeList(self, body):
|
|
229
|
+
|
|
230
|
+
url = '{0}/qianbase/tb_cmp/result_time_list'.format(config.get_default('default_api_host'))
|
|
231
|
+
|
|
232
|
+
res = https._get(url, body, self.auth)
|
|
233
|
+
return res
|
|
234
|
+
|
|
235
|
+
'''
|
|
236
|
+
* qianbase表比较-操作 停止
|
|
237
|
+
*
|
|
238
|
+
* @param dict $body 参数详见 API 手册
|
|
239
|
+
* @return list
|
|
240
|
+
'''
|
|
241
|
+
|
|
242
|
+
def stopQbTbCmp(self, body):
|
|
243
|
+
if body is None:
|
|
244
|
+
body = {
|
|
245
|
+
'operate': 'cmp_stop'
|
|
246
|
+
}
|
|
247
|
+
else:
|
|
248
|
+
body['operate'] = 'cmp_stop'
|
|
249
|
+
|
|
250
|
+
url = '{0}/qianbase/tb_cmp/operate'.format(config.get_default('default_api_host'))
|
|
251
|
+
|
|
252
|
+
res = https._post(url, body, self.auth)
|
|
253
|
+
return res
|
|
254
|
+
|
|
255
|
+
'''
|
|
256
|
+
* qianbase表比较-操作 重启
|
|
257
|
+
*
|
|
258
|
+
* @param dict $body 参数详见 API 手册
|
|
259
|
+
* @return list
|
|
260
|
+
'''
|
|
261
|
+
|
|
262
|
+
def restartQbTbCmp(self, body):
|
|
263
|
+
if body is None:
|
|
264
|
+
body = {
|
|
265
|
+
'operate': 'cmp_restart'
|
|
266
|
+
}
|
|
267
|
+
else:
|
|
268
|
+
body['operate'] = 'cmp_restart'
|
|
269
|
+
|
|
270
|
+
url = '{0}/qianbase/tb_cmp/operate'.format(config.get_default('default_api_host'))
|
|
271
|
+
|
|
272
|
+
res = https._post(url, body, self.auth)
|
|
273
|
+
return res
|
|
274
|
+
|
|
275
|
+
'''
|
|
276
|
+
* qianbase表比较-比较结果的删除
|
|
277
|
+
*
|
|
278
|
+
* @param dict $body 参数详见 API 手册
|
|
279
|
+
* @return list
|
|
280
|
+
'''
|
|
281
|
+
|
|
282
|
+
def describeQbTbCmpResuluTimeList(self, body):
|
|
283
|
+
|
|
284
|
+
url = '{0}/qianbase/tb_cmp/result_time_list'.format(config.get_default('default_api_host'))
|
|
285
|
+
|
|
286
|
+
res = https._delete(url, body, self.auth)
|
|
287
|
+
return res
|
|
288
|
+
|
|
289
|
+
'''
|
|
290
|
+
* qianbase表比较-比较任务结果
|
|
291
|
+
*
|
|
292
|
+
* @param dict $body 参数详见 API 手册
|
|
293
|
+
* @return list
|
|
294
|
+
'''
|
|
295
|
+
|
|
296
|
+
def describeQbTbCmpResult(self, body):
|
|
297
|
+
|
|
298
|
+
url = '{0}/qianbase/tb_cmp/result'.format(config.get_default('default_api_host'))
|
|
299
|
+
|
|
300
|
+
res = https._get(url, body, self.auth)
|
|
301
|
+
return res
|
|
302
|
+
|
|
303
|
+
'''
|
|
304
|
+
* qianbase表比较-错误信息
|
|
305
|
+
*
|
|
306
|
+
* @param dict $body 参数详见 API 手册
|
|
307
|
+
* @return list
|
|
308
|
+
'''
|
|
309
|
+
|
|
310
|
+
def describeQbTbCmpErrorMsg(self, body):
|
|
311
|
+
|
|
312
|
+
url = '{0}/qianbase/tb_cmp/error_msg'.format(config.get_default('default_api_host'))
|
|
313
|
+
|
|
314
|
+
res = https._get(url, body, self.auth)
|
|
315
|
+
return res
|
|
316
|
+
|
|
317
|
+
'''
|
|
318
|
+
* qianbase表比较-比较结果
|
|
319
|
+
*
|
|
320
|
+
* @param dict $body 参数详见 API 手册
|
|
321
|
+
* @return list
|
|
322
|
+
'''
|
|
323
|
+
|
|
324
|
+
def describeQbTbCmpCmpResult(self, body):
|
|
325
|
+
|
|
326
|
+
url = '{0}/qianbase/tb_cmp/cmp_result'.format(config.get_default('default_api_host'))
|
|
327
|
+
|
|
328
|
+
res = https._get(url, body, self.auth)
|
|
329
|
+
return res
|
|
330
|
+
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
|
|
2
|
+
from info2soft import config
|
|
3
|
+
from info2soft import https
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class QianBasexTP (object):
|
|
7
|
+
def __init__(self, auth):
|
|
8
|
+
self.auth = auth
|
|
9
|
+
'''
|
|
10
|
+
* qianbasexTP同步规则
|
|
11
|
+
*
|
|
12
|
+
* @param dict $body 参数详见 API 手册
|
|
13
|
+
* @return list
|
|
14
|
+
'''
|
|
15
|
+
def listQianbasex(self, body):
|
|
16
|
+
|
|
17
|
+
url = '{0}/qianbasextp/rule'.format(config.get_default('default_api_host'))
|
|
18
|
+
|
|
19
|
+
res = https._get(url, body, self.auth)
|
|
20
|
+
return res
|
|
21
|
+
|
|
22
|
+
'''
|
|
23
|
+
* 新建
|
|
24
|
+
*
|
|
25
|
+
* @param dict $body 参数详见 API 手册
|
|
26
|
+
* @return list
|
|
27
|
+
'''
|
|
28
|
+
def createQianbasex(self, body):
|
|
29
|
+
|
|
30
|
+
url = '{0}/qianbasextp/rule'.format(config.get_default('default_api_host'))
|
|
31
|
+
|
|
32
|
+
res = https._post(url, body, self.auth)
|
|
33
|
+
return res
|
|
34
|
+
|
|
35
|
+
'''
|
|
36
|
+
* 修改
|
|
37
|
+
*
|
|
38
|
+
* @param dict $body 参数详见 API 手册
|
|
39
|
+
* @return list
|
|
40
|
+
'''
|
|
41
|
+
def modifyQianbasex(self, body):
|
|
42
|
+
|
|
43
|
+
url = '{0}/qianbasextp/rule'.format(config.get_default('default_api_host'))
|
|
44
|
+
|
|
45
|
+
res = https._put(url, body, self.auth)
|
|
46
|
+
return res
|
|
47
|
+
|
|
48
|
+
'''
|
|
49
|
+
* 删除
|
|
50
|
+
*
|
|
51
|
+
* @param dict $body 参数详见 API 手册
|
|
52
|
+
* @return list
|
|
53
|
+
'''
|
|
54
|
+
def deleteQianbasex(self, body):
|
|
55
|
+
|
|
56
|
+
url = '{0}/qianbasextp/rule'.format(config.get_default('default_api_host'))
|
|
57
|
+
|
|
58
|
+
res = https._delete(url, body, self.auth)
|
|
59
|
+
return res
|
|
60
|
+
|
|
61
|
+
'''
|
|
62
|
+
* qianbase规则-状态
|
|
63
|
+
*
|
|
64
|
+
* @param dict $body 参数详见 API 手册
|
|
65
|
+
* @return list
|
|
66
|
+
'''
|
|
67
|
+
def listQianbasex(self, body):
|
|
68
|
+
|
|
69
|
+
url = '{0}/qianbasextp/rule/status'.format(config.get_default('default_api_host'))
|
|
70
|
+
|
|
71
|
+
res = https._get(url, body, self.auth)
|
|
72
|
+
return res
|
|
73
|
+
|
|
74
|
+
'''
|
|
75
|
+
* qianbase日志
|
|
76
|
+
*
|
|
77
|
+
* @param dict $body 参数详见 API 手册
|
|
78
|
+
* @return list
|
|
79
|
+
'''
|
|
80
|
+
def listQianbasex(self, body):
|
|
81
|
+
|
|
82
|
+
url = '{0}/qianbasextp/rule/log'.format(config.get_default('default_api_host'))
|
|
83
|
+
|
|
84
|
+
res = https._post(url, body, self.auth)
|
|
85
|
+
return res
|
|
86
|
+
|