python-gvm 27.0.2__tar.gz → 27.1.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-27.0.2 → python_gvm-27.1.0}/PKG-INFO +1 -1
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/__version__.py +1 -1
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/_gmpnext.py +242 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/__init__.py +32 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_applications.py +47 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_closed_cves.py +41 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_cves.py +46 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_errors.py +46 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_hosts.py +46 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_operating_systems.py +47 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_ports.py +46 -0
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_report_tls_certificates.py +47 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/pyproject.toml +1 -1
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_applications/test_get_report_applications.py +59 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_closed_cves/test_get_report_closed_cves.py +41 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_cves/test_get_report_cves.py +55 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_errors/test_get_report_errors.py +55 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_hosts/test_get_report_hosts.py +55 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_operating_systems/test_get_report_operating_systems.py +61 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_ports/test_get_report_ports.py +55 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/report_tls_certificates/test_get_report_tls_certificates.py +61 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_applications.py +15 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_closed_cves.py +15 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_cves.py +13 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_errors.py +13 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_hosts.py +13 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_operating_systems.py +15 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_ports.py +13 -0
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_report_tls_certificates.py +15 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/uv.lock +1 -1
- {python_gvm-27.0.2 → python_gvm-27.1.0}/.gitignore +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/LICENSE +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/README.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/Makefile +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/_static/custom.css +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/_static/greenbone.png +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/_static/logo.svg +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/api.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/connections.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/errors.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/gmp.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/gmpnext.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/gmpv224.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/gmpv225.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/gmpv226.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/gmpv227.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/http.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/main.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/openvasdv1/health.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/openvasdv1/metadata.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/openvasdv1/notus.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/openvasdv1/scans.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/openvasdv1/vts.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/openvasdv1.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/ospv1.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/other.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/protocols.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/api/transforms.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/conf.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/favicon.png +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/index.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/install.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/requirements.txt +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/docs/usage.md +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/_enum.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/connections/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/connections/_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/connections/_debug.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/connections/_ssh.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/connections/_tls.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/connections/_unix.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/errors.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/_protocol.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/core/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/core/_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/core/_request.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/core/_response.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/_gmp.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/_gmp224.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/_gmp225.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/_gmp226.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/_gmp227.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/_entity_id.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_agent_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_agent_installers.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_agents.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_credential_stores.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_integration_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_oci_image_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/next/_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_aggregates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_auth.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_cert_bund_advisories.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_cpes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_cves.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_dfn_cert_advisories.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_entity_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_feed.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_nvts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_severity.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_system_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_user_settings.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v224/_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v225/_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v226/_audit_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v226/_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v226/_report_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v226/_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v226/_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v227/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/gmp/requests/v227/_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_api.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_client.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_health.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_metadata.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_notus.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_openvasd1.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_scans.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/http/openvasd/_vts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/latest.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/next.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/protocols/ospv1.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/py.typed +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/transforms.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/utils.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/gvm/xml.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/connections/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/connections/test_debug_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/connections/test_gvm_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/connections/test_ssh_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/connections/test_tls_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/connections/test_unix_socket_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/core/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/core/test_connection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/core/test_request.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/core/test_response.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/core/test_states.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/core/test_xml_reader.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/test_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_aggregates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_auth.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_cert_bund_advisories.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_cpes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_cves.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_dfn_cert_advisories.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_feed.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_nvts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_system_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_user_settings.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v224/test_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v225/test_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/test_audit_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/test_filter_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/test_report_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/requests/v226/test_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmp/test_context_manager.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/test_clone_agent_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/test_create_agent_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/test_delete_agent_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_groups/test_modify_agent_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_installers/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer_file.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installers.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agents/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agents/test_delete_agents.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agents/test_get_agents.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agents/test_modify_agent_controller_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agents/test_modify_agents.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/agents/test_sync_agents.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credential_stores/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credential_stores/test_get_credential_stores.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credential_stores/test_modify_credential_stores.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credential_stores/test_verify_credential_stores.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credentials/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credentials/test_create_credential_store_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/credentials/test_modify_credential_store_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/integration_configs/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/integration_configs/test_get_integration_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/integration_configs/test_get_integration_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/integration_configs/test_modify_integration_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_clone_oci_image_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_create_oci_image_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_delete_oci_image_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_modify_oci_image_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_create_agent_group_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_create_container_image_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_create_import_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_create_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_get_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_move_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_start_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_agent_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_agent_installers.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_agents.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_audit_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_credential_stores.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_integration_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_oci_image_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_report_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_alert_condition.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_alert_event.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_alert_method.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_alive_test.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_credential_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_credential_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_entity_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_feed_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_filter_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_help_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_info_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_port_range_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_report_format_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_resource_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_scanner_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_sort_order.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_ticket_status.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpnext/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_modify_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_create_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_get_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_get_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_modify_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_start_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/test_create_filter.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/test_get_filter.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/test_get_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/filters/test_modify_filter.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/test_clone_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/test_create_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/test_delete_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/test_get_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/test_get_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/groups/test_modify_group.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/hosts/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/hosts/test_create_host.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/hosts/test_get_host.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/hosts/test_modify_host.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/test_clone_note.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/test_create_note.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/test_delete_note.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/test_get_note.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/test_get_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/operating_systems/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/operating_systems/test_modify_operating_system.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/test_get_override.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_create_policy.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_get_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_get_policy.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_import_policy.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_comment.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_name.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_clone_report_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_delete_report_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_import_report_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_modify_report_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/report_formats/test_verify_report_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/reports/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/reports/test_delete_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/reports/test_get_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/reports/test_get_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/reports/test_import_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/results/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/results/test_get_result.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/results/test_get_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/test_clone_role.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/test_create_role.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/test_delete_role.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/test_get_role.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/test_get_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/roles/test_modify_role.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/test_create_schedule.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/schedules/test_modify_schedule.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/test_create_tag.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/test_get_tag.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/test_get_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tags/test_modify_tag.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/test_clone_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/test_delete_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/test_get_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/test_get_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_create_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_get_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_move_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_start_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/test_clone_tls_certificate.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/test_clone_user.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/test_delete_user.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/test_get_user.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/test_get_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/users/test_modify_user.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/aggregates/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/authentication/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/authentication/test_authenticate.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/feed/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/feed/test_get_feed.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/feed/test_get_feeds.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/help/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/help/test_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/system_reports/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/trashcan/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/user_settings/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/user_settings/test_modify_user_setting.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/system/versions/test_get_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/resourcenames/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_alert_condition.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_alert_event.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_alert_method.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_alive_test.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_credential_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_credential_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_entity_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_feed_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_filter_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_help_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_info_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_port_range_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_report_format_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_resource_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_scanner_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_sort_order.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_ticket_status.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_aggregates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_authentication.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_feed.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_system_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_user_settings.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/test_versions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/versions/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/test_gmp_types.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv225/test_with_statement.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/audit_reports/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/audit_reports/test_delete_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/test_clone_report_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/test_create_report_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/test_delete_report_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/report_configs/test_modify_report_config.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/reports/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/reports/test_delete_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/reports/test_get_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/reports/test_get_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/reports/test_import_report.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/resourcenames/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_audit_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_report_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_alert_condition.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_alert_event.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_alert_method.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_alive_test.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_credential_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_credential_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_entity_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_feed_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_filter_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_help_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_info_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_port_range_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_report_format_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_resource_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_scanner_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_sort_order.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_ticket_status.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_aggregates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_authentication.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_feed.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_system_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_trashcan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_user_settings.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/test_versions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/versions/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/test_gmp_types.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv226/test_with_statement.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/scanners/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_alerts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_audit_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_audits.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_credentials.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_filters.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_groups.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_hosts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_notes.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_operating_systems.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_overrides.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_permissions.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_policies.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_port_lists.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_report_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_report_formats.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_reports.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_resource_names.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_results.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_roles.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_scan_configs.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_scanners.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_schedules.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_secinfo.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_tags.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_targets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_tasks.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_tickets.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_users.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_alert_condition.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_alert_event.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_alert_method.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_alive_test.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_credential_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_credential_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_entity_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_feed_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_filter_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_help_format.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_info_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_port_range_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_report_format_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_resource_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_scanner_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_sort_order.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_ticket_status.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/gmpv227/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_client.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_health.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_metadata.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_notus.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_openvasd1.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_scans.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/http/openvasd/test_vts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_start_scan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/test_latest.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/protocols/test_next.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/test_enum.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/test_errors.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/transforms/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_check_port.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/xml/__init__.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/xml/test.file +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/xml/test_parse_xml.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-27.0.2 → python_gvm-27.1.0}/tests/xml/test_xml_command.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-gvm
|
|
3
|
-
Version: 27.0
|
|
3
|
+
Version: 27.1.0
|
|
4
4
|
Summary: Library to communicate with remote servers over GMP or OSP
|
|
5
5
|
Project-URL: Homepage, https://github.com/greenbone/python-gvm/
|
|
6
6
|
Project-URL: Repository, https://github.com/greenbone/python-gvm/
|
|
@@ -19,6 +19,14 @@ from .requests.next import (
|
|
|
19
19
|
CredentialStores,
|
|
20
20
|
IntegrationConfigs,
|
|
21
21
|
OCIImageTargets,
|
|
22
|
+
ReportApplications,
|
|
23
|
+
ReportClosedCVEs,
|
|
24
|
+
ReportCVEs,
|
|
25
|
+
ReportErrors,
|
|
26
|
+
ReportHosts,
|
|
27
|
+
ReportOperatingSystems,
|
|
28
|
+
ReportPorts,
|
|
29
|
+
ReportTlsCertificates,
|
|
22
30
|
Tasks,
|
|
23
31
|
)
|
|
24
32
|
from .requests.v224 import HostsOrdering
|
|
@@ -992,3 +1000,237 @@ class GMPNext(GMPv227[T]):
|
|
|
992
1000
|
oidc_provider_client_secret=oidc_provider_client_secret,
|
|
993
1001
|
)
|
|
994
1002
|
)
|
|
1003
|
+
|
|
1004
|
+
def get_report_hosts(
|
|
1005
|
+
self,
|
|
1006
|
+
report_id: EntityID,
|
|
1007
|
+
*,
|
|
1008
|
+
filter_string: str | None = None,
|
|
1009
|
+
filter_id: str | None = None,
|
|
1010
|
+
ignore_pagination: bool | None = None,
|
|
1011
|
+
details: bool | None = True,
|
|
1012
|
+
) -> T:
|
|
1013
|
+
"""Request hosts of a single report.
|
|
1014
|
+
|
|
1015
|
+
Args:
|
|
1016
|
+
report_id: UUID of an existing report.
|
|
1017
|
+
filter_string: Filter term to use to filter results in the report
|
|
1018
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1019
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1020
|
+
"rows".
|
|
1021
|
+
details: Request additional report host information details.
|
|
1022
|
+
Defaults to True.
|
|
1023
|
+
"""
|
|
1024
|
+
return self._send_request_and_transform_response(
|
|
1025
|
+
ReportHosts.get_report_hosts(
|
|
1026
|
+
report_id=report_id,
|
|
1027
|
+
filter_string=filter_string,
|
|
1028
|
+
filter_id=filter_id,
|
|
1029
|
+
ignore_pagination=ignore_pagination,
|
|
1030
|
+
details=details,
|
|
1031
|
+
)
|
|
1032
|
+
)
|
|
1033
|
+
|
|
1034
|
+
def get_report_operating_systems(
|
|
1035
|
+
self,
|
|
1036
|
+
report_id: EntityID,
|
|
1037
|
+
*,
|
|
1038
|
+
filter_string: str | None = None,
|
|
1039
|
+
filter_id: str | None = None,
|
|
1040
|
+
ignore_pagination: bool | None = None,
|
|
1041
|
+
details: bool | None = True,
|
|
1042
|
+
) -> T:
|
|
1043
|
+
"""Request operating systems of a single report.
|
|
1044
|
+
|
|
1045
|
+
Args:
|
|
1046
|
+
report_id: UUID of an existing report.
|
|
1047
|
+
filter_string: Filter term to use to filter results in the report
|
|
1048
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1049
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1050
|
+
"rows".
|
|
1051
|
+
details: Request additional report operating system information details.
|
|
1052
|
+
Defaults to True.
|
|
1053
|
+
"""
|
|
1054
|
+
return self._send_request_and_transform_response(
|
|
1055
|
+
ReportOperatingSystems.get_report_operating_systems(
|
|
1056
|
+
report_id=report_id,
|
|
1057
|
+
filter_string=filter_string,
|
|
1058
|
+
filter_id=filter_id,
|
|
1059
|
+
ignore_pagination=ignore_pagination,
|
|
1060
|
+
details=details,
|
|
1061
|
+
)
|
|
1062
|
+
)
|
|
1063
|
+
|
|
1064
|
+
def get_report_ports(
|
|
1065
|
+
self,
|
|
1066
|
+
report_id: EntityID,
|
|
1067
|
+
*,
|
|
1068
|
+
filter_string: str | None = None,
|
|
1069
|
+
filter_id: str | None = None,
|
|
1070
|
+
ignore_pagination: bool | None = None,
|
|
1071
|
+
details: bool | None = True,
|
|
1072
|
+
) -> T:
|
|
1073
|
+
"""Request ports of a single report.
|
|
1074
|
+
|
|
1075
|
+
Args:
|
|
1076
|
+
report_id: UUID of an existing report.
|
|
1077
|
+
filter_string: Filter term to use to filter results in the report
|
|
1078
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1079
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1080
|
+
"rows".
|
|
1081
|
+
details: Request additional report port information details.
|
|
1082
|
+
Defaults to True.
|
|
1083
|
+
"""
|
|
1084
|
+
return self._send_request_and_transform_response(
|
|
1085
|
+
ReportPorts.get_report_ports(
|
|
1086
|
+
report_id=report_id,
|
|
1087
|
+
filter_string=filter_string,
|
|
1088
|
+
filter_id=filter_id,
|
|
1089
|
+
ignore_pagination=ignore_pagination,
|
|
1090
|
+
details=details,
|
|
1091
|
+
)
|
|
1092
|
+
)
|
|
1093
|
+
|
|
1094
|
+
def get_report_tls_certificates(
|
|
1095
|
+
self,
|
|
1096
|
+
report_id: EntityID,
|
|
1097
|
+
*,
|
|
1098
|
+
filter_string: str | None = None,
|
|
1099
|
+
filter_id: str | None = None,
|
|
1100
|
+
ignore_pagination: bool | None = None,
|
|
1101
|
+
details: bool | None = True,
|
|
1102
|
+
) -> T:
|
|
1103
|
+
"""Request TLS certificates of a single report.
|
|
1104
|
+
|
|
1105
|
+
Args:
|
|
1106
|
+
report_id: UUID of an existing report.
|
|
1107
|
+
filter_string: Filter term to use to filter results in the report
|
|
1108
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1109
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1110
|
+
"rows".
|
|
1111
|
+
details: Request additional report TLS certificate information details.
|
|
1112
|
+
Defaults to True.
|
|
1113
|
+
"""
|
|
1114
|
+
return self._send_request_and_transform_response(
|
|
1115
|
+
ReportTlsCertificates.get_report_tls_certificates(
|
|
1116
|
+
report_id=report_id,
|
|
1117
|
+
filter_string=filter_string,
|
|
1118
|
+
filter_id=filter_id,
|
|
1119
|
+
ignore_pagination=ignore_pagination,
|
|
1120
|
+
details=details,
|
|
1121
|
+
)
|
|
1122
|
+
)
|
|
1123
|
+
|
|
1124
|
+
def get_report_applications(
|
|
1125
|
+
self,
|
|
1126
|
+
report_id: EntityID,
|
|
1127
|
+
*,
|
|
1128
|
+
filter_string: str | None = None,
|
|
1129
|
+
filter_id: str | None = None,
|
|
1130
|
+
ignore_pagination: bool | None = None,
|
|
1131
|
+
details: bool | None = True,
|
|
1132
|
+
) -> T:
|
|
1133
|
+
"""Request applications of a single report.
|
|
1134
|
+
|
|
1135
|
+
Args:
|
|
1136
|
+
report_id: UUID of an existing report.
|
|
1137
|
+
filter_string: Filter term to use to filter results in the report
|
|
1138
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1139
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1140
|
+
"rows".
|
|
1141
|
+
details: Request additional report application information details.
|
|
1142
|
+
Defaults to True.
|
|
1143
|
+
"""
|
|
1144
|
+
return self._send_request_and_transform_response(
|
|
1145
|
+
ReportApplications.get_report_applications(
|
|
1146
|
+
report_id=report_id,
|
|
1147
|
+
filter_string=filter_string,
|
|
1148
|
+
filter_id=filter_id,
|
|
1149
|
+
ignore_pagination=ignore_pagination,
|
|
1150
|
+
details=details,
|
|
1151
|
+
)
|
|
1152
|
+
)
|
|
1153
|
+
|
|
1154
|
+
def get_report_cves(
|
|
1155
|
+
self,
|
|
1156
|
+
report_id: EntityID,
|
|
1157
|
+
*,
|
|
1158
|
+
filter_string: str | None = None,
|
|
1159
|
+
filter_id: str | None = None,
|
|
1160
|
+
ignore_pagination: bool | None = None,
|
|
1161
|
+
details: bool | None = True,
|
|
1162
|
+
) -> T:
|
|
1163
|
+
"""Request CVEs of a single report.
|
|
1164
|
+
|
|
1165
|
+
Args:
|
|
1166
|
+
report_id: UUID of an existing report.
|
|
1167
|
+
filter_string: Filter term to use to filter results in the report
|
|
1168
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1169
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1170
|
+
"rows".
|
|
1171
|
+
details: Request additional report CVE information details.
|
|
1172
|
+
Defaults to True.
|
|
1173
|
+
"""
|
|
1174
|
+
return self._send_request_and_transform_response(
|
|
1175
|
+
ReportCVEs.get_report_cves(
|
|
1176
|
+
report_id=report_id,
|
|
1177
|
+
filter_string=filter_string,
|
|
1178
|
+
filter_id=filter_id,
|
|
1179
|
+
ignore_pagination=ignore_pagination,
|
|
1180
|
+
details=details,
|
|
1181
|
+
)
|
|
1182
|
+
)
|
|
1183
|
+
|
|
1184
|
+
def get_report_closed_cves(
|
|
1185
|
+
self,
|
|
1186
|
+
report_id: EntityID,
|
|
1187
|
+
*,
|
|
1188
|
+
ignore_pagination: bool | None = None,
|
|
1189
|
+
details: bool | None = True,
|
|
1190
|
+
) -> T:
|
|
1191
|
+
"""Request closed CVEs of a single report.
|
|
1192
|
+
|
|
1193
|
+
Args:
|
|
1194
|
+
report_id: UUID of an existing report.
|
|
1195
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1196
|
+
"rows".
|
|
1197
|
+
details: Request additional report closed CVE information details.
|
|
1198
|
+
Defaults to True.
|
|
1199
|
+
"""
|
|
1200
|
+
return self._send_request_and_transform_response(
|
|
1201
|
+
ReportClosedCVEs.get_report_closed_cves(
|
|
1202
|
+
report_id=report_id,
|
|
1203
|
+
ignore_pagination=ignore_pagination,
|
|
1204
|
+
details=details,
|
|
1205
|
+
)
|
|
1206
|
+
)
|
|
1207
|
+
|
|
1208
|
+
def get_report_errors(
|
|
1209
|
+
self,
|
|
1210
|
+
report_id: EntityID,
|
|
1211
|
+
*,
|
|
1212
|
+
filter_string: str | None = None,
|
|
1213
|
+
filter_id: str | None = None,
|
|
1214
|
+
ignore_pagination: bool | None = None,
|
|
1215
|
+
details: bool | None = True,
|
|
1216
|
+
) -> T:
|
|
1217
|
+
"""Request errors of a single report.
|
|
1218
|
+
|
|
1219
|
+
Args:
|
|
1220
|
+
report_id: UUID of an existing report.
|
|
1221
|
+
filter_string: Filter term to use to filter results in the report
|
|
1222
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1223
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1224
|
+
"rows".
|
|
1225
|
+
details: Request additional report error information details.
|
|
1226
|
+
Defaults to True.
|
|
1227
|
+
"""
|
|
1228
|
+
return self._send_request_and_transform_response(
|
|
1229
|
+
ReportErrors.get_report_errors(
|
|
1230
|
+
report_id=report_id,
|
|
1231
|
+
filter_string=filter_string,
|
|
1232
|
+
filter_id=filter_id,
|
|
1233
|
+
ignore_pagination=ignore_pagination,
|
|
1234
|
+
details=details,
|
|
1235
|
+
)
|
|
1236
|
+
)
|
|
@@ -14,6 +14,30 @@ from gvm.protocols.gmp.requests.next._integration_configs import (
|
|
|
14
14
|
IntegrationConfigs,
|
|
15
15
|
)
|
|
16
16
|
from gvm.protocols.gmp.requests.next._oci_image_targets import OCIImageTargets
|
|
17
|
+
from gvm.protocols.gmp.requests.next._report_applications import (
|
|
18
|
+
ReportApplications,
|
|
19
|
+
)
|
|
20
|
+
from gvm.protocols.gmp.requests.next._report_closed_cves import (
|
|
21
|
+
ReportClosedCVEs,
|
|
22
|
+
)
|
|
23
|
+
from gvm.protocols.gmp.requests.next._report_cves import (
|
|
24
|
+
ReportCVEs,
|
|
25
|
+
)
|
|
26
|
+
from gvm.protocols.gmp.requests.next._report_errors import (
|
|
27
|
+
ReportErrors,
|
|
28
|
+
)
|
|
29
|
+
from gvm.protocols.gmp.requests.next._report_hosts import (
|
|
30
|
+
ReportHosts,
|
|
31
|
+
)
|
|
32
|
+
from gvm.protocols.gmp.requests.next._report_operating_systems import (
|
|
33
|
+
ReportOperatingSystems,
|
|
34
|
+
)
|
|
35
|
+
from gvm.protocols.gmp.requests.next._report_ports import (
|
|
36
|
+
ReportPorts,
|
|
37
|
+
)
|
|
38
|
+
from gvm.protocols.gmp.requests.next._report_tls_certificates import (
|
|
39
|
+
ReportTlsCertificates,
|
|
40
|
+
)
|
|
17
41
|
from gvm.protocols.gmp.requests.next._tasks import Tasks
|
|
18
42
|
|
|
19
43
|
from .._entity_id import EntityID
|
|
@@ -132,10 +156,18 @@ __all__ = (
|
|
|
132
156
|
"Policies",
|
|
133
157
|
"PortLists",
|
|
134
158
|
"PortRangeType",
|
|
159
|
+
"ReportApplications",
|
|
160
|
+
"ReportCVEs",
|
|
161
|
+
"ReportClosedCVEs",
|
|
135
162
|
"ReportConfigParameter",
|
|
136
163
|
"ReportConfigs",
|
|
164
|
+
"ReportErrors",
|
|
137
165
|
"ReportFormatType",
|
|
138
166
|
"ReportFormats",
|
|
167
|
+
"ReportHosts",
|
|
168
|
+
"ReportOperatingSystems",
|
|
169
|
+
"ReportPorts",
|
|
170
|
+
"ReportTlsCertificates",
|
|
139
171
|
"Reports",
|
|
140
172
|
"ResourceNames",
|
|
141
173
|
"ResourceType",
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportApplications:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_applications(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request applications of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report applications information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_applications")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_applications.__name__,
|
|
35
|
+
argument="report_id",
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
39
|
+
|
|
40
|
+
cmd.add_filter(filter_string, filter_id)
|
|
41
|
+
|
|
42
|
+
if ignore_pagination is not None:
|
|
43
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
44
|
+
|
|
45
|
+
cmd.set_attribute("details", to_bool(details))
|
|
46
|
+
|
|
47
|
+
return cmd
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportClosedCVEs:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_closed_cves(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
ignore_pagination: bool | None = None,
|
|
15
|
+
details: bool | None = True,
|
|
16
|
+
) -> Request:
|
|
17
|
+
"""Request closed CVEs of a single report.
|
|
18
|
+
|
|
19
|
+
Args:
|
|
20
|
+
report_id: UUID of an existing report.
|
|
21
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
22
|
+
"rows".
|
|
23
|
+
details: Request additional report closed CVE information details.
|
|
24
|
+
Defaults to True.
|
|
25
|
+
"""
|
|
26
|
+
cmd = XmlCommand("get_report_closed_cves")
|
|
27
|
+
|
|
28
|
+
if not report_id:
|
|
29
|
+
raise RequiredArgument(
|
|
30
|
+
function=cls.get_report_closed_cves.__name__,
|
|
31
|
+
argument="report_id",
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
35
|
+
|
|
36
|
+
if ignore_pagination is not None:
|
|
37
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
38
|
+
|
|
39
|
+
cmd.set_attribute("details", to_bool(details))
|
|
40
|
+
|
|
41
|
+
return cmd
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportCVEs:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_cves(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request CVEs of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report CVE information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_cves")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_cves.__name__, argument="report_id"
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
38
|
+
|
|
39
|
+
cmd.add_filter(filter_string, filter_id)
|
|
40
|
+
|
|
41
|
+
if ignore_pagination is not None:
|
|
42
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
43
|
+
|
|
44
|
+
cmd.set_attribute("details", to_bool(details))
|
|
45
|
+
|
|
46
|
+
return cmd
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportErrors:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_errors(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request errors of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report error information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_errors")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_errors.__name__, argument="report_id"
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
38
|
+
|
|
39
|
+
cmd.add_filter(filter_string, filter_id)
|
|
40
|
+
|
|
41
|
+
if ignore_pagination is not None:
|
|
42
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
43
|
+
|
|
44
|
+
cmd.set_attribute("details", to_bool(details))
|
|
45
|
+
|
|
46
|
+
return cmd
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportHosts:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_hosts(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request hosts of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report host information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_hosts")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_hosts.__name__, argument="report_id"
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
38
|
+
|
|
39
|
+
cmd.add_filter(filter_string, filter_id)
|
|
40
|
+
|
|
41
|
+
if ignore_pagination is not None:
|
|
42
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
43
|
+
|
|
44
|
+
cmd.set_attribute("details", to_bool(details))
|
|
45
|
+
|
|
46
|
+
return cmd
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportOperatingSystems:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_operating_systems(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request operating systems of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report operating systems information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_operating_systems")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_operating_systems.__name__,
|
|
35
|
+
argument="report_id",
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
39
|
+
|
|
40
|
+
cmd.add_filter(filter_string, filter_id)
|
|
41
|
+
|
|
42
|
+
if ignore_pagination is not None:
|
|
43
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
44
|
+
|
|
45
|
+
cmd.set_attribute("details", to_bool(details))
|
|
46
|
+
|
|
47
|
+
return cmd
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportPorts:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_ports(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request ports of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report port information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_ports")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_ports.__name__, argument="report_id"
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
38
|
+
|
|
39
|
+
cmd.add_filter(filter_string, filter_id)
|
|
40
|
+
|
|
41
|
+
if ignore_pagination is not None:
|
|
42
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
43
|
+
|
|
44
|
+
cmd.set_attribute("details", to_bool(details))
|
|
45
|
+
|
|
46
|
+
return cmd
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
from gvm.errors import RequiredArgument
|
|
2
|
+
from gvm.protocols.core import Request
|
|
3
|
+
from gvm.protocols.gmp.requests import EntityID
|
|
4
|
+
from gvm.utils import to_bool
|
|
5
|
+
from gvm.xml import XmlCommand
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportTlsCertificates:
|
|
9
|
+
@classmethod
|
|
10
|
+
def get_report_tls_certificates(
|
|
11
|
+
cls,
|
|
12
|
+
report_id: EntityID,
|
|
13
|
+
*,
|
|
14
|
+
filter_string: str | None = None,
|
|
15
|
+
filter_id: str | None = None,
|
|
16
|
+
ignore_pagination: bool | None = None,
|
|
17
|
+
details: bool | None = True,
|
|
18
|
+
) -> Request:
|
|
19
|
+
"""Request TLS certificates of a single report.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
report_id: UUID of an existing report.
|
|
23
|
+
filter_string: Filter term to use to filter results in the report
|
|
24
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
25
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
26
|
+
"rows".
|
|
27
|
+
details: Request additional report TLS certificate information details.
|
|
28
|
+
Defaults to True.
|
|
29
|
+
"""
|
|
30
|
+
cmd = XmlCommand("get_report_tls_certificates")
|
|
31
|
+
|
|
32
|
+
if not report_id:
|
|
33
|
+
raise RequiredArgument(
|
|
34
|
+
function=cls.get_report_tls_certificates.__name__,
|
|
35
|
+
argument="report_id",
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
cmd.set_attribute("report_id", str(report_id))
|
|
39
|
+
|
|
40
|
+
cmd.add_filter(filter_string, filter_id)
|
|
41
|
+
|
|
42
|
+
if ignore_pagination is not None:
|
|
43
|
+
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
44
|
+
|
|
45
|
+
cmd.set_attribute("details", to_bool(details))
|
|
46
|
+
|
|
47
|
+
return cmd
|