python-gvm 26.7.1__tar.gz → 26.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_gvm-26.7.1 → python_gvm-26.9.0}/PKG-INFO +1 -1
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/__version__.py +1 -1
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/_gmpnext.py +186 -4
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/next/__init__.py +7 -1
- python_gvm-26.9.0/gvm/protocols/gmp/requests/next/_credential_stores.py +171 -0
- python_gvm-26.9.0/gvm/protocols/gmp/requests/next/_credentials.py +179 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/next/_tasks.py +18 -5
- {python_gvm-26.7.1 → python_gvm-26.9.0}/pyproject.toml +1 -1
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credential_stores/__init__.py +13 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credential_stores/test_get_credential_stores.py +73 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credential_stores/test_modify_credential_stores.py +219 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credential_stores/test_verify_credential_stores.py +22 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credentials/__init__.py +15 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credentials/test_create_credential_store_credential.py +201 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/credentials/test_modify_credential_store_credential.py +100 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/__init__.py +2 -0
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/tasks/test_create_container_task.py +40 -0
- python_gvm-26.7.1/tests/protocols/gmpnext/entities/tasks/test_create_container_task.py → python_gvm-26.9.0/tests/protocols/gmpnext/entities/tasks/test_create_import_task.py +5 -5
- python_gvm-26.9.0/tests/protocols/gmpnext/entities/test_credential_stores.py +27 -0
- {python_gvm-26.7.1/tests/protocols/gmpv227 → python_gvm-26.9.0/tests/protocols/gmpnext}/entities/test_credentials.py +15 -3
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_tasks.py +5 -1
- {python_gvm-26.7.1 → python_gvm-26.9.0}/LICENSE +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/README.md +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/_enum.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/connections/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/connections/_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/connections/_debug.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/connections/_ssh.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/connections/_tls.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/connections/_unix.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/errors.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/_protocol.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/core/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/core/_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/core/_request.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/core/_response.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/_gmp.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/_gmp224.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/_gmp225.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/_gmp226.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/_gmp227.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/_entity_id.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/next/_agent_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/next/_agent_installers.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/next/_agents.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/next/_oci_image_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_aggregates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_auth.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_cert_bund_advisories.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_cpes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_cves.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_dfn_cert_advisories.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_entity_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_feed.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_nvts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_severity.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_system_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_user_settings.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v224/_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v225/_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v226/_audit_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v226/_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v226/_report_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v226/_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v226/_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v227/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/gmp/requests/v227/_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_api.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_client.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_health.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_metadata.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_notus.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_openvasd1.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_scans.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/http/openvasd/_vts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/latest.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/next.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/protocols/ospv1.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/py.typed +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/transforms.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/utils.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/gvm/xml.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/connections/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/connections/test_debug_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/connections/test_gvm_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/connections/test_ssh_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/connections/test_tls_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/connections/test_unix_socket_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/core/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/core/test_connection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/core/test_request.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/core/test_response.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/core/test_states.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/core/test_xml_reader.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/test_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_aggregates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_auth.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_cert_bund_advisories.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_cpes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_cves.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_dfn_cert_advisories.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_feed.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_nvts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_system_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_user_settings.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v224/test_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v225/test_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/test_audit_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/test_filter_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/test_report_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/requests/v226/test_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmp/test_context_manager.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/test_clone_agent_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/test_create_agent_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/test_delete_agent_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_groups/test_modify_agent_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_installers/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer_file.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installers.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agents/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agents/test_delete_agents.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agents/test_get_agents.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agents/test_modify_agent_controller_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/agents/test_modify_agents.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_clone_oci_image_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_create_oci_image_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_delete_oci_image_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_modify_oci_image_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_create_agent_group_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_create_container_image_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_create_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_get_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_move_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_start_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_agent_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_agent_installers.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_agents.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_audit_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_oci_image_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_report_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_alert_condition.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_alert_event.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_alert_method.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_alive_test.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_credential_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_credential_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_entity_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_feed_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_filter_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_help_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_info_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_port_range_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_report_format_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_resource_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_scanner_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_sort_order.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_ticket_status.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpnext/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_modify_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_create_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_get_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_get_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_modify_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_start_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/test_create_filter.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/test_get_filter.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/test_get_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/filters/test_modify_filter.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/test_clone_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/test_create_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/test_delete_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/test_get_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/test_get_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/groups/test_modify_group.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/hosts/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/hosts/test_create_host.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/hosts/test_get_host.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/hosts/test_modify_host.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/test_clone_note.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/test_create_note.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/test_delete_note.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/test_get_note.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/test_get_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/operating_systems/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/operating_systems/test_modify_operating_system.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/test_get_override.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_create_policy.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_get_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_get_policy.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_import_policy.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_comment.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_name.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_clone_report_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_delete_report_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_import_report_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_modify_report_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/report_formats/test_verify_report_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/reports/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/reports/test_get_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/reports/test_import_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/results/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/results/test_get_result.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/results/test_get_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/test_clone_role.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/test_create_role.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/test_delete_role.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/test_get_role.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/test_get_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/roles/test_modify_role.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/test_create_schedule.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/schedules/test_modify_schedule.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/test_create_tag.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/test_get_tag.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/test_get_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tags/test_modify_tag.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/test_clone_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/test_delete_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/test_get_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/test_get_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_create_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_get_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_move_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_start_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/test_clone_tls_certificate.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/test_clone_user.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/test_delete_user.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/test_get_user.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/test_get_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/users/test_modify_user.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/aggregates/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/authentication/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/authentication/test_authenticate.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/feed/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/feed/test_get_feed.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/feed/test_get_feeds.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/help/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/help/test_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/system_reports/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/trashcan/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/user_settings/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/user_settings/test_modify_user_setting.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/system/versions/test_get_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_alert_condition.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_alert_event.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_alert_method.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_alive_test.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_credential_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_credential_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_entity_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_feed_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_filter_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_help_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_info_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_port_range_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_report_format_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_resource_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_scanner_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_sort_order.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_ticket_status.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_aggregates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_authentication.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_feed.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_system_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_user_settings.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/test_versions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/versions/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/test_gmp_types.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv225/test_with_statement.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/audit_reports/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/audit_reports/test_delete_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/test_clone_report_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/test_create_report_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/test_delete_report_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/report_configs/test_modify_report_config.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/reports/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/reports/test_get_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/reports/test_import_report.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_audit_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_audits.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_report_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_alert_condition.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_alert_event.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_alert_method.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_alive_test.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_credential_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_credential_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_entity_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_feed_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_filter_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_help_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_info_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_port_range_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_report_format_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_resource_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_scanner_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_sort_order.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_ticket_status.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_aggregates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_authentication.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_feed.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_system_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_trashcan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_user_settings.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/test_versions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/versions/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/test_gmp_types.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv226/test_with_statement.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/scanners/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_alerts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_audit_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_audits.py +0 -0
- {python_gvm-26.7.1/tests/protocols/gmpnext → python_gvm-26.9.0/tests/protocols/gmpv227}/entities/test_credentials.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_filters.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_groups.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_hosts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_notes.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_operating_systems.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_overrides.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_permissions.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_policies.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_port_lists.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_report_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_report_formats.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_reports.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_resource_names.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_results.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_roles.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_scan_configs.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_scanners.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_schedules.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_secinfo.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_tags.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_targets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_tasks.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_tickets.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_users.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_alert_condition.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_alert_event.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_alert_method.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_alive_test.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_credential_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_credential_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_entity_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_feed_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_filter_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_help_format.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_info_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_port_range_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_report_format_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_resource_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_scanner_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_sort_order.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_ticket_status.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/gmpv227/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_client.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_health.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_metadata.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_notus.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_openvasd1.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_scans.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/http/openvasd/test_vts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_start_scan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/test_latest.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/protocols/test_next.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/test_enum.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/test_errors.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/transforms/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_check_port.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/xml/__init__.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/xml/test.file +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/xml/test_parse_xml.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-26.7.1 → python_gvm-26.9.0}/tests/xml/test_xml_command.py +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
4
|
|
|
5
|
-
from typing import Any, Mapping, Optional, Sequence
|
|
5
|
+
from typing import Any, Mapping, Optional, Sequence, Union
|
|
6
6
|
|
|
7
7
|
from gvm.protocols.gmp.requests import EntityID
|
|
8
8
|
|
|
@@ -13,6 +13,9 @@ from .requests.next import (
|
|
|
13
13
|
AgentGroups,
|
|
14
14
|
AgentInstallers,
|
|
15
15
|
Agents,
|
|
16
|
+
Credentials,
|
|
17
|
+
CredentialStoreCredentialType,
|
|
18
|
+
CredentialStores,
|
|
16
19
|
OCIImageTargets,
|
|
17
20
|
Tasks,
|
|
18
21
|
)
|
|
@@ -297,6 +300,174 @@ class GMPNext(GMPv227[T]):
|
|
|
297
300
|
AgentGroups.clone_agent_group(agent_group_id)
|
|
298
301
|
)
|
|
299
302
|
|
|
303
|
+
def create_credential_store_credential(
|
|
304
|
+
self,
|
|
305
|
+
name: str,
|
|
306
|
+
credential_type: Union[CredentialStoreCredentialType, str],
|
|
307
|
+
*,
|
|
308
|
+
comment: Optional[str] = None,
|
|
309
|
+
credential_store_id: Optional[EntityID] = None,
|
|
310
|
+
vault_id: Optional[str] = None,
|
|
311
|
+
host_identifier: Optional[str] = None,
|
|
312
|
+
) -> T:
|
|
313
|
+
"""Create a new credential store type credential
|
|
314
|
+
|
|
315
|
+
Args:
|
|
316
|
+
name: Name of the credential
|
|
317
|
+
credential_type: Type of the credential
|
|
318
|
+
comment: Optional comment for the credential object
|
|
319
|
+
credential_store_id: Optional credential store id to fetch the credential from
|
|
320
|
+
vault_id: Vault id used to fetch the credential from credential store
|
|
321
|
+
host_identifier: Host identifier used to fetch the credential from credential store
|
|
322
|
+
"""
|
|
323
|
+
return self._send_request_and_transform_response(
|
|
324
|
+
Credentials.create_credential_store_credential(
|
|
325
|
+
name=name,
|
|
326
|
+
credential_type=credential_type,
|
|
327
|
+
comment=comment,
|
|
328
|
+
credential_store_id=credential_store_id,
|
|
329
|
+
vault_id=vault_id,
|
|
330
|
+
host_identifier=host_identifier,
|
|
331
|
+
)
|
|
332
|
+
)
|
|
333
|
+
|
|
334
|
+
def modify_credential_store_credential(
|
|
335
|
+
self,
|
|
336
|
+
credential_id: EntityID,
|
|
337
|
+
*,
|
|
338
|
+
name: Optional[str] = None,
|
|
339
|
+
comment: Optional[str] = None,
|
|
340
|
+
credential_store_id: Optional[EntityID] = None,
|
|
341
|
+
vault_id: Optional[str] = None,
|
|
342
|
+
host_identifier: Optional[str] = None,
|
|
343
|
+
) -> T:
|
|
344
|
+
"""Modify an existing credential stored in a credential store
|
|
345
|
+
|
|
346
|
+
Args:
|
|
347
|
+
credential_id: UUID of the credential to modify
|
|
348
|
+
name: Name of the credential
|
|
349
|
+
comment: Optional comment for the credential object
|
|
350
|
+
credential_store_id: Optional credential store id to fetch the credential from
|
|
351
|
+
vault_id: Vault id used to fetch the credential from credential store
|
|
352
|
+
host_identifier: Host identifier used to fetch the credential from credential store
|
|
353
|
+
"""
|
|
354
|
+
return self._send_request_and_transform_response(
|
|
355
|
+
Credentials.modify_credential_store_credential(
|
|
356
|
+
credential_id=credential_id,
|
|
357
|
+
name=name,
|
|
358
|
+
comment=comment,
|
|
359
|
+
credential_store_id=credential_store_id,
|
|
360
|
+
vault_id=vault_id,
|
|
361
|
+
host_identifier=host_identifier,
|
|
362
|
+
)
|
|
363
|
+
)
|
|
364
|
+
|
|
365
|
+
def get_credential_store(
|
|
366
|
+
self,
|
|
367
|
+
credential_store_id: EntityID,
|
|
368
|
+
*,
|
|
369
|
+
details: Optional[bool] = None,
|
|
370
|
+
) -> T:
|
|
371
|
+
"""Request a credential store
|
|
372
|
+
|
|
373
|
+
Args:
|
|
374
|
+
credential_store_id: ID of credential store to fetch
|
|
375
|
+
details: True to request all details
|
|
376
|
+
"""
|
|
377
|
+
return self._send_request_and_transform_response(
|
|
378
|
+
CredentialStores.get_credential_store(
|
|
379
|
+
credential_store_id=credential_store_id,
|
|
380
|
+
details=details,
|
|
381
|
+
)
|
|
382
|
+
)
|
|
383
|
+
|
|
384
|
+
def get_credential_stores(
|
|
385
|
+
self,
|
|
386
|
+
*,
|
|
387
|
+
filter_string: Optional[str] = None,
|
|
388
|
+
filter_id: Optional[EntityID] = None,
|
|
389
|
+
details: Optional[bool] = None,
|
|
390
|
+
) -> T:
|
|
391
|
+
"""Request a list of credential stores
|
|
392
|
+
|
|
393
|
+
Args:
|
|
394
|
+
filter_string: Filter term to use for the query
|
|
395
|
+
filter_id: UUID of an existing filter to use for the query
|
|
396
|
+
details: True to request all details
|
|
397
|
+
"""
|
|
398
|
+
return self._send_request_and_transform_response(
|
|
399
|
+
CredentialStores.get_credential_stores(
|
|
400
|
+
filter_string=filter_string,
|
|
401
|
+
filter_id=filter_id,
|
|
402
|
+
details=details,
|
|
403
|
+
)
|
|
404
|
+
)
|
|
405
|
+
|
|
406
|
+
def modify_credential_store(
|
|
407
|
+
self,
|
|
408
|
+
credential_store_id: EntityID,
|
|
409
|
+
*,
|
|
410
|
+
active: Optional[bool] = None,
|
|
411
|
+
host: Optional[str] = None,
|
|
412
|
+
port: Optional[int] = None,
|
|
413
|
+
path: Optional[str] = None,
|
|
414
|
+
app_id: Optional[str] = None,
|
|
415
|
+
client_cert: Optional[str] = None,
|
|
416
|
+
client_key: Optional[str] = None,
|
|
417
|
+
client_pkcs12_file: Optional[str] = None,
|
|
418
|
+
passphrase: Optional[str] = None,
|
|
419
|
+
server_ca_cert: Optional[str] = None,
|
|
420
|
+
comment: Optional[str] = None,
|
|
421
|
+
) -> T:
|
|
422
|
+
"""Modify an existing credential store
|
|
423
|
+
|
|
424
|
+
Args:
|
|
425
|
+
credential_store_id: ID of credential store to fetch
|
|
426
|
+
active: Whether the credential store is active
|
|
427
|
+
host: The host to use for reaching the credential store
|
|
428
|
+
port: The port to use for reaching the credential store
|
|
429
|
+
path: The URI path the credential store is using
|
|
430
|
+
app_id: Depends on the credential store used. Usually called the same in the credential store
|
|
431
|
+
client_cert: The client certificate to use for authorization, as a plain string
|
|
432
|
+
client_key: The client key to use for authorization, as a plain string
|
|
433
|
+
client_pkcs12_file: The pkcs12 file contents to use for authorization, as a plain string
|
|
434
|
+
(alternative to using client_cert and client_key)
|
|
435
|
+
passphrase: The passphrase to use to decrypt client_pkcs12_file or client_key file
|
|
436
|
+
server_ca_cert: The server certificate, so the credential store can be trusted
|
|
437
|
+
comment: An optional comment to store alongside the credential store
|
|
438
|
+
"""
|
|
439
|
+
return self._send_request_and_transform_response(
|
|
440
|
+
CredentialStores.modify_credential_store(
|
|
441
|
+
credential_store_id=credential_store_id,
|
|
442
|
+
active=active,
|
|
443
|
+
host=host,
|
|
444
|
+
port=port,
|
|
445
|
+
path=path,
|
|
446
|
+
app_id=app_id,
|
|
447
|
+
client_cert=client_cert,
|
|
448
|
+
client_key=client_key,
|
|
449
|
+
client_pkcs12_file=client_pkcs12_file,
|
|
450
|
+
passphrase=passphrase,
|
|
451
|
+
server_ca_cert=server_ca_cert,
|
|
452
|
+
comment=comment,
|
|
453
|
+
)
|
|
454
|
+
)
|
|
455
|
+
|
|
456
|
+
def verify_credential_store(
|
|
457
|
+
self,
|
|
458
|
+
credential_store_id: EntityID,
|
|
459
|
+
) -> T:
|
|
460
|
+
"""Verify that the connection to an existing credential store works
|
|
461
|
+
|
|
462
|
+
Args:
|
|
463
|
+
credential_store_id: The uuid of the credential store to verify
|
|
464
|
+
"""
|
|
465
|
+
return self._send_request_and_transform_response(
|
|
466
|
+
CredentialStores.verify_credential_store(
|
|
467
|
+
credential_store_id=credential_store_id,
|
|
468
|
+
)
|
|
469
|
+
)
|
|
470
|
+
|
|
300
471
|
def create_oci_image_target(
|
|
301
472
|
self,
|
|
302
473
|
name: str,
|
|
@@ -511,18 +682,29 @@ class GMPNext(GMPv227[T]):
|
|
|
511
682
|
)
|
|
512
683
|
)
|
|
513
684
|
|
|
514
|
-
def
|
|
685
|
+
def create_import_task(
|
|
515
686
|
self, name: str, *, comment: Optional[str] = None
|
|
516
687
|
) -> T:
|
|
517
|
-
"""Create a new
|
|
688
|
+
"""Create a new import task
|
|
518
689
|
|
|
519
|
-
|
|
690
|
+
An import task is a "meta" task to import and view reports from other
|
|
520
691
|
systems.
|
|
521
692
|
|
|
522
693
|
Args:
|
|
523
694
|
name: Name of the task
|
|
524
695
|
comment: Comment for the task
|
|
525
696
|
"""
|
|
697
|
+
return self._send_request_and_transform_response(
|
|
698
|
+
Tasks.create_import_task(name=name, comment=comment)
|
|
699
|
+
)
|
|
700
|
+
|
|
701
|
+
def create_container_task(
|
|
702
|
+
self, name: str, *, comment: Optional[str] = None
|
|
703
|
+
) -> T:
|
|
704
|
+
"""[DEPRECATED] Use create_import_task instead.
|
|
705
|
+
|
|
706
|
+
This method will be removed in a future version.
|
|
707
|
+
"""
|
|
526
708
|
return self._send_request_and_transform_response(
|
|
527
709
|
Tasks.create_container_task(name=name, comment=comment)
|
|
528
710
|
)
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
from gvm.protocols.gmp.requests.next._agent_groups import AgentGroups
|
|
6
6
|
from gvm.protocols.gmp.requests.next._agent_installers import AgentInstallers
|
|
7
7
|
from gvm.protocols.gmp.requests.next._agents import Agents
|
|
8
|
+
from gvm.protocols.gmp.requests.next._credential_stores import CredentialStores
|
|
9
|
+
from gvm.protocols.gmp.requests.next._credentials import (
|
|
10
|
+
Credentials,
|
|
11
|
+
CredentialStoreCredentialType,
|
|
12
|
+
)
|
|
8
13
|
from gvm.protocols.gmp.requests.next._oci_image_targets import OCIImageTargets
|
|
9
14
|
from gvm.protocols.gmp.requests.next._tasks import Tasks
|
|
10
15
|
|
|
@@ -24,7 +29,6 @@ from ..v227 import (
|
|
|
24
29
|
CertBundAdvisories,
|
|
25
30
|
Cpes,
|
|
26
31
|
CredentialFormat,
|
|
27
|
-
Credentials,
|
|
28
32
|
CredentialType,
|
|
29
33
|
Cves,
|
|
30
34
|
DfnCertAdvisories,
|
|
@@ -98,6 +102,8 @@ __all__ = (
|
|
|
98
102
|
"Credentials",
|
|
99
103
|
"CredentialFormat",
|
|
100
104
|
"CredentialType",
|
|
105
|
+
"CredentialStoreCredentialType",
|
|
106
|
+
"CredentialStores",
|
|
101
107
|
"Cves",
|
|
102
108
|
"DfnCertAdvisories",
|
|
103
109
|
"EntityID",
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2025 Greenbone AG
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
|
+
|
|
5
|
+
from base64 import b64encode
|
|
6
|
+
from typing import Optional
|
|
7
|
+
|
|
8
|
+
from gvm.errors import RequiredArgument
|
|
9
|
+
from gvm.protocols.core import Request
|
|
10
|
+
from gvm.utils import to_bool
|
|
11
|
+
from gvm.xml import XmlCommand
|
|
12
|
+
|
|
13
|
+
from .._entity_id import EntityID
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class CredentialStores:
|
|
17
|
+
@classmethod
|
|
18
|
+
def get_credential_store(
|
|
19
|
+
cls,
|
|
20
|
+
credential_store_id: EntityID,
|
|
21
|
+
*,
|
|
22
|
+
details: Optional[bool] = None,
|
|
23
|
+
) -> Request:
|
|
24
|
+
"""Request a credential store
|
|
25
|
+
|
|
26
|
+
Args:
|
|
27
|
+
credential_store_id: ID of credential store to fetch
|
|
28
|
+
details: True to request all details
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
if not credential_store_id:
|
|
32
|
+
raise RequiredArgument(
|
|
33
|
+
function=cls.get_credential_store.__name__,
|
|
34
|
+
argument="credential_store_id",
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
cmd = XmlCommand("get_credential_stores")
|
|
38
|
+
cmd.add_element("credential_store_id", str(credential_store_id))
|
|
39
|
+
|
|
40
|
+
if details is not None:
|
|
41
|
+
cmd.set_attribute("details", to_bool(details))
|
|
42
|
+
|
|
43
|
+
return cmd
|
|
44
|
+
|
|
45
|
+
@classmethod
|
|
46
|
+
def get_credential_stores(
|
|
47
|
+
cls,
|
|
48
|
+
*,
|
|
49
|
+
filter_string: Optional[str] = None,
|
|
50
|
+
filter_id: Optional[EntityID] = None,
|
|
51
|
+
details: Optional[bool] = None,
|
|
52
|
+
) -> Request:
|
|
53
|
+
"""Request a list of credential stores
|
|
54
|
+
|
|
55
|
+
Args:
|
|
56
|
+
filter_string: Filter term to use for the query
|
|
57
|
+
filter_id: UUID of an existing filter to use for the query
|
|
58
|
+
details: True to request all details
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
cmd = XmlCommand("get_credential_stores")
|
|
62
|
+
cmd.add_filter(filter_string, filter_id)
|
|
63
|
+
|
|
64
|
+
if details is not None:
|
|
65
|
+
cmd.set_attribute("details", to_bool(details))
|
|
66
|
+
|
|
67
|
+
return cmd
|
|
68
|
+
|
|
69
|
+
@classmethod
|
|
70
|
+
def modify_credential_store(
|
|
71
|
+
cls,
|
|
72
|
+
credential_store_id: EntityID,
|
|
73
|
+
*,
|
|
74
|
+
active: Optional[bool] = None,
|
|
75
|
+
host: Optional[str] = None,
|
|
76
|
+
port: Optional[int] = None,
|
|
77
|
+
path: Optional[str] = None,
|
|
78
|
+
app_id: Optional[str] = None,
|
|
79
|
+
client_cert: Optional[str] = None,
|
|
80
|
+
client_key: Optional[str] = None,
|
|
81
|
+
client_pkcs12_file: Optional[str] = None,
|
|
82
|
+
passphrase: Optional[str] = None,
|
|
83
|
+
server_ca_cert: Optional[str] = None,
|
|
84
|
+
comment: Optional[str] = None,
|
|
85
|
+
) -> Request:
|
|
86
|
+
"""Modify a credential store
|
|
87
|
+
|
|
88
|
+
Args:
|
|
89
|
+
credential_store_id: ID of credential store to fetch
|
|
90
|
+
active: Whether the credential store is active
|
|
91
|
+
host: The host to use for reaching the credential store
|
|
92
|
+
port: The port to use for reaching the credential store
|
|
93
|
+
path: The URI path the credential store is using
|
|
94
|
+
app_id: Depends on the credential store used. Usually called the same in the credential store
|
|
95
|
+
client_cert: The client certificate to use for authorization, as a plain string
|
|
96
|
+
client_key: The client key to use for authorization, as a plain string
|
|
97
|
+
client_pkcs12_file: The pkcs12 file contents to use for authorization, as a plain string
|
|
98
|
+
(alternative to using client_cert and client_key)
|
|
99
|
+
passphrase: The passphrase to use to decrypt client_pkcs12_file or client_key file
|
|
100
|
+
server_ca_cert: The server certificate, so the credential store can be trusted
|
|
101
|
+
comment: An optional comment to store alongside the credential store
|
|
102
|
+
"""
|
|
103
|
+
|
|
104
|
+
if not credential_store_id:
|
|
105
|
+
raise RequiredArgument(
|
|
106
|
+
function=cls.verify_credential_store.__name__,
|
|
107
|
+
argument="credential_store_id",
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
cmd = XmlCommand("modify_credential_store")
|
|
111
|
+
cmd.set_attribute("credential_store_id", str(credential_store_id))
|
|
112
|
+
|
|
113
|
+
if active is not None:
|
|
114
|
+
cmd.add_element("active", to_bool(active))
|
|
115
|
+
if host:
|
|
116
|
+
cmd.add_element("host", host)
|
|
117
|
+
if port:
|
|
118
|
+
cmd.add_element("port", str(port))
|
|
119
|
+
if path:
|
|
120
|
+
cmd.add_element("path", path)
|
|
121
|
+
if comment:
|
|
122
|
+
cmd.add_element("comment", comment)
|
|
123
|
+
|
|
124
|
+
preferences = cmd.add_element("preferences")
|
|
125
|
+
|
|
126
|
+
if app_id:
|
|
127
|
+
preferences.add_element("app_id", app_id)
|
|
128
|
+
if client_cert:
|
|
129
|
+
preferences.add_element(
|
|
130
|
+
"client_cert",
|
|
131
|
+
b64encode(client_cert.encode("ascii")).decode("ascii"),
|
|
132
|
+
)
|
|
133
|
+
if client_key:
|
|
134
|
+
preferences.add_element(
|
|
135
|
+
"client_key",
|
|
136
|
+
b64encode(client_key.encode("ascii")).decode("ascii"),
|
|
137
|
+
)
|
|
138
|
+
if client_pkcs12_file:
|
|
139
|
+
preferences.add_element(
|
|
140
|
+
"client_pkcs12_file",
|
|
141
|
+
b64encode(client_pkcs12_file.encode("ascii")).decode("ascii"),
|
|
142
|
+
)
|
|
143
|
+
if passphrase:
|
|
144
|
+
preferences.add_element("passphrase", passphrase)
|
|
145
|
+
if server_ca_cert:
|
|
146
|
+
preferences.add_element(
|
|
147
|
+
"server_ca_cert",
|
|
148
|
+
b64encode(server_ca_cert.encode("ascii")).decode("ascii"),
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
return cmd
|
|
152
|
+
|
|
153
|
+
@classmethod
|
|
154
|
+
def verify_credential_store(
|
|
155
|
+
cls,
|
|
156
|
+
credential_store_id: EntityID,
|
|
157
|
+
) -> Request:
|
|
158
|
+
"""Verify that the connection to a credential store works
|
|
159
|
+
|
|
160
|
+
Args:
|
|
161
|
+
credential_store_id: The uuid of the credential store to verify
|
|
162
|
+
"""
|
|
163
|
+
if not credential_store_id:
|
|
164
|
+
raise RequiredArgument(
|
|
165
|
+
function=cls.verify_credential_store.__name__,
|
|
166
|
+
argument="credential_store_id",
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
cmd = XmlCommand("verify_credential_store")
|
|
170
|
+
cmd.set_attribute("credential_store_id", str(credential_store_id))
|
|
171
|
+
return cmd
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2025 Greenbone AG
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
|
+
|
|
5
|
+
from typing import Optional, Union
|
|
6
|
+
|
|
7
|
+
from gvm._enum import Enum
|
|
8
|
+
from gvm.errors import InvalidArgument, RequiredArgument
|
|
9
|
+
from gvm.protocols.core import Request
|
|
10
|
+
from gvm.xml import XmlCommand
|
|
11
|
+
|
|
12
|
+
from .._entity_id import EntityID
|
|
13
|
+
from ..v224._credentials import (
|
|
14
|
+
Credentials as CredentialsV224,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CredentialStoreCredentialType(Enum):
|
|
19
|
+
"""Enum for credential store credential types"""
|
|
20
|
+
|
|
21
|
+
CLIENT_CERTIFICATE = "cs_cc"
|
|
22
|
+
SNMP = "cs_snmp"
|
|
23
|
+
USERNAME_PASSWORD = "cs_up"
|
|
24
|
+
USERNAME_SSH_KEY = "cs_usk"
|
|
25
|
+
SMIME_CERTIFICATE = "cs_smime"
|
|
26
|
+
PGP_ENCRYPTION_KEY = "cs_pgp"
|
|
27
|
+
PASSWORD_ONLY = "cs_pw"
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class Credentials(CredentialsV224):
|
|
31
|
+
@classmethod
|
|
32
|
+
def create_credential_store_credential(
|
|
33
|
+
cls,
|
|
34
|
+
name: str,
|
|
35
|
+
credential_type: Union[CredentialStoreCredentialType, str],
|
|
36
|
+
*,
|
|
37
|
+
comment: Optional[str] = None,
|
|
38
|
+
credential_store_id: Optional[EntityID] = None,
|
|
39
|
+
vault_id: Optional[str] = None,
|
|
40
|
+
host_identifier: Optional[str] = None,
|
|
41
|
+
) -> Request:
|
|
42
|
+
"""Create a new credential that is fetched from a credential store
|
|
43
|
+
|
|
44
|
+
Create a new credential e.g. to be used in the method of an alert.
|
|
45
|
+
|
|
46
|
+
Currently the following credential types are supported:
|
|
47
|
+
|
|
48
|
+
- Username + Password
|
|
49
|
+
- Username + SSH-Key
|
|
50
|
+
- Client Certificates
|
|
51
|
+
- SNMPv1 or SNMPv2c protocol
|
|
52
|
+
- S/MIME Certificate
|
|
53
|
+
- OpenPGP Key
|
|
54
|
+
- Password only
|
|
55
|
+
|
|
56
|
+
Arguments:
|
|
57
|
+
name: Name of the new credential
|
|
58
|
+
credential_type: The credential type.
|
|
59
|
+
comment: Comment for the credential
|
|
60
|
+
credential_store_id: Optional id of the credential store to use
|
|
61
|
+
(gvmd will pick default one if none is provided)
|
|
62
|
+
vault_id: Vault-ID used to access the secret in credential store
|
|
63
|
+
host_identifier: Host-Identifier used to access the secret in credential store
|
|
64
|
+
|
|
65
|
+
Examples:
|
|
66
|
+
Creating a Password-Only credential stored in a Credential Store
|
|
67
|
+
|
|
68
|
+
.. code-block:: python
|
|
69
|
+
|
|
70
|
+
request = Credentials.create_credential(
|
|
71
|
+
name='Credential-Store Password-Only Credential',
|
|
72
|
+
credential_type=CredentialType.CREDENTIAL_STOREPASSWORD_ONLY,
|
|
73
|
+
vault_id='a5f84dd4-da18-447c-a9fb-b77b5df49076',
|
|
74
|
+
host_identifier='/My/Secret',
|
|
75
|
+
)
|
|
76
|
+
"""
|
|
77
|
+
if not name:
|
|
78
|
+
raise RequiredArgument(
|
|
79
|
+
function=cls.create_credential.__name__, argument="name"
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
if not credential_type:
|
|
83
|
+
raise RequiredArgument(
|
|
84
|
+
function=cls.create_credential.__name__,
|
|
85
|
+
argument="credential_type",
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
if not isinstance(credential_type, CredentialStoreCredentialType):
|
|
89
|
+
credential_type = CredentialStoreCredentialType(credential_type)
|
|
90
|
+
|
|
91
|
+
cmd = XmlCommand("create_credential")
|
|
92
|
+
cmd.add_element("name", name)
|
|
93
|
+
|
|
94
|
+
cmd.add_element("type", credential_type.value)
|
|
95
|
+
|
|
96
|
+
if comment:
|
|
97
|
+
cmd.add_element("comment", comment)
|
|
98
|
+
|
|
99
|
+
if (
|
|
100
|
+
credential_type != CredentialStoreCredentialType.CLIENT_CERTIFICATE
|
|
101
|
+
and credential_type != CredentialStoreCredentialType.SNMP
|
|
102
|
+
and credential_type
|
|
103
|
+
!= CredentialStoreCredentialType.USERNAME_PASSWORD
|
|
104
|
+
and credential_type
|
|
105
|
+
!= CredentialStoreCredentialType.USERNAME_SSH_KEY
|
|
106
|
+
and credential_type
|
|
107
|
+
!= CredentialStoreCredentialType.SMIME_CERTIFICATE
|
|
108
|
+
and credential_type
|
|
109
|
+
!= CredentialStoreCredentialType.PGP_ENCRYPTION_KEY
|
|
110
|
+
and credential_type != CredentialStoreCredentialType.PASSWORD_ONLY
|
|
111
|
+
):
|
|
112
|
+
raise InvalidArgument(
|
|
113
|
+
function=cls.create_credential.__name__,
|
|
114
|
+
argument="credential_type",
|
|
115
|
+
)
|
|
116
|
+
|
|
117
|
+
if not vault_id:
|
|
118
|
+
raise RequiredArgument(
|
|
119
|
+
function=cls.create_credential.__name__,
|
|
120
|
+
argument="vault_id",
|
|
121
|
+
)
|
|
122
|
+
if not host_identifier:
|
|
123
|
+
raise RequiredArgument(
|
|
124
|
+
function=cls.create_credential.__name__,
|
|
125
|
+
argument="host_identifier",
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
if credential_store_id:
|
|
129
|
+
cmd.add_element("credential_store_id", str(credential_store_id))
|
|
130
|
+
|
|
131
|
+
cmd.add_element("vault_id", vault_id)
|
|
132
|
+
cmd.add_element("host_identifier", host_identifier)
|
|
133
|
+
|
|
134
|
+
return cmd
|
|
135
|
+
|
|
136
|
+
@classmethod
|
|
137
|
+
def modify_credential_store_credential(
|
|
138
|
+
cls,
|
|
139
|
+
credential_id: EntityID,
|
|
140
|
+
*,
|
|
141
|
+
name: Optional[str] = None,
|
|
142
|
+
comment: Optional[str] = None,
|
|
143
|
+
credential_store_id: Optional[EntityID] = None,
|
|
144
|
+
vault_id: Optional[str] = None,
|
|
145
|
+
host_identifier: Optional[str] = None,
|
|
146
|
+
) -> Request:
|
|
147
|
+
"""Modifies an existing credential.
|
|
148
|
+
|
|
149
|
+
Arguments:
|
|
150
|
+
credential_id: UUID of the credential
|
|
151
|
+
name: Name of the credential
|
|
152
|
+
comment: Comment for the credential
|
|
153
|
+
credential_store_id: Optional id of the credential store to use
|
|
154
|
+
(gvmd will pick default one if none is provided)
|
|
155
|
+
vault_id: Vault-ID used to access the secret in credential store
|
|
156
|
+
host_identifier: Host-Identifier used to access the secret in credential store
|
|
157
|
+
"""
|
|
158
|
+
if not credential_id:
|
|
159
|
+
raise RequiredArgument(
|
|
160
|
+
function=cls.modify_credential.__name__,
|
|
161
|
+
argument="credential_id",
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
cmd = XmlCommand("modify_credential")
|
|
165
|
+
cmd.set_attribute("credential_id", str(credential_id))
|
|
166
|
+
|
|
167
|
+
if name:
|
|
168
|
+
cmd.add_element("name", name)
|
|
169
|
+
if comment:
|
|
170
|
+
cmd.add_element("comment", comment)
|
|
171
|
+
|
|
172
|
+
if credential_store_id:
|
|
173
|
+
cmd.add_element("credential_store_id", str(credential_store_id))
|
|
174
|
+
if vault_id:
|
|
175
|
+
cmd.add_element("vault_id", vault_id)
|
|
176
|
+
if host_identifier:
|
|
177
|
+
cmd.add_element("host_identifier", host_identifier)
|
|
178
|
+
|
|
179
|
+
return cmd
|
|
@@ -7,7 +7,7 @@ from typing import Mapping, Optional, Sequence
|
|
|
7
7
|
|
|
8
8
|
from gvm.errors import InvalidArgument, RequiredArgument
|
|
9
9
|
from gvm.protocols.core import Request
|
|
10
|
-
from gvm.utils import SupportsStr, to_bool, to_comma_list
|
|
10
|
+
from gvm.utils import SupportsStr, deprecated, to_bool, to_comma_list
|
|
11
11
|
from gvm.xml import XmlCommand
|
|
12
12
|
|
|
13
13
|
from .._entity_id import EntityID
|
|
@@ -210,12 +210,12 @@ class Tasks:
|
|
|
210
210
|
return cmd
|
|
211
211
|
|
|
212
212
|
@classmethod
|
|
213
|
-
def
|
|
213
|
+
def create_import_task(
|
|
214
214
|
cls, name: str, *, comment: Optional[str] = None
|
|
215
215
|
) -> Request:
|
|
216
|
-
"""Create a new
|
|
216
|
+
"""Create a new import task
|
|
217
217
|
|
|
218
|
-
|
|
218
|
+
An import task is a "meta" task to import and view reports from other
|
|
219
219
|
systems.
|
|
220
220
|
|
|
221
221
|
Args:
|
|
@@ -224,7 +224,7 @@ class Tasks:
|
|
|
224
224
|
"""
|
|
225
225
|
if not name:
|
|
226
226
|
raise RequiredArgument(
|
|
227
|
-
function=cls.
|
|
227
|
+
function=cls.create_import_task.__name__, argument="name"
|
|
228
228
|
)
|
|
229
229
|
|
|
230
230
|
cmd = XmlCommand("create_task")
|
|
@@ -236,6 +236,19 @@ class Tasks:
|
|
|
236
236
|
|
|
237
237
|
return cmd
|
|
238
238
|
|
|
239
|
+
@classmethod
|
|
240
|
+
@deprecated(
|
|
241
|
+
"The function is obsolete. Please use create_import_task instead."
|
|
242
|
+
)
|
|
243
|
+
def create_container_task(
|
|
244
|
+
cls, name: str, *, comment: Optional[str] = None
|
|
245
|
+
) -> "Request":
|
|
246
|
+
"""[DEPRECATED] Use create_import_task instead.
|
|
247
|
+
|
|
248
|
+
This method will be removed in a future version.
|
|
249
|
+
"""
|
|
250
|
+
return cls.create_import_task(name=name, comment=comment)
|
|
251
|
+
|
|
239
252
|
@classmethod
|
|
240
253
|
def create_task(
|
|
241
254
|
cls,
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "python-gvm"
|
|
7
|
-
version = "26.
|
|
7
|
+
version = "26.9.0"
|
|
8
8
|
description = "Library to communicate with remote servers over GMP or OSP"
|
|
9
9
|
license = "GPL-3.0-or-later"
|
|
10
10
|
authors = ["Greenbone AG <info@greenbone.net>"]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2025 Greenbone AG
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
|
+
|
|
5
|
+
from .test_get_credential_stores import GmpGetCredentialStoresTestMixin
|
|
6
|
+
from .test_modify_credential_stores import GmpModifyCredentialStoreTestMixin
|
|
7
|
+
from .test_verify_credential_stores import GmpVerifyCredentialStoreTestMixin
|
|
8
|
+
|
|
9
|
+
__all__ = (
|
|
10
|
+
"GmpGetCredentialStoresTestMixin",
|
|
11
|
+
"GmpModifyCredentialStoreTestMixin",
|
|
12
|
+
"GmpVerifyCredentialStoreTestMixin",
|
|
13
|
+
)
|