python-gvm 26.4.0__tar.gz → 26.5.0__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.
- {python_gvm-26.4.0 → python_gvm-26.5.0}/PKG-INFO +1 -1
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/__version__.py +1 -1
- python_gvm-26.5.0/gvm/protocols/gmp/_gmpnext.py +680 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/next/__init__.py +7 -1
- python_gvm-26.5.0/gvm/protocols/gmp/requests/next/_agent_groups.py +193 -0
- python_gvm-26.5.0/gvm/protocols/gmp/requests/next/_agents.py +101 -0
- python_gvm-26.5.0/gvm/protocols/gmp/requests/next/_oci_image_targets.py +186 -0
- python_gvm-26.5.0/gvm/protocols/gmp/requests/next/_tasks.py +524 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/pyproject.toml +2 -2
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups/test_clone_agent_group.py +18 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups/test_create_agent_group.py +40 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups/test_delete_agent_group.py +25 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_group.py +18 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_groups.py +43 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups/test_modify_agent_group.py +69 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_installers/__init__.py +3 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agents/__init__.py +3 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agents/test_delete_agents.py +20 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agents/test_get_agents.py +32 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/agents/test_modify_agents.py +41 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/__init__.py +20 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/test_clone_oci_image_target.py +26 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/test_create_oci_image_target.py +54 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/test_delete_oci_image_target.py +29 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_target.py +41 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_targets.py +51 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/oci_image_targets/test_modify_oci_image_target.py +75 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/__init__.py +32 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_clone_task.py +22 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_create_agent_group_task.py +213 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_create_container_task.py +36 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_create_task.py +374 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_delete_task.py +29 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_get_task.py +22 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_get_tasks.py +68 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_modify_task.py +194 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_move_task.py +27 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_resume_task.py +22 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_start_task.py +20 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/tasks/test_stop_task.py +20 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/test_agent_group.py +48 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/test_agents.py +27 -0
- python_gvm-26.5.0/tests/protocols/gmpnext/entities/test_oci_image_targets.py +46 -0
- {python_gvm-26.4.0/tests/protocols/gmpv227 → python_gvm-26.5.0/tests/protocols/gmpnext}/entities/test_tasks.py +9 -2
- python_gvm-26.4.0/gvm/protocols/gmp/_gmpnext.py +0 -80
- {python_gvm-26.4.0 → python_gvm-26.5.0}/LICENSE +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/README.md +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/_enum.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/connections/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/connections/_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/connections/_debug.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/connections/_ssh.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/connections/_tls.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/connections/_unix.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/errors.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/_protocol.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/core/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/core/_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/core/_request.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/core/_response.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/_gmp.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/_gmp224.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/_gmp225.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/_gmp226.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/_gmp227.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/_entity_id.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/next/_agent_installers.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_aggregates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_auth.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_cert_bund_advisories.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_cpes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_cves.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_dfn_cert_advisories.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_entity_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_feed.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_nvts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_severity.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_system_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_user_settings.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v224/_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v225/_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v226/_audit_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v226/_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v226/_report_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v226/_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v226/_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v227/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/gmp/requests/v227/_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_api.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_client.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_health.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_metadata.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_notus.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_openvasd1.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_scans.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/http/openvasd/_vts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/latest.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/next.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/protocols/ospv1.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/py.typed +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/transforms.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/utils.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/gvm/xml.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/connections/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/connections/test_debug_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/connections/test_gvm_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/connections/test_ssh_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/connections/test_tls_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/connections/test_unix_socket_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/core/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/core/test_connection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/core/test_request.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/core/test_response.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/core/test_states.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/core/test_xml_reader.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/test_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_aggregates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_auth.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_cert_bund_advisories.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_cpes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_cves.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_dfn_cert_advisories.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_feed.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_nvts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_system_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_user_settings.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v224/test_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v225/test_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/test_audit_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/test_filter_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/test_report_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/requests/v226/test_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmp/test_context_manager.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/__init__.py +0 -0
- {python_gvm-26.4.0/tests/protocols/gmpnext/entities/agent_installers → python_gvm-26.5.0/tests/protocols/gmpnext/entities/agent_groups}/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer_file.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installers.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_agent_installers.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_audit_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_report_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_alert_condition.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_alert_event.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_alert_method.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_alive_test.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_credential_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_credential_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_entity_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_feed_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_filter_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_help_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_info_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_port_range_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_report_format_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_resource_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_scanner_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_sort_order.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_ticket_status.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpnext/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_modify_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_create_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_get_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_get_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_modify_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_start_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/test_create_filter.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/test_get_filter.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/test_get_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/filters/test_modify_filter.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/test_clone_group.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/test_create_group.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/test_delete_group.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/test_get_group.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/test_get_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/groups/test_modify_group.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/hosts/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/hosts/test_create_host.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/hosts/test_get_host.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/hosts/test_modify_host.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/test_clone_note.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/test_create_note.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/test_delete_note.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/test_get_note.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/test_get_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/operating_systems/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/operating_systems/test_modify_operating_system.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/test_get_override.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_create_policy.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_get_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_get_policy.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_import_policy.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_comment.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_name.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_clone_report_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_delete_report_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_import_report_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_modify_report_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/report_formats/test_verify_report_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/reports/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/reports/test_get_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/reports/test_import_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/results/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/results/test_get_result.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/results/test_get_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/test_clone_role.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/test_create_role.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/test_delete_role.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/test_get_role.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/test_get_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/roles/test_modify_role.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/test_create_schedule.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/schedules/test_modify_schedule.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/test_create_tag.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/test_get_tag.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/test_get_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tags/test_modify_tag.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/test_clone_target.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/test_delete_target.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/test_get_target.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/test_get_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_create_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_get_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_move_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_start_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/test_clone_tls_certificate.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/test_clone_user.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/test_delete_user.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/test_get_user.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/test_get_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/users/test_modify_user.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/aggregates/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/authentication/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/authentication/test_authenticate.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/feed/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/feed/test_get_feed.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/feed/test_get_feeds.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/help/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/help/test_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/system_reports/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/trashcan/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/user_settings/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/user_settings/test_modify_user_setting.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/system/versions/test_get_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_alert_condition.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_alert_event.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_alert_method.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_alive_test.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_credential_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_credential_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_entity_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_feed_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_filter_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_help_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_info_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_port_range_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_report_format_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_resource_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_scanner_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_sort_order.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_ticket_status.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_aggregates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_authentication.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_feed.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_system_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_user_settings.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/test_versions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/versions/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/test_gmp_types.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv225/test_with_statement.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/audit_reports/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/audit_reports/test_delete_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/test_clone_report_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/test_create_report_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/test_delete_report_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/report_configs/test_modify_report_config.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/reports/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/reports/test_get_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/reports/test_import_report.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_audit_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_report_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_targets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_alert_condition.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_alert_event.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_alert_method.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_alive_test.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_credential_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_credential_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_entity_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_feed_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_filter_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_help_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_info_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_port_range_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_report_format_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_resource_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_scanner_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_sort_order.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_ticket_status.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_aggregates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_authentication.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_feed.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_system_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_trashcan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_user_settings.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/test_versions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/versions/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/test_gmp_types.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv226/test_with_statement.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/scanners/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_alerts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_audit_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_audits.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_credentials.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_filters.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_groups.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_hosts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_notes.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_operating_systems.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_overrides.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_permissions.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_policies.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_port_lists.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_report_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_report_formats.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_reports.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_resource_names.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_results.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_roles.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_scan_configs.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_scanners.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_schedules.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_secinfo.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_tags.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_targets.py +0 -0
- {python_gvm-26.4.0/tests/protocols/gmpnext → python_gvm-26.5.0/tests/protocols/gmpv227}/entities/test_tasks.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_tickets.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_users.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_alert_condition.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_alert_event.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_alert_method.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_alive_test.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_credential_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_credential_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_entity_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_feed_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_filter_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_help_format.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_info_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_port_range_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_report_format_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_resource_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_scanner_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_sort_order.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_ticket_status.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/gmpv227/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_client.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_health.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_metadata.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_notus.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_openvasd1.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_scans.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/http/openvasd/test_vts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_start_scan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/test_latest.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/protocols/test_next.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/test_enum.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/test_errors.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/transforms/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_check_port.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/xml/__init__.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/xml/test.file +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/xml/test_parse_xml.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-26.4.0 → python_gvm-26.5.0}/tests/xml/test_xml_command.py +0 -0
|
@@ -0,0 +1,680 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2025 Greenbone AG
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
|
+
|
|
5
|
+
from typing import Mapping, Optional, Sequence
|
|
6
|
+
|
|
7
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
8
|
+
|
|
9
|
+
from ...utils import SupportsStr
|
|
10
|
+
from .._protocol import T
|
|
11
|
+
from ._gmp227 import GMPv227
|
|
12
|
+
from .requests.next import (
|
|
13
|
+
AgentGroups,
|
|
14
|
+
AgentInstallers,
|
|
15
|
+
Agents,
|
|
16
|
+
OCIImageTargets,
|
|
17
|
+
Tasks,
|
|
18
|
+
)
|
|
19
|
+
from .requests.v224 import HostsOrdering
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class GMPNext(GMPv227[T]):
|
|
23
|
+
"""
|
|
24
|
+
A class implementing the "Next" version of Greenbone Management Protocol (GMP)
|
|
25
|
+
containing features that are not part of the stable release yet.
|
|
26
|
+
|
|
27
|
+
These features may change at any time and may not be available in all builds
|
|
28
|
+
of the gvmd back-end.
|
|
29
|
+
|
|
30
|
+
Example:
|
|
31
|
+
|
|
32
|
+
.. code-block:: python
|
|
33
|
+
|
|
34
|
+
from gvm.protocols.gmp.next import GMP
|
|
35
|
+
|
|
36
|
+
with GMP(connection) as gmp:
|
|
37
|
+
resp = gmp.get_tasks()
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
@staticmethod
|
|
41
|
+
def get_protocol_version() -> tuple[int, int]:
|
|
42
|
+
return (22, 8)
|
|
43
|
+
|
|
44
|
+
def get_agent_installers(
|
|
45
|
+
self,
|
|
46
|
+
*,
|
|
47
|
+
filter_string: Optional[str] = None,
|
|
48
|
+
filter_id: Optional[EntityID] = None,
|
|
49
|
+
trash: Optional[bool] = None,
|
|
50
|
+
details: Optional[bool] = None,
|
|
51
|
+
) -> T:
|
|
52
|
+
"""Request a list of agent installers
|
|
53
|
+
|
|
54
|
+
Args:
|
|
55
|
+
filter_string: Filter term to use for the query
|
|
56
|
+
filter_id: UUID of an existing filter to use for the query
|
|
57
|
+
trash: Whether to get the trashcan agent installers instead
|
|
58
|
+
details: Whether to include extra details like tasks using this
|
|
59
|
+
scanner
|
|
60
|
+
"""
|
|
61
|
+
return self._send_request_and_transform_response(
|
|
62
|
+
AgentInstallers.get_agent_installers(
|
|
63
|
+
filter_string=filter_string,
|
|
64
|
+
filter_id=filter_id,
|
|
65
|
+
trash=trash,
|
|
66
|
+
details=details,
|
|
67
|
+
)
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
def get_agent_installer(self, agent_installer_id: EntityID) -> T:
|
|
71
|
+
"""Request a single agent installer
|
|
72
|
+
|
|
73
|
+
Args:
|
|
74
|
+
agent_installer_id: UUID of an existing agent installer
|
|
75
|
+
"""
|
|
76
|
+
return self._send_request_and_transform_response(
|
|
77
|
+
AgentInstallers.get_agent_installer(agent_installer_id)
|
|
78
|
+
)
|
|
79
|
+
|
|
80
|
+
def get_agent_installer_file(self, agent_installer_id: EntityID) -> T:
|
|
81
|
+
"""Request a single agent installer file
|
|
82
|
+
|
|
83
|
+
Args:
|
|
84
|
+
agent_installer_id: UUID of an existing agent installer
|
|
85
|
+
"""
|
|
86
|
+
return self._send_request_and_transform_response(
|
|
87
|
+
AgentInstallers.get_agent_installer_file(agent_installer_id)
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
def get_agents(
|
|
91
|
+
self,
|
|
92
|
+
*,
|
|
93
|
+
filter_string: Optional[str] = None,
|
|
94
|
+
filter_id: Optional[EntityID] = None,
|
|
95
|
+
details: Optional[bool] = None,
|
|
96
|
+
) -> T:
|
|
97
|
+
"""Request a list of agents.
|
|
98
|
+
|
|
99
|
+
Args:
|
|
100
|
+
filter_string: Filter term to use for the query.
|
|
101
|
+
filter_id: UUID of an existing filter to use for the query.
|
|
102
|
+
details: Whether to include detailed agent info.
|
|
103
|
+
"""
|
|
104
|
+
return self._send_request_and_transform_response(
|
|
105
|
+
Agents.get_agents(
|
|
106
|
+
filter_string=filter_string,
|
|
107
|
+
filter_id=filter_id,
|
|
108
|
+
details=details,
|
|
109
|
+
)
|
|
110
|
+
)
|
|
111
|
+
|
|
112
|
+
def modify_agents(
|
|
113
|
+
self,
|
|
114
|
+
agent_ids: list[EntityID],
|
|
115
|
+
*,
|
|
116
|
+
authorized: Optional[bool] = None,
|
|
117
|
+
min_interval: Optional[int] = None,
|
|
118
|
+
heartbeat_interval: Optional[int] = None,
|
|
119
|
+
schedule: Optional[str] = None,
|
|
120
|
+
comment: Optional[str] = None,
|
|
121
|
+
) -> T:
|
|
122
|
+
"""Modify multiple agents
|
|
123
|
+
|
|
124
|
+
Args:
|
|
125
|
+
agent_ids: List of agent UUIDs to modify
|
|
126
|
+
authorized: Whether the agent is authorized
|
|
127
|
+
min_interval: Minimum scan interval
|
|
128
|
+
heartbeat_interval: Interval for sending heartbeats
|
|
129
|
+
schedule: Cron-style schedule for agent
|
|
130
|
+
comment: Comment for the agents
|
|
131
|
+
"""
|
|
132
|
+
return self._send_request_and_transform_response(
|
|
133
|
+
Agents.modify_agents(
|
|
134
|
+
agent_ids=agent_ids,
|
|
135
|
+
authorized=authorized,
|
|
136
|
+
min_interval=min_interval,
|
|
137
|
+
heartbeat_interval=heartbeat_interval,
|
|
138
|
+
schedule=schedule,
|
|
139
|
+
comment=comment,
|
|
140
|
+
)
|
|
141
|
+
)
|
|
142
|
+
|
|
143
|
+
def delete_agents(self, agent_ids: list[EntityID]) -> T:
|
|
144
|
+
"""Delete multiple agents
|
|
145
|
+
|
|
146
|
+
Args:
|
|
147
|
+
agent_ids: List of agent UUIDs to delete
|
|
148
|
+
"""
|
|
149
|
+
return self._send_request_and_transform_response(
|
|
150
|
+
Agents.delete_agents(agent_ids=agent_ids)
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
def get_agent_groups(
|
|
154
|
+
self,
|
|
155
|
+
*,
|
|
156
|
+
filter_string: Optional[str] = None,
|
|
157
|
+
filter_id: Optional[EntityID] = None,
|
|
158
|
+
trash: Optional[bool] = None,
|
|
159
|
+
) -> T:
|
|
160
|
+
"""Request a list of agent groups.
|
|
161
|
+
|
|
162
|
+
Args:
|
|
163
|
+
filter_string: Filter expression to use.
|
|
164
|
+
filter_id: UUID of a predefined filter.
|
|
165
|
+
trash: If True, return trashed agent groups.
|
|
166
|
+
|
|
167
|
+
Returns:
|
|
168
|
+
Request object to fetch agent groups.
|
|
169
|
+
"""
|
|
170
|
+
return self._send_request_and_transform_response(
|
|
171
|
+
AgentGroups.get_agent_groups(
|
|
172
|
+
filter_string=filter_string,
|
|
173
|
+
filter_id=filter_id,
|
|
174
|
+
trash=trash,
|
|
175
|
+
)
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
def get_agent_group(self, agent_group_id: EntityID) -> T:
|
|
179
|
+
"""Request a single agent group by ID.
|
|
180
|
+
|
|
181
|
+
Args:
|
|
182
|
+
agent_group_id: UUID of the agent group.
|
|
183
|
+
|
|
184
|
+
Raises:
|
|
185
|
+
RequiredArgument: If agent_group_id is not provided.
|
|
186
|
+
|
|
187
|
+
Returns:
|
|
188
|
+
Request object to fetch the specific agent group.
|
|
189
|
+
"""
|
|
190
|
+
return self._send_request_and_transform_response(
|
|
191
|
+
AgentGroups.get_agent_group(
|
|
192
|
+
agent_group_id=agent_group_id,
|
|
193
|
+
)
|
|
194
|
+
)
|
|
195
|
+
|
|
196
|
+
def create_agent_group(
|
|
197
|
+
self,
|
|
198
|
+
name: str,
|
|
199
|
+
agent_ids: list[str],
|
|
200
|
+
*,
|
|
201
|
+
comment: Optional[str] = None,
|
|
202
|
+
) -> T:
|
|
203
|
+
"""Create a new agent group.
|
|
204
|
+
|
|
205
|
+
Args:
|
|
206
|
+
name: Name of the new agent group.
|
|
207
|
+
agent_ids: List of agent UUIDs to include in the group (required).
|
|
208
|
+
comment: Optional comment for the group.
|
|
209
|
+
|
|
210
|
+
Raises:
|
|
211
|
+
RequiredArgument: If name or agent_ids is not provided.
|
|
212
|
+
"""
|
|
213
|
+
return self._send_request_and_transform_response(
|
|
214
|
+
AgentGroups.create_agent_group(
|
|
215
|
+
name=name,
|
|
216
|
+
comment=comment,
|
|
217
|
+
agent_ids=agent_ids,
|
|
218
|
+
)
|
|
219
|
+
)
|
|
220
|
+
|
|
221
|
+
def modify_agent_group(
|
|
222
|
+
self,
|
|
223
|
+
agent_group_id: EntityID,
|
|
224
|
+
*,
|
|
225
|
+
name: Optional[str] = None,
|
|
226
|
+
comment: Optional[str] = None,
|
|
227
|
+
agent_ids: Optional[list[str]] = None,
|
|
228
|
+
) -> T:
|
|
229
|
+
"""Modify an existing agent group.
|
|
230
|
+
|
|
231
|
+
Args:
|
|
232
|
+
agent_group_id: UUID of the group to modify.
|
|
233
|
+
name: Optional new name for the group.
|
|
234
|
+
comment: Optional comment for the group.
|
|
235
|
+
agent_ids: Optional list of agent UUIDs to set for the group.
|
|
236
|
+
|
|
237
|
+
Raises:
|
|
238
|
+
RequiredArgument: If agent_group_id is not provided.
|
|
239
|
+
"""
|
|
240
|
+
return self._send_request_and_transform_response(
|
|
241
|
+
AgentGroups.modify_agent_group(
|
|
242
|
+
agent_group_id=agent_group_id,
|
|
243
|
+
name=name,
|
|
244
|
+
comment=comment,
|
|
245
|
+
agent_ids=agent_ids,
|
|
246
|
+
)
|
|
247
|
+
)
|
|
248
|
+
|
|
249
|
+
def delete_agent_group(
|
|
250
|
+
self,
|
|
251
|
+
agent_group_id: EntityID,
|
|
252
|
+
ultimate: bool = False,
|
|
253
|
+
) -> T:
|
|
254
|
+
"""Delete an existing agent group.
|
|
255
|
+
|
|
256
|
+
Args:
|
|
257
|
+
agent_group_id: UUID of the group to delete.
|
|
258
|
+
ultimate: Whether to permanently delete or move to trashcan.
|
|
259
|
+
|
|
260
|
+
Raises:
|
|
261
|
+
RequiredArgument: If agent_group_id is not provided.
|
|
262
|
+
"""
|
|
263
|
+
return self._send_request_and_transform_response(
|
|
264
|
+
AgentGroups.delete_agent_group(
|
|
265
|
+
agent_group_id=agent_group_id,
|
|
266
|
+
ultimate=ultimate,
|
|
267
|
+
)
|
|
268
|
+
)
|
|
269
|
+
|
|
270
|
+
def clone_agent_group(
|
|
271
|
+
self,
|
|
272
|
+
agent_group_id: EntityID,
|
|
273
|
+
) -> T:
|
|
274
|
+
"""Clone an existing agent group
|
|
275
|
+
|
|
276
|
+
Args:
|
|
277
|
+
agent_group_id: UUID of an existing agent group to clone from
|
|
278
|
+
|
|
279
|
+
Returns:
|
|
280
|
+
Request: GMP command to create a new agent group based on a copy
|
|
281
|
+
"""
|
|
282
|
+
return self._send_request_and_transform_response(
|
|
283
|
+
AgentGroups.clone_agent_group(agent_group_id)
|
|
284
|
+
)
|
|
285
|
+
|
|
286
|
+
def create_oci_image_target(
|
|
287
|
+
self,
|
|
288
|
+
name: str,
|
|
289
|
+
image_references: list[str],
|
|
290
|
+
*,
|
|
291
|
+
comment: Optional[str] = None,
|
|
292
|
+
credential_id: Optional[EntityID] = None,
|
|
293
|
+
) -> T:
|
|
294
|
+
"""Create a new OCI image target
|
|
295
|
+
|
|
296
|
+
Args:
|
|
297
|
+
name: Name of the OCI image target
|
|
298
|
+
image_references: List of OCI image URLs to scan
|
|
299
|
+
comment: Comment for the target
|
|
300
|
+
credential_id: UUID of a credential to use on target
|
|
301
|
+
"""
|
|
302
|
+
return self._send_request_and_transform_response(
|
|
303
|
+
OCIImageTargets.create_oci_image_target(
|
|
304
|
+
name=name,
|
|
305
|
+
image_references=image_references,
|
|
306
|
+
comment=comment,
|
|
307
|
+
credential_id=credential_id,
|
|
308
|
+
)
|
|
309
|
+
)
|
|
310
|
+
|
|
311
|
+
def modify_oci_image_target(
|
|
312
|
+
self,
|
|
313
|
+
oci_image_target_id: EntityID,
|
|
314
|
+
*,
|
|
315
|
+
name: Optional[str] = None,
|
|
316
|
+
comment: Optional[str] = None,
|
|
317
|
+
image_references: Optional[list[str]] = None,
|
|
318
|
+
credential_id: Optional[EntityID] = None,
|
|
319
|
+
) -> T:
|
|
320
|
+
"""Modify an existing OCI image target.
|
|
321
|
+
|
|
322
|
+
Args:
|
|
323
|
+
oci_image_target_id: UUID of target to modify.
|
|
324
|
+
comment: Comment on target.
|
|
325
|
+
name: Name of target.
|
|
326
|
+
image_references: List of OCI image URLs to scan.
|
|
327
|
+
credential_id: UUID of credential to use on target.
|
|
328
|
+
"""
|
|
329
|
+
return self._send_request_and_transform_response(
|
|
330
|
+
OCIImageTargets.modify_oci_image_target(
|
|
331
|
+
oci_image_target_id,
|
|
332
|
+
name=name,
|
|
333
|
+
comment=comment,
|
|
334
|
+
image_references=image_references,
|
|
335
|
+
credential_id=credential_id,
|
|
336
|
+
)
|
|
337
|
+
)
|
|
338
|
+
|
|
339
|
+
def clone_oci_image_target(self, oci_image_target_id: EntityID) -> T:
|
|
340
|
+
"""Clone an existing OCI image target.
|
|
341
|
+
|
|
342
|
+
Args:
|
|
343
|
+
oci_image_target_id: UUID of an existing OCI image target to clone.
|
|
344
|
+
"""
|
|
345
|
+
return self._send_request_and_transform_response(
|
|
346
|
+
OCIImageTargets.clone_oci_image_target(oci_image_target_id)
|
|
347
|
+
)
|
|
348
|
+
|
|
349
|
+
def delete_oci_image_target(
|
|
350
|
+
self, oci_image_target_id: EntityID, *, ultimate: Optional[bool] = False
|
|
351
|
+
) -> T:
|
|
352
|
+
"""Delete an existing OCI image target.
|
|
353
|
+
|
|
354
|
+
Args:
|
|
355
|
+
oci_image_target_id: UUID of an existing OCI image target to delete.
|
|
356
|
+
ultimate: Whether to remove entirely or to the trashcan.
|
|
357
|
+
"""
|
|
358
|
+
return self._send_request_and_transform_response(
|
|
359
|
+
OCIImageTargets.delete_oci_image_target(
|
|
360
|
+
oci_image_target_id, ultimate=ultimate
|
|
361
|
+
)
|
|
362
|
+
)
|
|
363
|
+
|
|
364
|
+
def get_oci_image_target(
|
|
365
|
+
self, oci_image_target_id: EntityID, *, tasks: Optional[bool] = None
|
|
366
|
+
) -> T:
|
|
367
|
+
"""Request a single OCI image target.
|
|
368
|
+
|
|
369
|
+
Args:
|
|
370
|
+
oci_image_target_id: UUID of the OCI image target to request.
|
|
371
|
+
tasks: Whether to include list of tasks that use the target
|
|
372
|
+
"""
|
|
373
|
+
return self._send_request_and_transform_response(
|
|
374
|
+
OCIImageTargets.get_oci_image_target(
|
|
375
|
+
oci_image_target_id, tasks=tasks
|
|
376
|
+
)
|
|
377
|
+
)
|
|
378
|
+
|
|
379
|
+
def get_oci_image_targets(
|
|
380
|
+
self,
|
|
381
|
+
*,
|
|
382
|
+
filter_string: Optional[str] = None,
|
|
383
|
+
filter_id: Optional[EntityID] = None,
|
|
384
|
+
trash: Optional[bool] = None,
|
|
385
|
+
tasks: Optional[bool] = None,
|
|
386
|
+
) -> T:
|
|
387
|
+
"""Request a list of OCI image targets.
|
|
388
|
+
|
|
389
|
+
Args:
|
|
390
|
+
filter_string: Filter term to use for the query.
|
|
391
|
+
filter_id: UUID of an existing filter to use for the query.
|
|
392
|
+
trash: Whether to include targets in the trashcan.
|
|
393
|
+
tasks: Whether to include list of tasks that use the target.
|
|
394
|
+
"""
|
|
395
|
+
return self._send_request_and_transform_response(
|
|
396
|
+
OCIImageTargets.get_oci_image_targets(
|
|
397
|
+
filter_string=filter_string,
|
|
398
|
+
filter_id=filter_id,
|
|
399
|
+
trash=trash,
|
|
400
|
+
tasks=tasks,
|
|
401
|
+
)
|
|
402
|
+
)
|
|
403
|
+
|
|
404
|
+
def clone_task(self, task_id: EntityID) -> T:
|
|
405
|
+
"""Clone an existing task
|
|
406
|
+
|
|
407
|
+
Args:
|
|
408
|
+
task_id: UUID of existing task to clone from
|
|
409
|
+
"""
|
|
410
|
+
return self._send_request_and_transform_response(
|
|
411
|
+
Tasks.clone_task(task_id)
|
|
412
|
+
)
|
|
413
|
+
|
|
414
|
+
def create_agent_group_task(
|
|
415
|
+
self,
|
|
416
|
+
name: str,
|
|
417
|
+
agent_group_id: EntityID,
|
|
418
|
+
scanner_id: EntityID,
|
|
419
|
+
*,
|
|
420
|
+
comment: Optional[str] = None,
|
|
421
|
+
alterable: Optional[bool] = None,
|
|
422
|
+
schedule_id: Optional[EntityID] = None,
|
|
423
|
+
alert_ids: Optional[Sequence[EntityID]] = None,
|
|
424
|
+
schedule_periods: Optional[int] = None,
|
|
425
|
+
observers: Optional[Sequence[str]] = None,
|
|
426
|
+
preferences: Optional[Mapping[str, SupportsStr]] = None,
|
|
427
|
+
) -> T:
|
|
428
|
+
"""Create a new scan task using an agent group.
|
|
429
|
+
|
|
430
|
+
Args:
|
|
431
|
+
name: Name of the new task.
|
|
432
|
+
agent_group_id: UUID of the agent group to be scanned.
|
|
433
|
+
scanner_id: UUID of scanner to use for scanning the agents.
|
|
434
|
+
comment: Optional comment for the task.
|
|
435
|
+
alterable: Whether the task should be alterable.
|
|
436
|
+
alert_ids: List of UUIDs for alerts to be applied to the task.
|
|
437
|
+
schedule_id: UUID of a schedule when the task should be run.
|
|
438
|
+
schedule_periods: Limit to number of scheduled runs, 0 for unlimited.
|
|
439
|
+
observers: List of usernames or IDs allowed to observe the task.
|
|
440
|
+
preferences: Scanner preferences as name/value pairs.
|
|
441
|
+
"""
|
|
442
|
+
return self._send_request_and_transform_response(
|
|
443
|
+
Tasks.create_agent_group_task(
|
|
444
|
+
name=name,
|
|
445
|
+
agent_group_id=agent_group_id,
|
|
446
|
+
scanner_id=scanner_id,
|
|
447
|
+
comment=comment,
|
|
448
|
+
alterable=alterable,
|
|
449
|
+
schedule_id=schedule_id,
|
|
450
|
+
alert_ids=alert_ids,
|
|
451
|
+
schedule_periods=schedule_periods,
|
|
452
|
+
observers=observers,
|
|
453
|
+
preferences=preferences,
|
|
454
|
+
)
|
|
455
|
+
)
|
|
456
|
+
|
|
457
|
+
def create_container_task(
|
|
458
|
+
self, name: str, *, comment: Optional[str] = None
|
|
459
|
+
) -> T:
|
|
460
|
+
"""Create a new container task
|
|
461
|
+
|
|
462
|
+
A container task is a "meta" task to import and view reports from other
|
|
463
|
+
systems.
|
|
464
|
+
|
|
465
|
+
Args:
|
|
466
|
+
name: Name of the task
|
|
467
|
+
comment: Comment for the task
|
|
468
|
+
"""
|
|
469
|
+
return self._send_request_and_transform_response(
|
|
470
|
+
Tasks.create_container_task(name=name, comment=comment)
|
|
471
|
+
)
|
|
472
|
+
|
|
473
|
+
def create_task(
|
|
474
|
+
self,
|
|
475
|
+
name: str,
|
|
476
|
+
config_id: EntityID,
|
|
477
|
+
target_id: EntityID,
|
|
478
|
+
scanner_id: EntityID,
|
|
479
|
+
*,
|
|
480
|
+
alterable: Optional[bool] = None,
|
|
481
|
+
hosts_ordering: Optional[HostsOrdering] = None,
|
|
482
|
+
schedule_id: Optional[EntityID] = None,
|
|
483
|
+
alert_ids: Optional[Sequence[EntityID]] = None,
|
|
484
|
+
comment: Optional[str] = None,
|
|
485
|
+
schedule_periods: Optional[int] = None,
|
|
486
|
+
observers: Optional[Sequence[str]] = None,
|
|
487
|
+
preferences: Optional[Mapping[str, SupportsStr]] = None,
|
|
488
|
+
) -> T:
|
|
489
|
+
"""Create a new scan task
|
|
490
|
+
|
|
491
|
+
Args:
|
|
492
|
+
name: Name of the new task
|
|
493
|
+
config_id: UUID of config to use by the task
|
|
494
|
+
target_id: UUID of target to be scanned
|
|
495
|
+
scanner_id: UUID of scanner to use for scanning the target
|
|
496
|
+
comment: Comment for the task
|
|
497
|
+
alterable: Whether the task should be alterable
|
|
498
|
+
alert_ids: List of UUIDs for alerts to be applied to the task
|
|
499
|
+
hosts_ordering: The order hosts are scanned in
|
|
500
|
+
schedule_id: UUID of a schedule when the task should be run.
|
|
501
|
+
schedule_periods: A limit to the number of times the task will be
|
|
502
|
+
scheduled, or 0 for no limit
|
|
503
|
+
observers: List of names or ids of users which should be allowed to
|
|
504
|
+
observe this task
|
|
505
|
+
preferences: Name/Value pairs of scanner preferences.
|
|
506
|
+
"""
|
|
507
|
+
return self._send_request_and_transform_response(
|
|
508
|
+
Tasks.create_task(
|
|
509
|
+
name=name,
|
|
510
|
+
config_id=config_id,
|
|
511
|
+
target_id=target_id,
|
|
512
|
+
scanner_id=scanner_id,
|
|
513
|
+
alterable=alterable,
|
|
514
|
+
hosts_ordering=hosts_ordering,
|
|
515
|
+
schedule_id=schedule_id,
|
|
516
|
+
alert_ids=alert_ids,
|
|
517
|
+
comment=comment,
|
|
518
|
+
schedule_periods=schedule_periods,
|
|
519
|
+
observers=observers,
|
|
520
|
+
preferences=preferences,
|
|
521
|
+
)
|
|
522
|
+
)
|
|
523
|
+
|
|
524
|
+
def delete_task(
|
|
525
|
+
self, task_id: EntityID, *, ultimate: Optional[bool] = False
|
|
526
|
+
) -> T:
|
|
527
|
+
"""Deletes an existing task
|
|
528
|
+
|
|
529
|
+
Args:
|
|
530
|
+
task_id: UUID of the task to be deleted.
|
|
531
|
+
ultimate: Whether to remove entirely, or to the trashcan.
|
|
532
|
+
"""
|
|
533
|
+
return self._send_request_and_transform_response(
|
|
534
|
+
Tasks.delete_task(task_id=task_id, ultimate=ultimate)
|
|
535
|
+
)
|
|
536
|
+
|
|
537
|
+
def get_tasks(
|
|
538
|
+
self,
|
|
539
|
+
*,
|
|
540
|
+
filter_string: Optional[str] = None,
|
|
541
|
+
filter_id: Optional[EntityID] = None,
|
|
542
|
+
trash: Optional[bool] = None,
|
|
543
|
+
details: Optional[bool] = None,
|
|
544
|
+
schedules_only: Optional[bool] = None,
|
|
545
|
+
ignore_pagination: Optional[bool] = None,
|
|
546
|
+
) -> T:
|
|
547
|
+
"""Request a list of tasks
|
|
548
|
+
|
|
549
|
+
Args:
|
|
550
|
+
filter_string: Filter term to use for the query
|
|
551
|
+
filter_id: UUID of an existing filter to use for the query
|
|
552
|
+
trash: Whether to get the trashcan tasks instead
|
|
553
|
+
details: Whether to include full task details
|
|
554
|
+
schedules_only: Whether to only include id, name and schedule
|
|
555
|
+
details
|
|
556
|
+
ignore_pagination: Whether to ignore pagination settings (filter
|
|
557
|
+
terms "first" and "rows"). Default is False.
|
|
558
|
+
"""
|
|
559
|
+
return self._send_request_and_transform_response(
|
|
560
|
+
Tasks.get_tasks(
|
|
561
|
+
filter_string=filter_string,
|
|
562
|
+
filter_id=filter_id,
|
|
563
|
+
trash=trash,
|
|
564
|
+
details=details,
|
|
565
|
+
schedules_only=schedules_only,
|
|
566
|
+
ignore_pagination=ignore_pagination,
|
|
567
|
+
)
|
|
568
|
+
)
|
|
569
|
+
|
|
570
|
+
def get_task(self, task_id: EntityID) -> T:
|
|
571
|
+
"""Request a single task
|
|
572
|
+
|
|
573
|
+
Args:
|
|
574
|
+
task_id: UUID of an existing task
|
|
575
|
+
"""
|
|
576
|
+
return self._send_request_and_transform_response(
|
|
577
|
+
Tasks.get_task(task_id=task_id)
|
|
578
|
+
)
|
|
579
|
+
|
|
580
|
+
def modify_task(
|
|
581
|
+
self,
|
|
582
|
+
task_id: EntityID,
|
|
583
|
+
*,
|
|
584
|
+
name: Optional[str] = None,
|
|
585
|
+
config_id: Optional[EntityID] = None,
|
|
586
|
+
target_id: Optional[EntityID] = None,
|
|
587
|
+
scanner_id: Optional[EntityID] = None,
|
|
588
|
+
agent_group_id: Optional[EntityID] = None,
|
|
589
|
+
alterable: Optional[bool] = None,
|
|
590
|
+
hosts_ordering: Optional[HostsOrdering] = None,
|
|
591
|
+
schedule_id: Optional[EntityID] = None,
|
|
592
|
+
schedule_periods: Optional[int] = None,
|
|
593
|
+
comment: Optional[str] = None,
|
|
594
|
+
alert_ids: Optional[Sequence[EntityID]] = None,
|
|
595
|
+
observers: Optional[Sequence[str]] = None,
|
|
596
|
+
preferences: Optional[Mapping[str, SupportsStr]] = None,
|
|
597
|
+
) -> T:
|
|
598
|
+
"""Modifies an existing task.
|
|
599
|
+
|
|
600
|
+
Args:
|
|
601
|
+
task_id: UUID of task to modify.
|
|
602
|
+
name: The name of the task.
|
|
603
|
+
config_id: UUID of scan config to use by the task
|
|
604
|
+
target_id: UUID of target to be scanned
|
|
605
|
+
scanner_id: UUID of scanner to use for scanning the target
|
|
606
|
+
agent_group_id: UUID of agent group to use for scanning
|
|
607
|
+
comment: The comment on the task.
|
|
608
|
+
alert_ids: List of UUIDs for alerts to be applied to the task
|
|
609
|
+
hosts_ordering: The order hosts are scanned in
|
|
610
|
+
schedule_id: UUID of a schedule when the task should be run.
|
|
611
|
+
schedule_periods: A limit to the number of times the task will be
|
|
612
|
+
scheduled, or 0 for no limit.
|
|
613
|
+
observers: List of names or ids of users which should be allowed to
|
|
614
|
+
observe this task
|
|
615
|
+
preferences: Name/Value pairs of scanner preferences.
|
|
616
|
+
"""
|
|
617
|
+
return self._send_request_and_transform_response(
|
|
618
|
+
Tasks.modify_task(
|
|
619
|
+
task_id=task_id,
|
|
620
|
+
name=name,
|
|
621
|
+
config_id=config_id,
|
|
622
|
+
target_id=target_id,
|
|
623
|
+
scanner_id=scanner_id,
|
|
624
|
+
agent_group_id=agent_group_id,
|
|
625
|
+
alterable=alterable,
|
|
626
|
+
hosts_ordering=hosts_ordering,
|
|
627
|
+
schedule_id=schedule_id,
|
|
628
|
+
alert_ids=alert_ids,
|
|
629
|
+
comment=comment,
|
|
630
|
+
schedule_periods=schedule_periods,
|
|
631
|
+
observers=observers,
|
|
632
|
+
preferences=preferences,
|
|
633
|
+
)
|
|
634
|
+
)
|
|
635
|
+
|
|
636
|
+
def move_task(
|
|
637
|
+
self, task_id: EntityID, *, slave_id: Optional[EntityID] = None
|
|
638
|
+
) -> T:
|
|
639
|
+
"""Move an existing task to another GMP slave scanner or the master
|
|
640
|
+
|
|
641
|
+
Args:
|
|
642
|
+
task_id: UUID of the task to be moved
|
|
643
|
+
slave_id: UUID of the sensor to reassign the task to, empty for master.
|
|
644
|
+
"""
|
|
645
|
+
return self._send_request_and_transform_response(
|
|
646
|
+
Tasks.move_task(
|
|
647
|
+
task_id=task_id,
|
|
648
|
+
slave_id=slave_id,
|
|
649
|
+
)
|
|
650
|
+
)
|
|
651
|
+
|
|
652
|
+
def start_task(self, task_id: EntityID) -> T:
|
|
653
|
+
"""Start an existing task
|
|
654
|
+
|
|
655
|
+
Args:
|
|
656
|
+
task_id: UUID of the task to be started
|
|
657
|
+
"""
|
|
658
|
+
return self._send_request_and_transform_response(
|
|
659
|
+
Tasks.start_task(task_id=task_id)
|
|
660
|
+
)
|
|
661
|
+
|
|
662
|
+
def resume_task(self, task_id: EntityID) -> T:
|
|
663
|
+
"""Resume an existing stopped task
|
|
664
|
+
|
|
665
|
+
Args:
|
|
666
|
+
task_id: UUID of the task to be resumed
|
|
667
|
+
"""
|
|
668
|
+
return self._send_request_and_transform_response(
|
|
669
|
+
Tasks.resume_task(task_id=task_id)
|
|
670
|
+
)
|
|
671
|
+
|
|
672
|
+
def stop_task(self, task_id: EntityID) -> T:
|
|
673
|
+
"""Stop an existing running task
|
|
674
|
+
|
|
675
|
+
Args:
|
|
676
|
+
task_id: UUID of the task to be stopped
|
|
677
|
+
"""
|
|
678
|
+
return self._send_request_and_transform_response(
|
|
679
|
+
Tasks.stop_task(task_id=task_id)
|
|
680
|
+
)
|