js7-client-python 2.0.1.0__tar.gz → 2.0.9__tar.gz
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.
- {js7_client_python-2.0.1.0/src/js7_client_python.egg-info → js7_client_python-2.0.9}/PKG-INFO +42 -20
- js7_client_python-2.0.9/README.md +95 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/pyproject.toml +2 -2
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/export.py +1 -2
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/export_agents_action.py +6 -19
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/register_controller_action.py +17 -25
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/test_controller_instance_action.py +8 -7
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/generate_orders_action.py +2 -3
- js7_client_python-2.0.1.0/src/js7/client/action/daily_plan/create_projections_action.py → js7_client_python-2.0.9/src/js7/client/action/daily_plan/recreate_projections_action.py +1 -1
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_account_permissions_action.py +2 -2
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_roles_action.py +7 -4
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/get_change_dependencies_action.py +13 -10
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/get_git_credentials_action.py +15 -10
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/import_configurations_action.py +16 -10
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/import_deploy_configurations_action.py +7 -5
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/recall_folder_action.py +6 -25
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/remove_configurations_from_trash_action.py +4 -6
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/remove_repository_configuration_action.py +8 -4
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/restore_configuration_from_trash_action.py +3 -3
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/get_components_versions_action.py +1 -1
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/run_service_action.py +3 -3
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/cancel_orders_action.py +7 -3
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/stop_job_instructions_action.py +8 -4
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/unstop_job_instructions_action.py +8 -4
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/auth/auth_provider.py +0 -1
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/agent/agent.py +0 -1
- js7_client_python-2.0.1.0/src/js7/client/feature/agent/operate.py → js7_client_python-2.0.9/src/js7/client/feature/agent/manage.py +269 -107
- js7_client_python-2.0.9/src/js7/client/feature/agent/operate.py +194 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/controller/manage.py +43 -26
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/controller/operate.py +1 -34
- js7_client_python-2.0.1.0/src/js7/client/feature/daily_plan/operate.py → js7_client_python-2.0.9/src/js7/client/feature/daily_plan/manage.py +191 -133
- js7_client_python-2.0.9/src/js7/client/feature/daily_plan/operate.py +122 -0
- js7_client_python-2.0.9/src/js7/client/feature/inventory/deploy.py +171 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/inventory/inventory.py +6 -1
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/inventory/manage.py +12 -183
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/inventory/manage_repository.py +3 -3
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/joc/manage.py +35 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/joc/operate.py +4 -40
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/order/operate.py +6 -2
- js7_client_python-2.0.9/src/js7/client/feature/workflow/manage.py +102 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/workflow/operate.py +0 -46
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/__init__.py +4 -2
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/private/http/joc/joc_v_2_8_2.py +38 -44
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/__init__.py +3 -1
- js7_client_python-2.0.9/src/js7/model/public/client/common/controller.py +10 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/git_credentials.py +4 -4
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/service/http_service.py +1 -1
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9/src/js7_client_python.egg-info}/PKG-INFO +42 -20
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7_client_python.egg-info/SOURCES.txt +3 -1
- js7_client_python-2.0.9/src/js7_client_python.egg-info/requires.txt +2 -0
- js7_client_python-2.0.1.0/README.md +0 -73
- js7_client_python-2.0.1.0/src/js7/client/feature/agent/manage.py +0 -363
- js7_client_python-2.0.1.0/src/js7/client/feature/daily_plan/manage.py +0 -179
- js7_client_python-2.0.1.0/src/js7/client/feature/workflow/manage.py +0 -54
- js7_client_python-2.0.1.0/src/js7_client_python.egg-info/requires.txt +0 -4
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/LICENSE +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/setup.cfg +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/__init__.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agent/cluster/confirm_node_loss.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agent/cluster/switchover.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agent/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/agents.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/cluster/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/cluster/deploy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/cluster/revoke.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/cluster/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/import.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/deploy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/revoke.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/subagents/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/subagents/disable.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/subagents/enable.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/subagents/reset.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/cluster/subagents/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/deploy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/disable.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/enable.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/revoke.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/inventory/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/agents/reset.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/authentication/auth.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/authentication/joc_cockpit_permissions.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/authentication/login.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/authentication/logout.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/configuration/configuration.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/configuration/save.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/abort.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/abort_and_restart.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/cluster/appoint_nodes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/cluster/confirm_node_loss.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/cluster/switchover.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/components.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/controller.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/register.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/restart.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/terminate.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/test.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/controller/unregister.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/cancel.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/copy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/generate.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/modify.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/orders.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/orders/submit.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/projections/calendar.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/projections/dates.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/projections/recreate.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/daily_plan/submissions/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/account/change_password.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/account/permissions.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/account/rename.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/account/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/accounts/accounts.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/accounts/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/accounts/disable.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/accounts/enable.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/accounts/reset_password.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/blocked_account/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/blocked_accounts/blocked_accounts.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/blocked_accounts/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/folder/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/folder/rename.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/folders/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/folders/folders.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/folders/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/identity_service/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/identity_service/identity_service.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/identity_service/rename.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/identity_service/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/identity_services/identity_services.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/permission/permission.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/permission/rename.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/permissions/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/permissions/permissions.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/permissions/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/role/rename.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/role/role.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/role/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/roles/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/iam/roles/roles.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/changes/changes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/dependencies.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/deployment/deploy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/deployment/import_deploy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/deployment/revoke.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/export/export.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/export/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/import_objects.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/releasables/recall/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/releasables/recall/recall.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/release.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/remove/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/remove/remove.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/add.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/checkout.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/clone.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/commit.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/credentials/add.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/credentials/credentials.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/credentials/remove.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/pull.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/git/push.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/read.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/repository/update.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/revalidate/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/trash/delete/delete.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/trash/delete/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/trash/restore.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/inventory/validate.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/cluster/restart.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/cluster/run.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/cluster/switch_member.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/license.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/proxies/restart.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/version.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/joc/versions.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/add.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/cancel.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/confirm.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/continue.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/history.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/orders.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/remove_when_terminated.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/resume.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/orders/suspend.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/settings/settings.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/settings/store.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/tasks/history.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflow/transition.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflow/workflow.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/resume.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/skip.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/stop.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/suspend.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/unskip.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/unstop.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/http/v_2_8_2/workflows/workflows.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/interface/dispatcher.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/interface/interface.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/api/joc/interface/resolver.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/confirm_node_loss_agent_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/delete_subagent_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/delete_subagent_clusters_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/deploy_cluster_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/deploy_standalone_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/deploy_subagent_clusters_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/disable_standalone_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/disable_subagents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/enable_standalone_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/enable_subagents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/get_agents_status_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/import_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/remove_agent_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/reset_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/reset_subagent_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/revoke_cluster_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/revoke_standalone_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/revoke_subagent_clusters_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/store_cluster_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/store_standalone_agents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/store_subagent_clusters_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/store_subagents_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/agent/switchover_agent_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/appoint_nodes_controller_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/cancel_and_restart_controller_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/cancel_controller_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/confirm_cluster_node_loss_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/get_controller_components_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/get_controller_status_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/restart_controller_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/switchover_controller_cluster_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/terminate_controller_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/controller/unregister_controller_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/cancel_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/copy_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/delete_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/delete_submissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/get_calendar_projections_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/get_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/get_projection_dates_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/modify_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/daily_plan/submit_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/helper/decrypt_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/helper/encrypt_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/block_account_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/change_account_password_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/disable_accounts_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/enable_accounts_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_accounts_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_blocked_accounts_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_folder_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_identity_service_settings_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_identity_services_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/remove_accounts_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/remove_folder_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/remove_identity_service_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/remove_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/remove_roles_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/rename_account_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/rename_folder_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/rename_identity_service_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/rename_permission_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/rename_role_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/reset_account_passwords_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/set_folder_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/set_permissions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/store_account_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/store_identity_service_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/store_identity_service_settings_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/store_role_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/unblock_accounts_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/deploy_configurations_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/export_configurations_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/export_folders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/get_changes_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/git_add_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/git_checkout_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/git_clone_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/git_commit_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/git_pull_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/git_push_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/read_from_local_repository_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/recall_released_configuration_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/release_configuartions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/remove_configurations_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/remove_folder_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/remove_folder_from_trash_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/remove_git_credentials_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/revalidate_folder_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/revoke_configurations_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/store_configuration_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/store_git_credentials_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/store_repository_configuration_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/update_repository_configuration_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/inventory/validate_configuration_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/get_license_info_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/get_settings_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/get_version_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/restart_proxies_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/restart_service_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/store_settings_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/joc/switch_over_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/add_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/confirm_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/continue_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/get_order_history_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/get_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/remove_terminated_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/resume_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/order/suspend_orders_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/task/get_task_history_info_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/get_workflow_versions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/resume_workflows_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/set_workflow_version_as_current_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/skip_job_instructions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/suspend_workflows_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/workflow/unskip_job_instructions_action.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/auth/login.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/auth/logout.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/client.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/context.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/agent/deploy.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/controller/controller.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/daily_plan/daily_plan.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/iam/iam.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/iam/manage.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/joc/joc.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/order/manage.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/order/order.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/task/task.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/feature/workflow/workflow.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/bcpg-jdk15to18-1.78.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/bcpkix-jdk15to18-1.78.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/bcprov-jdk15to18-1.78.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/bcutil-jdk15to18-1.78.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/commons-io-2.15.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/commons-lang3-3.14.0.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/jackson-core-2.14.2.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/jackson-databind-2.14.2.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/jackson-dataformat-xml-2.14.2.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/jakarta.annotation-api-2.1.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/javax.activation-api-1.2.0.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/jaxb-api-2.4.0-b180830.0359.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/org.apache.logging.log4j.log4j-api-2.23.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/org.apache.logging.log4j.log4j-core-2.23.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/org.apache.logging.log4j.log4j-slf4j2-impl-2.23.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/org.slf4j.slf4j-api-2.0.13.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/stax2-api-4.2.1.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/3rd-party/woodstox-core-6.5.0.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/sos/sos-commons-encryption-2.7.3.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/sos/sos-commons-exception-2.7.3.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/sos/sos-commons-sign-2.7.3.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/java/lib/sos/sos-webservices-json-2.7.3.jar +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/configuration/auth_configuration.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/configuration/client_configuration.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/configuration/http_configuration.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/error/http/joc_exceptions.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/private/api/endpoint.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/accounts.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/audit_log.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/changes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/configurations.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/cycle.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/identity_service.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/schedule_time.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/common/store_agents.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/enum/__init__.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/enum/object_types.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/enum/operation_type.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/enum/order_priority.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/__init__.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/daily_plan_order_filters.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/element/__init__.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/element/folder.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/element/workflow_id.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/export_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/export_folders_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/get_order_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/order_history_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/resume_order_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/suspend_order_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/filter/tasks_filter.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/input/__init__.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/model/public/client/input/add_order.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/bytes_converter/bytes_to_archive_bytes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/bytes_converter/bytes_to_file.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/bytes_converter/files_to_bytes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/bytes_converter/read_bytes_archive_files_to_bytes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/bytes_converter/sign_to_bytes.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/check_matching_version.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/detect_archive_type.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/util/str_converter/order_id_to_order_name.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/validator/http/joc_http_status_validator.py +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7_client_python.egg-info/dependency_links.txt +0 -0
- {js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7_client_python.egg-info/top_level.txt +0 -0
{js7_client_python-2.0.1.0/src/js7_client_python.egg-info → js7_client_python-2.0.9}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: js7-client-python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.9
|
|
4
4
|
Summary: Python client for the JS7 JOC REST API
|
|
5
5
|
Author: Marcel Kerth
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -686,18 +686,21 @@ Requires-Python: >=3.8
|
|
|
686
686
|
Description-Content-Type: text/markdown
|
|
687
687
|
License-File: LICENSE
|
|
688
688
|
Requires-Dist: pydantic<3.0.0,>=2.10.6
|
|
689
|
-
Requires-Dist: cryptography
|
|
689
|
+
Requires-Dist: cryptography
|
|
690
690
|
|
|
691
691
|
# JS7 Python Client
|
|
692
692
|
|
|
693
|
+
[](https://pypi.org/project/js7-client-python/)
|
|
694
|
+
[](https://pypi.org/project/js7-client-python/)
|
|
695
|
+
|
|
693
696
|
The JS7 Python Client provides methods for accessing the JS7 JOC REST API.
|
|
694
|
-
|
|
697
|
+
It offers functionality similar to the JS7 Unix CLI: [JS7 Unix CLI](https://github.com/sos-berlin/js7-cli-unix).
|
|
695
698
|
|
|
696
699
|
## Requirements
|
|
697
700
|
|
|
698
701
|
- Python version 3.8 or later
|
|
699
|
-
- A JS7 installation with version 2.6.5
|
|
700
|
-
- A Java JVM version 17 or later for
|
|
702
|
+
- A JS7 installation with version 2.6.5–2.8.3
|
|
703
|
+
- A Java JVM version 17 or later for encryption and decryption functionality
|
|
701
704
|
|
|
702
705
|
## Installation
|
|
703
706
|
|
|
@@ -707,7 +710,9 @@ pip install js7-client-python
|
|
|
707
710
|
|
|
708
711
|
## Quick Start
|
|
709
712
|
|
|
710
|
-
The following example shows how to create a client instance and
|
|
713
|
+
The following example shows how to create a client instance and perform an operation.
|
|
714
|
+
|
|
715
|
+
**Note**: Additional examples showing how the client can be used can be found in the `./example` directory of this repository.
|
|
711
716
|
|
|
712
717
|
### Client Initialization
|
|
713
718
|
|
|
@@ -718,8 +723,8 @@ import js7
|
|
|
718
723
|
|
|
719
724
|
client = js7.Client(
|
|
720
725
|
http_config=js7.model.HTTPConfiguration(
|
|
721
|
-
host="192.168.1.
|
|
722
|
-
port=
|
|
726
|
+
host="192.168.1.14",
|
|
727
|
+
port=4443
|
|
723
728
|
),
|
|
724
729
|
auth_config=js7.model.AuthConfiguration(
|
|
725
730
|
basic_auth=js7.model.BasicAuth(
|
|
@@ -732,32 +737,49 @@ client = js7.Client(
|
|
|
732
737
|
|
|
733
738
|
#### SSL and Certificate-Based Authentication
|
|
734
739
|
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
>
|
|
738
|
-
>If an HTTPS certificate is required for a secure SSL connection, it can be specified in the `http_config`.
|
|
740
|
+
The code snippet above shows authentication using Basic Auth.
|
|
741
|
+
However, the JS7 Python Client also supports certificate-based authentication and client certificates for HTTPS connections.
|
|
739
742
|
|
|
740
|
-
|
|
743
|
+
```python
|
|
744
|
+
client = js7.Client(
|
|
745
|
+
http_config=js7.model.HTTPConfiguration(
|
|
746
|
+
host="192.168.1.14",
|
|
747
|
+
port=4446,
|
|
748
|
+
ssl=True,
|
|
749
|
+
cafile_path="./certificate.crt"
|
|
750
|
+
),
|
|
751
|
+
auth_config=js7.model.AuthConfiguration(
|
|
752
|
+
cert_auth=js7.model.CertAuth(
|
|
753
|
+
certfile_path="./client.crt",
|
|
754
|
+
keyfile_path="./client.key"
|
|
755
|
+
)
|
|
756
|
+
)
|
|
757
|
+
)
|
|
758
|
+
```
|
|
759
|
+
|
|
760
|
+
### Import Inventory Configurations
|
|
741
761
|
|
|
742
|
-
A common use case is
|
|
762
|
+
A common use case is importing inventory configurations into JS7 JOC.
|
|
743
763
|
We use the previously created client instance to import configurations.
|
|
744
764
|
|
|
745
765
|
```python
|
|
746
|
-
client.inventory.manage.import_configurations(
|
|
766
|
+
ok = client.inventory.manage.import_configurations(
|
|
747
767
|
file_path="/path/to/file/or/folder",
|
|
748
768
|
inventory_target_folder="/test-folder"
|
|
749
769
|
)
|
|
770
|
+
|
|
771
|
+
print(f"Operation successful: {ok}")
|
|
750
772
|
```
|
|
751
773
|
|
|
752
774
|
## Namespaces
|
|
753
775
|
|
|
754
|
-
The Client class follows the domains of the JS7 JOC API, but groups its methods into three
|
|
776
|
+
The Client class follows the domains of the JS7 JOC API, but groups its methods into three namespaces:
|
|
755
777
|
|
|
756
|
-
- **Manage**: Used to manage
|
|
757
|
-
- **Operate**: Used to
|
|
758
|
-
- **Deploy**: Used to deploy configurations such as workflows.
|
|
778
|
+
- **Manage**: Used to manage configurations and resources, such as importing, updating, or removing them.
|
|
779
|
+
- **Operate**: Used to control runtime behavior, such as resuming a workflow or canceling an order.
|
|
780
|
+
- **Deploy**: Used to deploy configurations, such as workflows.
|
|
759
781
|
|
|
760
|
-
##
|
|
782
|
+
## Resources
|
|
761
783
|
|
|
762
784
|
- **Docs**: [JS7 Python Client](https://kb.sos-berlin.com/display/JS7/JS7+-+Python+Client)
|
|
763
785
|
- **Issues**: [JOC-2175 - Python Client for JS7 REST API](https://change.sos-berlin.com/browse/JOC-2175)
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# JS7 Python Client
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/js7-client-python/)
|
|
4
|
+
[](https://pypi.org/project/js7-client-python/)
|
|
5
|
+
|
|
6
|
+
The JS7 Python Client provides methods for accessing the JS7 JOC REST API.
|
|
7
|
+
It offers functionality similar to the JS7 Unix CLI: [JS7 Unix CLI](https://github.com/sos-berlin/js7-cli-unix).
|
|
8
|
+
|
|
9
|
+
## Requirements
|
|
10
|
+
|
|
11
|
+
- Python version 3.8 or later
|
|
12
|
+
- A JS7 installation with version 2.6.5–2.8.3
|
|
13
|
+
- A Java JVM version 17 or later for encryption and decryption functionality
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
pip install js7-client-python
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
The following example shows how to create a client instance and perform an operation.
|
|
24
|
+
|
|
25
|
+
**Note**: Additional examples showing how the client can be used can be found in the `./example` directory of this repository.
|
|
26
|
+
|
|
27
|
+
### Client Initialization
|
|
28
|
+
|
|
29
|
+
Client initialization begins with configuring the JOC API endpoint and the user’s credentials.
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
import js7
|
|
33
|
+
|
|
34
|
+
client = js7.Client(
|
|
35
|
+
http_config=js7.model.HTTPConfiguration(
|
|
36
|
+
host="192.168.1.14",
|
|
37
|
+
port=4443
|
|
38
|
+
),
|
|
39
|
+
auth_config=js7.model.AuthConfiguration(
|
|
40
|
+
basic_auth=js7.model.BasicAuth(
|
|
41
|
+
username="root",
|
|
42
|
+
password="changeit"
|
|
43
|
+
)
|
|
44
|
+
)
|
|
45
|
+
)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
#### SSL and Certificate-Based Authentication
|
|
49
|
+
|
|
50
|
+
The code snippet above shows authentication using Basic Auth.
|
|
51
|
+
However, the JS7 Python Client also supports certificate-based authentication and client certificates for HTTPS connections.
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
client = js7.Client(
|
|
55
|
+
http_config=js7.model.HTTPConfiguration(
|
|
56
|
+
host="192.168.1.14",
|
|
57
|
+
port=4446,
|
|
58
|
+
ssl=True,
|
|
59
|
+
cafile_path="./certificate.crt"
|
|
60
|
+
),
|
|
61
|
+
auth_config=js7.model.AuthConfiguration(
|
|
62
|
+
cert_auth=js7.model.CertAuth(
|
|
63
|
+
certfile_path="./client.crt",
|
|
64
|
+
keyfile_path="./client.key"
|
|
65
|
+
)
|
|
66
|
+
)
|
|
67
|
+
)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Import Inventory Configurations
|
|
71
|
+
|
|
72
|
+
A common use case is importing inventory configurations into JS7 JOC.
|
|
73
|
+
We use the previously created client instance to import configurations.
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
ok = client.inventory.manage.import_configurations(
|
|
77
|
+
file_path="/path/to/file/or/folder",
|
|
78
|
+
inventory_target_folder="/test-folder"
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
print(f"Operation successful: {ok}")
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Namespaces
|
|
85
|
+
|
|
86
|
+
The Client class follows the domains of the JS7 JOC API, but groups its methods into three namespaces:
|
|
87
|
+
|
|
88
|
+
- **Manage**: Used to manage configurations and resources, such as importing, updating, or removing them.
|
|
89
|
+
- **Operate**: Used to control runtime behavior, such as resuming a workflow or canceling an order.
|
|
90
|
+
- **Deploy**: Used to deploy configurations, such as workflows.
|
|
91
|
+
|
|
92
|
+
## Resources
|
|
93
|
+
|
|
94
|
+
- **Docs**: [JS7 Python Client](https://kb.sos-berlin.com/display/JS7/JS7+-+Python+Client)
|
|
95
|
+
- **Issues**: [JOC-2175 - Python Client for JS7 REST API](https://change.sos-berlin.com/browse/JOC-2175)
|
|
@@ -9,7 +9,7 @@ authors = [
|
|
|
9
9
|
]
|
|
10
10
|
description = "Python client for the JS7 JOC REST API"
|
|
11
11
|
readme = "README.md"
|
|
12
|
-
version = "2.0.
|
|
12
|
+
version = "2.0.9"
|
|
13
13
|
requires-python = ">=3.8"
|
|
14
14
|
classifiers = [
|
|
15
15
|
"Programming Language :: Python :: 3",
|
|
@@ -18,7 +18,7 @@ classifiers = [
|
|
|
18
18
|
license = { file = "LICENSE" }
|
|
19
19
|
dependencies = [
|
|
20
20
|
"pydantic>=2.10.6,<3.0.0",
|
|
21
|
-
"cryptography
|
|
21
|
+
"cryptography"
|
|
22
22
|
]
|
|
23
23
|
|
|
24
24
|
[project.urls]
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
|
-
from typing import List, Literal,
|
|
2
|
+
from typing import List, Literal, Union
|
|
3
3
|
|
|
4
4
|
from ...context import Context
|
|
5
|
-
from ....model.public.client.common.audit_log import AuditLog
|
|
6
5
|
from ....model.private.api.endpoint import EndpointCall
|
|
7
6
|
from ....model.private.http.joc.joc_v_2_8_2 import (
|
|
8
|
-
AuditParams as AuditParams_V_2_8_2,
|
|
9
7
|
AgentExportFilter as AgentExportFilter_V_2_8_2,
|
|
10
8
|
ExportFile as ExportFile_V_2_8_2,
|
|
11
9
|
ArchiveFormat as ArchiveFormat_V_2_8_2
|
|
@@ -20,8 +18,7 @@ def export_agents_action(
|
|
|
20
18
|
context: Context,
|
|
21
19
|
out_path: Union[Path, str],
|
|
22
20
|
archive_format: Literal["ZIP", "TAR_GZ"],
|
|
23
|
-
agent_ids: List[str]
|
|
24
|
-
audit_log: Optional[AuditLog]
|
|
21
|
+
agent_ids: List[str]
|
|
25
22
|
) -> bool:
|
|
26
23
|
|
|
27
24
|
# Normalize out_path
|
|
@@ -38,8 +35,7 @@ def export_agents_action(
|
|
|
38
35
|
request_data = _build_v_2_8_2_request(
|
|
39
36
|
out_path=out_path,
|
|
40
37
|
archive_format=archive_format,
|
|
41
|
-
agent_ids=agent_ids
|
|
42
|
-
audit_log=audit_log
|
|
38
|
+
agent_ids=agent_ids
|
|
43
39
|
)
|
|
44
40
|
else:
|
|
45
41
|
raise RuntimeError(f"Version {context.version} is not compatible with building the request.")
|
|
@@ -53,7 +49,7 @@ def export_agents_action(
|
|
|
53
49
|
))
|
|
54
50
|
|
|
55
51
|
if isinstance(result, bytes):
|
|
56
|
-
return bytes_to_file(data=result, out_path=
|
|
52
|
+
return bytes_to_file(data=result, out_path=out_path)
|
|
57
53
|
|
|
58
54
|
raise RuntimeError(f"Unexpected response type: {type(result).__name__}")
|
|
59
55
|
|
|
@@ -64,8 +60,7 @@ def _build_v_2_8_2_request(
|
|
|
64
60
|
*,
|
|
65
61
|
out_path: Union[Path, str],
|
|
66
62
|
archive_format: Literal["ZIP", "TAR_GZ"],
|
|
67
|
-
agent_ids: List[str]
|
|
68
|
-
audit_log: Optional[AuditLog]
|
|
63
|
+
agent_ids: List[str]
|
|
69
64
|
) -> AgentExportFilter_V_2_8_2:
|
|
70
65
|
|
|
71
66
|
# Validate: out_path
|
|
@@ -85,17 +80,9 @@ def _build_v_2_8_2_request(
|
|
|
85
80
|
filename=Path(out_path).name,
|
|
86
81
|
format=(ArchiveFormat_V_2_8_2(archive_format)) # Raises ValueError() if invalid.
|
|
87
82
|
)
|
|
88
|
-
|
|
89
|
-
# Build: Audit Log
|
|
90
|
-
res_audit_log = AuditParams_V_2_8_2(
|
|
91
|
-
ticket_link=audit_log.ticket_link,
|
|
92
|
-
comment=audit_log.comment,
|
|
93
|
-
time_spent=audit_log.time_spent
|
|
94
|
-
) if audit_log else None
|
|
95
83
|
|
|
96
84
|
# Result
|
|
97
85
|
return AgentExportFilter_V_2_8_2(
|
|
98
86
|
agent_ids=agent_ids,
|
|
99
|
-
export_file=res_export_file
|
|
100
|
-
audit_log=res_audit_log
|
|
87
|
+
export_file=res_export_file
|
|
101
88
|
)
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
from typing import
|
|
1
|
+
from typing import List, Optional
|
|
2
2
|
|
|
3
3
|
from ...context import Context
|
|
4
4
|
from ....model.public.client.common.audit_log import AuditLog
|
|
5
|
+
from ....model.public.client.common.controller import Controller
|
|
5
6
|
from ....model.private.api.endpoint import EndpointCall
|
|
6
7
|
from ....model.private.http.joc.joc_v_2_8_2 import (
|
|
7
8
|
AuditParams as AuditParams_V_2_8_2,
|
|
@@ -16,22 +17,16 @@ from ....util.check_matching_version import check_matching_version
|
|
|
16
17
|
|
|
17
18
|
def register_controller_action(
|
|
18
19
|
*,
|
|
19
|
-
context: Context,
|
|
20
|
+
context: Context,
|
|
20
21
|
controller_id: Optional[str],
|
|
21
|
-
|
|
22
|
-
cluster_url: Optional[str],
|
|
23
|
-
role: Literal["STANDALONE", "PRIMARY", "BACKUP"],
|
|
24
|
-
title: Optional[str],
|
|
22
|
+
controllers: List[Controller],
|
|
25
23
|
audit_log: Optional[AuditLog]
|
|
26
24
|
) -> bool:
|
|
27
25
|
|
|
28
26
|
if check_matching_version(min="2.6.5", max="2.8.3", check=context.version):
|
|
29
27
|
request_data = _build_v_2_8_2_request(
|
|
30
28
|
controller_id=controller_id,
|
|
31
|
-
|
|
32
|
-
cluster_url=cluster_url,
|
|
33
|
-
role=role,
|
|
34
|
-
title=title,
|
|
29
|
+
controllers=controllers,
|
|
35
30
|
audit_log=audit_log
|
|
36
31
|
)
|
|
37
32
|
else:
|
|
@@ -56,20 +51,16 @@ def register_controller_action(
|
|
|
56
51
|
def _build_v_2_8_2_request(
|
|
57
52
|
*,
|
|
58
53
|
controller_id: Optional[str],
|
|
59
|
-
|
|
60
|
-
cluster_url: Optional[str],
|
|
61
|
-
role: Literal["STANDALONE", "PRIMARY", "BACKUP"],
|
|
62
|
-
title: Optional[str],
|
|
54
|
+
controllers: List[Controller],
|
|
63
55
|
audit_log: Optional[AuditLog]
|
|
64
56
|
) -> RegisterParameters_V_2_8_2:
|
|
65
57
|
|
|
66
|
-
# Validate:
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
raise ValueError(f"Invalid 'role': {role}.")
|
|
58
|
+
# Validate: controllers
|
|
59
|
+
for c in controllers:
|
|
60
|
+
if not c.url:
|
|
61
|
+
raise ValueError("Each controller must define a 'url'.")
|
|
62
|
+
if c.role not in ["STANDALONE", "PRIMARY", "BACKUP"]:
|
|
63
|
+
raise ValueError(f"Invalid controller role '{c.role}'. Expected one of: STANDALONE, PRIMARY, BACKUP.")
|
|
73
64
|
|
|
74
65
|
# Build: Audit Log
|
|
75
66
|
res_audit_log = AuditParams_V_2_8_2(
|
|
@@ -83,11 +74,12 @@ def _build_v_2_8_2_request(
|
|
|
83
74
|
controller_id=controller_id,
|
|
84
75
|
controllers=[
|
|
85
76
|
RegisterParameter_V_2_8_2(
|
|
86
|
-
url=url,
|
|
87
|
-
cluster_url=cluster_url,
|
|
88
|
-
role=ControllerRole_V_2_8_2(role), # Raises ValueError() if invalid.
|
|
89
|
-
title=title,
|
|
77
|
+
url=c.url,
|
|
78
|
+
cluster_url=c.cluster_url,
|
|
79
|
+
role=ControllerRole_V_2_8_2(c.role), # Raises ValueError() if invalid.
|
|
80
|
+
title=c.title,
|
|
90
81
|
)
|
|
82
|
+
for c in controllers
|
|
91
83
|
],
|
|
92
84
|
audit_log=res_audit_log
|
|
93
85
|
)
|
|
@@ -4,7 +4,8 @@ from ...context import Context
|
|
|
4
4
|
from ....model.private.api.endpoint import EndpointCall
|
|
5
5
|
from ....model.private.http.joc.joc_v_2_8_2 import (
|
|
6
6
|
TestConnect as TestConnect_V_2_8_2,
|
|
7
|
-
JobScheduler200 as JobScheduler200_V_2_8_2
|
|
7
|
+
JobScheduler200 as JobScheduler200_V_2_8_2,
|
|
8
|
+
ConnectionStateText as ConnectionStateText_V_2_8_2
|
|
8
9
|
)
|
|
9
10
|
|
|
10
11
|
from ....util.check_matching_version import check_matching_version
|
|
@@ -34,14 +35,14 @@ def test_controller_instance_action(
|
|
|
34
35
|
))
|
|
35
36
|
|
|
36
37
|
if isinstance(result, JobScheduler200_V_2_8_2):
|
|
37
|
-
if
|
|
38
|
+
if (
|
|
38
39
|
result.controller
|
|
39
|
-
and result.controller.connection_state
|
|
40
|
-
and result.controller.connection_state.
|
|
40
|
+
and result.controller.connection_state
|
|
41
|
+
and result.controller.connection_state.text == ConnectionStateText_V_2_8_2.ESTABLISHED
|
|
41
42
|
):
|
|
42
|
-
return
|
|
43
|
-
|
|
44
|
-
return
|
|
43
|
+
return True
|
|
44
|
+
|
|
45
|
+
return False
|
|
45
46
|
|
|
46
47
|
raise RuntimeError(f"Unexpected response type: {type(result).__name__}")
|
|
47
48
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from datetime import date
|
|
1
|
+
from datetime import date
|
|
2
2
|
from typing import List, Optional
|
|
3
3
|
|
|
4
4
|
from ...context import Context
|
|
@@ -97,8 +97,7 @@ def _build_v_2_8_2_request(
|
|
|
97
97
|
return GenerateRequest_V_2_8_2(
|
|
98
98
|
controller_id=controller_id,
|
|
99
99
|
daily_plan_dates=[
|
|
100
|
-
|
|
101
|
-
for d in daily_plan_dates
|
|
100
|
+
d for d in daily_plan_dates
|
|
102
101
|
],
|
|
103
102
|
schedule_paths=PathItem_V_2_8_2(
|
|
104
103
|
folders=[
|
|
@@ -5,8 +5,8 @@ from ....model.public.client.common.audit_log import AuditLog
|
|
|
5
5
|
from ....model.private.api.endpoint import EndpointCall
|
|
6
6
|
from ....model.private.http.joc.joc_v_2_8_2 import (
|
|
7
7
|
AccountFilter as AccountFilter_V_2_8_2,
|
|
8
|
-
Accounts as Accounts_V_2_8_2,
|
|
9
8
|
AuditParams as AuditParams_V_2_8_2,
|
|
9
|
+
ConfigurationPermissions as ConfigurationPermissions_V_2_8_2
|
|
10
10
|
)
|
|
11
11
|
|
|
12
12
|
from ....util.check_matching_version import check_matching_version
|
|
@@ -37,7 +37,7 @@ def get_account_permissions_action(
|
|
|
37
37
|
options=None,
|
|
38
38
|
))
|
|
39
39
|
|
|
40
|
-
if isinstance(result,
|
|
40
|
+
if isinstance(result, ConfigurationPermissions_V_2_8_2):
|
|
41
41
|
return result.model_dump(mode="json")
|
|
42
42
|
|
|
43
43
|
raise RuntimeError(f"Unexpected response type: {type(result).__name__}")
|
{js7_client_python-2.0.1.0 → js7_client_python-2.0.9}/src/js7/client/action/iam/get_roles_action.py
RENAMED
|
@@ -32,10 +32,13 @@ def get_roles_action(
|
|
|
32
32
|
))
|
|
33
33
|
|
|
34
34
|
if isinstance(result, Roles_V_2_8_2):
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
for r in result.roles
|
|
38
|
-
|
|
35
|
+
result_list: List[str] = []
|
|
36
|
+
if result.roles:
|
|
37
|
+
for r in result.roles:
|
|
38
|
+
if not r.role_name:
|
|
39
|
+
continue
|
|
40
|
+
result_list.append(r.role_name)
|
|
41
|
+
return result_list
|
|
39
42
|
|
|
40
43
|
raise RuntimeError(f"Unexpected response type: {type(result).__name__}")
|
|
41
44
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from typing import List, Optional, Set
|
|
1
|
+
from typing import List, Optional, Set, Tuple
|
|
2
2
|
|
|
3
3
|
from ...context import Context
|
|
4
4
|
from ....model.public.client.common.changes import Change, ChangeDependencies, ChangeStatus
|
|
@@ -20,7 +20,7 @@ def get_change_dependencies_action(
|
|
|
20
20
|
*,
|
|
21
21
|
context: Context,
|
|
22
22
|
operation_type: OperationType,
|
|
23
|
-
changes: List[
|
|
23
|
+
changes: List[Tuple[str, ObjectType]],
|
|
24
24
|
filter_paths: Optional[List[str]],
|
|
25
25
|
filter_no_references: bool,
|
|
26
26
|
filter_no_referencing: bool
|
|
@@ -51,22 +51,25 @@ def get_change_dependencies_action(
|
|
|
51
51
|
#---------------------#
|
|
52
52
|
# Build 2.8.2 request #
|
|
53
53
|
#---------------------#
|
|
54
|
-
def _build_v_2_8_2_request(*, operation_type: OperationType, changes: List[
|
|
54
|
+
def _build_v_2_8_2_request(*, operation_type: OperationType, changes: List[Tuple[str, ObjectType]]) -> GetDependenciesRequest_V_2_8_2:
|
|
55
55
|
# Validate: changes
|
|
56
56
|
if not changes:
|
|
57
57
|
raise ValueError("At least one change in 'changes' is required.")
|
|
58
58
|
|
|
59
59
|
# Validate: changes
|
|
60
|
-
for
|
|
61
|
-
if not
|
|
60
|
+
for name, object_type in changes:
|
|
61
|
+
if not name or not object_type:
|
|
62
62
|
raise ValueError("'name' and 'object_type' are required in every change.")
|
|
63
|
-
|
|
63
|
+
|
|
64
|
+
# Validate: Object Types
|
|
65
|
+
if object_type in {"FOLDER", "JOBRESOURCE", "INCLUDESCRIPT", "REPORT", "DEPLOYMENTDESCRIPTOR", "DESCRIPTORFOLDER"}:
|
|
66
|
+
raise ValueError(f"Object type '{object_type.value}' is not supported for dependency resolution.")
|
|
67
|
+
|
|
64
68
|
return GetDependenciesRequest_V_2_8_2(
|
|
65
69
|
operation_type=OperationType_V_2_8_2(operation_type.value), # Raises ValueError() if invalid.
|
|
66
70
|
configurations=[
|
|
67
|
-
RequestItem_V_2_8_2(name=
|
|
68
|
-
for
|
|
69
|
-
if c.name and c.object_type # Process only valid changes
|
|
71
|
+
RequestItem_V_2_8_2(name=name, type=object_type.value)
|
|
72
|
+
for name, object_type in changes
|
|
70
73
|
]
|
|
71
74
|
)
|
|
72
75
|
|
|
@@ -137,7 +140,7 @@ def _build_v_2_8_2_response(
|
|
|
137
140
|
|
|
138
141
|
if skip:
|
|
139
142
|
continue
|
|
140
|
-
|
|
143
|
+
|
|
141
144
|
if in_references or in_referenced_by or in_enforced_references or in_enforced_referenced_by:
|
|
142
145
|
if not config.object_type:
|
|
143
146
|
raise RuntimeError("'object_type' is required in response.")
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
1
3
|
from ...context import Context
|
|
2
4
|
from ....model.public.client.common.git_credentials import GitCredentials
|
|
3
5
|
from ....model.private.api.endpoint import EndpointCall
|
|
@@ -6,7 +8,7 @@ from ....model.private.http.joc.joc_v_2_8_2 import (
|
|
|
6
8
|
)
|
|
7
9
|
|
|
8
10
|
|
|
9
|
-
def get_git_credentials_action(*, context: Context) -> GitCredentials:
|
|
11
|
+
def get_git_credentials_action(*, context: Context) -> List[GitCredentials]:
|
|
10
12
|
# Calls the dispatcher for the matching JOC version
|
|
11
13
|
result = context.joc_api.dispatch(endpoint_id="inventory/repository/git/credentials", call=EndpointCall(
|
|
12
14
|
http_service=context.http_service,
|
|
@@ -16,14 +18,17 @@ def get_git_credentials_action(*, context: Context) -> GitCredentials:
|
|
|
16
18
|
))
|
|
17
19
|
|
|
18
20
|
if isinstance(result, GitCredentials_V_2_8_2):
|
|
19
|
-
return
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
21
|
+
return [
|
|
22
|
+
GitCredentials(
|
|
23
|
+
email=c.email,
|
|
24
|
+
git_account=c.git_account,
|
|
25
|
+
git_server=c.git_server,
|
|
26
|
+
keyfile_path=c.keyfile_path,
|
|
27
|
+
password=c.password,
|
|
28
|
+
personal_access_token=c.personal_access_token,
|
|
29
|
+
username=c.username
|
|
30
|
+
)
|
|
31
|
+
for c in result.credentials
|
|
32
|
+
] if result.credentials else []
|
|
28
33
|
|
|
29
34
|
raise RuntimeError(f"Unexpected response type: {type(result).__name__}")
|
|
@@ -19,7 +19,7 @@ def import_configurations_action(
|
|
|
19
19
|
file_path: Union[Path, str],
|
|
20
20
|
archive_format: Literal["ZIP", "TAR_GZ"],
|
|
21
21
|
overwrite: bool,
|
|
22
|
-
|
|
22
|
+
inventory_target_folder: Optional[str],
|
|
23
23
|
suffix: Optional[str],
|
|
24
24
|
prefix: Optional[str],
|
|
25
25
|
overwrite_tags: bool,
|
|
@@ -31,7 +31,7 @@ def import_configurations_action(
|
|
|
31
31
|
file_path=Path(file_path),
|
|
32
32
|
archive_format=archive_format,
|
|
33
33
|
overwrite=overwrite,
|
|
34
|
-
|
|
34
|
+
inventory_target_folder=inventory_target_folder,
|
|
35
35
|
suffix=suffix,
|
|
36
36
|
prefix=prefix,
|
|
37
37
|
overwrite_tags=overwrite_tags,
|
|
@@ -62,7 +62,7 @@ def _build_v_2_8_2_request(
|
|
|
62
62
|
file_path: Path,
|
|
63
63
|
archive_format: Literal["ZIP", "TAR_GZ"],
|
|
64
64
|
overwrite: bool,
|
|
65
|
-
|
|
65
|
+
inventory_target_folder: Optional[str],
|
|
66
66
|
suffix: Optional[str],
|
|
67
67
|
prefix: Optional[str],
|
|
68
68
|
overwrite_tags: bool,
|
|
@@ -77,6 +77,10 @@ def _build_v_2_8_2_request(
|
|
|
77
77
|
if archive_format not in ("ZIP", "TAR_GZ"):
|
|
78
78
|
raise ValueError("'archive_format' must be 'ZIP' or 'TAR_GZ'.")
|
|
79
79
|
|
|
80
|
+
# Validate: inventory_target_folder
|
|
81
|
+
if inventory_target_folder and not inventory_target_folder.startswith("/"):
|
|
82
|
+
inventory_target_folder = "/" + inventory_target_folder
|
|
83
|
+
|
|
80
84
|
# Build: files_as_bytes
|
|
81
85
|
files_as_bytes = files_to_bytes(
|
|
82
86
|
file_path=file_path,
|
|
@@ -96,7 +100,9 @@ def _build_v_2_8_2_request(
|
|
|
96
100
|
# Skips invalid filenames
|
|
97
101
|
if path.rsplit("/", 1)[-1].startswith((".", "_", "-")):
|
|
98
102
|
continue
|
|
99
|
-
|
|
103
|
+
|
|
104
|
+
path = "/" + path
|
|
105
|
+
|
|
100
106
|
archive_type = detect_archive_type(file)
|
|
101
107
|
|
|
102
108
|
if not archive_type and path.endswith(".json"):
|
|
@@ -110,14 +116,14 @@ def _build_v_2_8_2_request(
|
|
|
110
116
|
if not arch_files:
|
|
111
117
|
continue
|
|
112
118
|
|
|
119
|
+
# Removes the archive name from path
|
|
120
|
+
path = "/".join(path.split("/")[:-1])
|
|
121
|
+
|
|
113
122
|
for arch_path, arch_file in arch_files:
|
|
114
123
|
# Skips invalid filenames
|
|
115
124
|
if arch_path.rsplit("/", 1)[-1].startswith((".", "_", "-")):
|
|
116
125
|
continue
|
|
117
126
|
|
|
118
|
-
# Removes archive suffix
|
|
119
|
-
path = path.split(".")[0]
|
|
120
|
-
|
|
121
127
|
new_path = path + "/" + arch_path
|
|
122
128
|
files.append((new_path, arch_file))
|
|
123
129
|
|
|
@@ -131,12 +137,12 @@ def _build_v_2_8_2_request(
|
|
|
131
137
|
"overwrite_tags": overwrite_tags
|
|
132
138
|
}
|
|
133
139
|
|
|
134
|
-
if
|
|
135
|
-
res_options["target_folder"] =
|
|
140
|
+
if inventory_target_folder:
|
|
141
|
+
res_options["target_folder"] = inventory_target_folder
|
|
136
142
|
|
|
137
143
|
if suffix:
|
|
138
144
|
res_options["suffix"] = suffix
|
|
139
|
-
|
|
145
|
+
|
|
140
146
|
if prefix:
|
|
141
147
|
res_options["prefix"] = prefix
|
|
142
148
|
|