python-gvm 26.11.1__tar.gz → 26.11.2.dev1__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.11.1 → python_gvm-26.11.2.dev1}/PKG-INFO +16 -29
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/README.md +8 -17
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/__version__.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/_enum.py +5 -5
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/connections/_connection.py +3 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/connections/_debug.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/connections/_ssh.py +14 -15
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/connections/_tls.py +7 -8
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/connections/_unix.py +2 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/errors.py +14 -20
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/_protocol.py +6 -5
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/core/_connection.py +8 -8
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/core/_response.py +4 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/_gmp.py +8 -8
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/_gmp224.py +496 -505
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/_gmp225.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/_gmp226.py +46 -46
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/_gmp227.py +21 -23
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/_gmpnext.py +169 -104
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/_entity_id.py +1 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/__init__.py +15 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_agent_groups.py +8 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_agent_installers.py +4 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_agents.py +14 -13
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_credential_stores.py +15 -16
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_credentials.py +13 -14
- python_gvm-26.11.2.dev1/gvm/protocols/gmp/requests/next/_integration_configs.py +110 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_oci_image_targets.py +12 -13
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/next/_tasks.py +53 -50
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_aggregates.py +13 -14
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_alerts.py +26 -27
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_audits.py +26 -27
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_auth.py +0 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_cert_bund_advisories.py +4 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_cpes.py +4 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_credentials.py +52 -53
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_cves.py +4 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_dfn_cert_advisories.py +4 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_entity_type.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_feed.py +1 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_filters.py +14 -14
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_groups.py +10 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_help.py +2 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_hosts.py +6 -10
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_notes.py +18 -19
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_nvts.py +26 -30
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_operating_systems.py +5 -7
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_overrides.py +20 -22
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_permissions.py +14 -16
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_policies.py +16 -17
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_port_lists.py +10 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_report_formats.py +17 -19
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_reports.py +13 -15
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_results.py +6 -8
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_roles.py +9 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_scan_configs.py +19 -20
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_scanners.py +17 -17
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_schedules.py +16 -20
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_secinfo.py +4 -5
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_system_reports.py +6 -7
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_tags.py +18 -20
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_targets.py +37 -37
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_tasks.py +30 -31
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_tickets.py +9 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_tls_certificates.py +9 -10
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_user_settings.py +4 -5
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_users.py +18 -20
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_vulnerabilities.py +2 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v225/_resource_names.py +3 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v226/_audit_reports.py +12 -14
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v226/_filters.py +15 -15
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v226/_report_configs.py +23 -16
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v226/_reports.py +14 -16
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v226/_resource_names.py +3 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v227/_scanners.py +21 -21
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_client.py +8 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_metadata.py +2 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_openvasd1.py +5 -7
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_scans.py +13 -13
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/latest.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/next.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/ospv1.py +28 -27
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/transforms.py +1 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/utils.py +18 -23
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/xml.py +11 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/pyproject.toml +69 -75
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/__init__.py +11 -11
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/connections/test_ssh_connection.py +20 -28
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/connections/test_tls_connection.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/connections/test_unix_socket_connection.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/__init__.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/core/test_response.py +0 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/core/test_states.py +0 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_alerts.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_audits.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_auth.py +6 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_notes.py +3 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_overrides.py +6 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_report_formats.py +2 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_roles.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_scan_configs.py +3 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_scanners.py +2 -7
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_targets.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_tasks.py +4 -13
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer.py +0 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer_file.py +0 -1
- python_gvm-26.11.2.dev1/tests/protocols/gmpnext/entities/integration_configs/__init__.py +3 -0
- python_gvm-26.11.2.dev1/tests/protocols/gmpnext/entities/integration_configs/test_get_integration_config.py +44 -0
- python_gvm-26.11.2.dev1/tests/protocols/gmpnext/entities/integration_configs/test_get_integration_configs.py +25 -0
- python_gvm-26.11.2.dev1/tests/protocols/gmpnext/entities/integration_configs/test_modify_integration_config.py +170 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/test_clone_oci_image_target.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_create_container_task.py +1 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_create_import_task.py +1 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_modify_task.py +3 -9
- python_gvm-26.11.2.dev1/tests/protocols/gmpnext/entities/test_integration_configs.py +33 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_modify_alert.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_modify_audit.py +3 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/test_create_filter.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/test_modify_filter.py +2 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/test_create_group.py +1 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/test_modify_group.py +3 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/hosts/test_modify_host.py +5 -15
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/test_create_note.py +3 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/operating_systems/test_modify_operating_system.py +5 -15
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_import_policy.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_comment.py +2 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_name.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_clone_report_format.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_delete_report_format.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_get_report_format.py +2 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_import_report_format.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_modify_report_format.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_verify_report_format.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/reports/test_get_report.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/reports/test_import_report.py +5 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/test_create_role.py +2 -8
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/test_modify_role.py +2 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +2 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +5 -15
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/test_create_schedule.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/test_modify_schedule.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_info.py +2 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/test_modify_tag.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/test_clone_target.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_create_container_task.py +1 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_modify_task.py +3 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/test_clone_tls_certificate.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/test_modify_user.py +3 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/user_settings/test_modify_user_setting.py +1 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/audit_reports/test_get_report.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/reports/test_get_report.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/reports/test_import_report.py +5 -4
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/scanners/test_modify_scanner.py +6 -18
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_start_scan.py +1 -1
- python_gvm-26.11.1/LICENSE +0 -674
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/connections/__init__.py +3 -3
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/core/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/core/_request.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/__init__.py +2 -2
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/__init__.py +9 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_severity.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v224/_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v225/__init__.py +9 -9
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v226/__init__.py +10 -10
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/gmp/requests/v227/__init__.py +10 -10
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_api.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_health.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_notus.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/protocols/http/openvasd/_vts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/gvm/py.typed +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/connections/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/connections/test_debug_connection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/connections/test_gvm_connection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/core/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/core/test_connection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/core/test_request.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/core/test_xml_reader.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/test_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_aggregates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_cert_bund_advisories.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_cpes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_cves.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_dfn_cert_advisories.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_feed.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_help.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_nvts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_secinfo.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_system_report.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_user_settings.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v224/test_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v225/test_resource_names.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/test_audit_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/test_filter_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/test_report_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/requests/v226/test_resource_names.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmp/test_context_manager.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/test_clone_agent_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/test_create_agent_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/test_delete_agent_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_groups/test_modify_agent_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_installers/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installers.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agents/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agents/test_delete_agents.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agents/test_get_agents.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agents/test_modify_agent_controller_scan_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agents/test_modify_agents.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/agents/test_sync_agents.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credential_stores/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credential_stores/test_get_credential_stores.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credential_stores/test_modify_credential_stores.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credential_stores/test_verify_credential_stores.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credentials/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credentials/test_create_credential_store_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/credentials/test_modify_credential_store_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/test_create_oci_image_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/test_delete_oci_image_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/oci_image_targets/test_modify_oci_image_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_create_agent_group_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_create_container_image_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_create_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_get_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_move_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_start_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_agent_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_agent_installers.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_agents.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_alerts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_audit_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_audits.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_credential_stores.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_notes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_oci_image_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_overrides.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_report_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_report_formats.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_resource_names.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_roles.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_scan_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_scanners.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_secinfo.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_alert_condition.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_alert_event.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_alert_method.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_alive_test.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_credential_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_credential_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_entity_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_feed_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_filter_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_help_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_info_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_port_range_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_report_format_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_resource_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_scanner_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_sort_order.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_ticket_status.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpnext/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_create_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_get_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_get_audits.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_start_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/test_get_filter.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/filters/test_get_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/test_clone_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/test_delete_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/test_get_group.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/groups/test_get_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/hosts/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/hosts/test_create_host.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/hosts/test_get_host.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/test_clone_note.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/test_delete_note.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/test_get_note.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/notes/test_get_notes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/operating_systems/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/test_get_override.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_create_policy.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_get_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_get_policy.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/reports/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/results/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/results/test_get_result.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/results/test_get_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/test_clone_role.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/test_delete_role.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/test_get_role.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/roles/test_get_roles.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +1 -1
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/__init__.py +6 -6
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/test_create_tag.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/test_get_tag.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tags/test_get_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/test_delete_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/test_get_target.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/targets/test_get_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_create_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_get_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_move_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_start_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_scanners.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/test_clone_user.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/test_delete_user.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/test_get_user.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/users/test_get_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/aggregates/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/authentication/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/authentication/test_authenticate.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/feed/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/feed/test_get_feed.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/feed/test_get_feeds.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/help/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/help/test_help.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/system_reports/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/trashcan/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/user_settings/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/system/versions/test_get_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_alerts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_audits.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_notes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_overrides.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_report_formats.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_resource_names.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_roles.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_scan_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_scanners.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_secinfo.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_alert_condition.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_alert_event.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_alert_method.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_alive_test.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_credential_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_credential_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_entity_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_feed_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_filter_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_help_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_info_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_port_range_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_report_format_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_resource_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_scanner_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_sort_order.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_ticket_status.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_aggregates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_authentication.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_feed.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_help.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_system_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_user_settings.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/test_versions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/versions/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/test_gmp_types.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv225/test_with_statement.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/audit_reports/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/audit_reports/test_delete_report.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/audit_reports/test_get_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/test_clone_report_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/test_create_report_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/test_delete_report_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/test_get_report_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/test_get_report_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/report_configs/test_modify_report_config.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/reports/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_alerts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_audit_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_audits.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_notes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_overrides.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_report_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_report_formats.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_resource_names.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_roles.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_scan_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_scanners.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_secinfo.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_alert_condition.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_alert_event.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_alert_method.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_alive_test.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_credential_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_credential_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_entity_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_feed_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_filter_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_help_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_info_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_port_range_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_report_format_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_resource_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_scanner_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_sort_order.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_ticket_status.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_aggregates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_authentication.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_feed.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_help.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_system_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_trashcan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_user_settings.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/test_versions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/versions/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/test_gmp_types.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv226/test_with_statement.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/scanners/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_alerts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_audit_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_audits.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_credentials.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_filters.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_groups.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_hosts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_notes.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_operating_systems.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_overrides.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_permissions.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_policies.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_port_lists.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_report_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_report_formats.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_reports.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_resource_names.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_results.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_roles.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_scan_configs.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_scanners.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_schedules.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_secinfo.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_tags.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_targets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_tasks.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_tickets.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_users.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_alert_condition.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_alert_event.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_alert_method.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_alive_test.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_credential_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_credential_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_entity_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_feed_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_filter_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_help_format.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_info_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_port_range_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_report_format_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_resource_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_scanner_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_sort_order.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_ticket_status.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/gmpv227/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_client.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_health.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_metadata.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_notus.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_openvasd1.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_scans.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/http/openvasd/test_vts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/test_latest.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/protocols/test_next.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/test_enum.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/test_errors.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/transforms/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_check_port.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/xml/__init__.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/xml/test.file +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/xml/test_parse_xml.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-26.11.1 → python_gvm-26.11.2.dev1}/tests/xml/test_xml_command.py +0 -0
|
@@ -1,31 +1,28 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-gvm
|
|
3
|
-
Version: 26.11.
|
|
3
|
+
Version: 26.11.2.dev1
|
|
4
4
|
Summary: Library to communicate with remote servers over GMP or OSP
|
|
5
|
-
License: GPL-3.0-or-later
|
|
6
|
-
License-File: LICENSE
|
|
7
5
|
Author: Greenbone AG
|
|
8
|
-
Author-email: info@greenbone.net
|
|
9
|
-
|
|
6
|
+
Author-email: Greenbone AG <info@greenbone.net>
|
|
7
|
+
License-Expression: GPL-3.0-or-later
|
|
10
8
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
9
|
Classifier: Environment :: Console
|
|
12
10
|
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
14
|
-
Classifier: Operating System :: OS Independent
|
|
15
11
|
Classifier: Programming Language :: Python :: 3
|
|
16
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
16
|
Classifier: Programming Language :: Python :: 3.14
|
|
21
|
-
Classifier:
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
22
18
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist: lxml
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
|
|
19
|
+
Requires-Dist: paramiko>=2.7.1
|
|
20
|
+
Requires-Dist: lxml>=4.5.0
|
|
21
|
+
Requires-Dist: httpx[http2]>=0.28.1,<0.29
|
|
22
|
+
Requires-Python: >=3.10, <4
|
|
27
23
|
Project-URL: Homepage, https://github.com/greenbone/python-gvm/
|
|
28
24
|
Project-URL: Repository, https://github.com/greenbone/python-gvm/
|
|
25
|
+
Project-URL: Documentation, https://greenbone.github.io/python-gvm/
|
|
29
26
|
Description-Content-Type: text/markdown
|
|
30
27
|
|
|
31
28
|

|
|
@@ -86,7 +83,7 @@ We frequently update these projects to add features and keep them free from bugs
|
|
|
86
83
|
|
|
87
84
|
### Requirements
|
|
88
85
|
|
|
89
|
-
Python 3.
|
|
86
|
+
Python 3.10 and later is supported.
|
|
90
87
|
|
|
91
88
|
### Install using pip
|
|
92
89
|
|
|
@@ -145,36 +142,26 @@ Your contributions are highly appreciated. Please
|
|
|
145
142
|
For bigger changes, please discuss it first in the
|
|
146
143
|
[issues](https://github.com/greenbone/python-gvm/issues).
|
|
147
144
|
|
|
148
|
-
For development you should use [
|
|
145
|
+
For development you should use [uv].
|
|
149
146
|
to keep you python packages separated in different environments. First install
|
|
150
|
-
|
|
147
|
+
uv via pip
|
|
151
148
|
|
|
152
149
|
```shell
|
|
153
|
-
python3 -m pip install --user
|
|
150
|
+
python3 -m pip install --user uv
|
|
154
151
|
```
|
|
155
152
|
|
|
156
|
-
Afterwards run
|
|
157
|
-
|
|
158
|
-
```shell
|
|
159
|
-
poetry install
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
in the checkout directory of python-gvm (the directory containing the
|
|
163
|
-
`pyproject.toml` file) to install all dependencies including the packages only
|
|
164
|
-
required for development.
|
|
165
|
-
|
|
166
153
|
The python-gvm repository uses [autohooks](https://github.com/greenbone/autohooks)
|
|
167
154
|
to apply linting and auto formatting via git hooks. Please ensure the git hooks
|
|
168
155
|
are active.
|
|
169
156
|
|
|
170
157
|
```shell
|
|
171
|
-
|
|
172
|
-
poetry run autohooks activate --force
|
|
158
|
+
uv run autohooks activate --force
|
|
173
159
|
```
|
|
174
160
|
|
|
175
161
|
## License
|
|
176
162
|
|
|
177
|
-
Copyright (C) 2017-
|
|
163
|
+
Copyright (C) 2017-2026 [Greenbone AG](https://www.greenbone.net/)
|
|
178
164
|
|
|
179
165
|
Licensed under the [GNU General Public License v3.0 or later](LICENSE).
|
|
180
166
|
|
|
167
|
+
[uv]: https://docs.astral.sh/uv/
|
|
@@ -56,7 +56,7 @@ We frequently update these projects to add features and keep them free from bugs
|
|
|
56
56
|
|
|
57
57
|
### Requirements
|
|
58
58
|
|
|
59
|
-
Python 3.
|
|
59
|
+
Python 3.10 and later is supported.
|
|
60
60
|
|
|
61
61
|
### Install using pip
|
|
62
62
|
|
|
@@ -115,35 +115,26 @@ Your contributions are highly appreciated. Please
|
|
|
115
115
|
For bigger changes, please discuss it first in the
|
|
116
116
|
[issues](https://github.com/greenbone/python-gvm/issues).
|
|
117
117
|
|
|
118
|
-
For development you should use [
|
|
118
|
+
For development you should use [uv].
|
|
119
119
|
to keep you python packages separated in different environments. First install
|
|
120
|
-
|
|
120
|
+
uv via pip
|
|
121
121
|
|
|
122
122
|
```shell
|
|
123
|
-
python3 -m pip install --user
|
|
123
|
+
python3 -m pip install --user uv
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
-
Afterwards run
|
|
127
|
-
|
|
128
|
-
```shell
|
|
129
|
-
poetry install
|
|
130
|
-
```
|
|
131
|
-
|
|
132
|
-
in the checkout directory of python-gvm (the directory containing the
|
|
133
|
-
`pyproject.toml` file) to install all dependencies including the packages only
|
|
134
|
-
required for development.
|
|
135
|
-
|
|
136
126
|
The python-gvm repository uses [autohooks](https://github.com/greenbone/autohooks)
|
|
137
127
|
to apply linting and auto formatting via git hooks. Please ensure the git hooks
|
|
138
128
|
are active.
|
|
139
129
|
|
|
140
130
|
```shell
|
|
141
|
-
|
|
142
|
-
poetry run autohooks activate --force
|
|
131
|
+
uv run autohooks activate --force
|
|
143
132
|
```
|
|
144
133
|
|
|
145
134
|
## License
|
|
146
135
|
|
|
147
|
-
Copyright (C) 2017-
|
|
136
|
+
Copyright (C) 2017-2026 [Greenbone AG](https://www.greenbone.net/)
|
|
148
137
|
|
|
149
138
|
Licensed under the [GNU General Public License v3.0 or later](LICENSE).
|
|
139
|
+
|
|
140
|
+
[uv]: https://docs.astral.sh/uv/
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#
|
|
5
5
|
|
|
6
6
|
from enum import Enum as PythonEnum
|
|
7
|
-
from typing import Any,
|
|
7
|
+
from typing import Any, TypeVar
|
|
8
8
|
|
|
9
9
|
from gvm.errors import InvalidArgument
|
|
10
10
|
|
|
@@ -17,16 +17,16 @@ class Enum(PythonEnum):
|
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
@classmethod
|
|
20
|
-
def _missing_(cls:
|
|
20
|
+
def _missing_(cls: type[Self], value: Any) -> Self | None:
|
|
21
21
|
if isinstance(value, PythonEnum):
|
|
22
22
|
return cls.from_string(value.name)
|
|
23
23
|
return cls.from_string(str(value) if value else None)
|
|
24
24
|
|
|
25
25
|
@classmethod
|
|
26
26
|
def from_string(
|
|
27
|
-
cls:
|
|
28
|
-
value:
|
|
29
|
-
) ->
|
|
27
|
+
cls: type[Self],
|
|
28
|
+
value: str | None,
|
|
29
|
+
) -> Self | None:
|
|
30
30
|
"""
|
|
31
31
|
Convert a string value into an Enum instance
|
|
32
32
|
|
|
@@ -6,7 +6,7 @@ import logging
|
|
|
6
6
|
import socket as socketlib
|
|
7
7
|
from abc import ABC, abstractmethod
|
|
8
8
|
from time import time
|
|
9
|
-
from typing import
|
|
9
|
+
from typing import Protocol, runtime_checkable
|
|
10
10
|
|
|
11
11
|
from gvm.errors import GvmError
|
|
12
12
|
|
|
@@ -62,8 +62,8 @@ class AbstractGvmConnection(ABC):
|
|
|
62
62
|
wait indefinitely
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
|
-
def __init__(self, timeout:
|
|
66
|
-
self._socket:
|
|
65
|
+
def __init__(self, timeout: int | float | None = DEFAULT_TIMEOUT):
|
|
66
|
+
self._socket: socketlib.SocketType | None = None
|
|
67
67
|
self._timeout = timeout if timeout is not None else DEFAULT_TIMEOUT
|
|
68
68
|
|
|
69
69
|
def _read(self) -> bytes:
|
|
@@ -26,7 +26,7 @@ class DebugConnection:
|
|
|
26
26
|
|
|
27
27
|
logging.basicConfig(level=logging.DEBUG)
|
|
28
28
|
|
|
29
|
-
socket_connection = UnixSocketConnection(path=
|
|
29
|
+
socket_connection = UnixSocketConnection(path="/var/run/gvm.sock")
|
|
30
30
|
connection = DebugConnection(socket_connection)
|
|
31
31
|
gmp = GMP(connection=connection)
|
|
32
32
|
"""
|
|
@@ -8,10 +8,11 @@ import hashlib
|
|
|
8
8
|
import logging
|
|
9
9
|
import socket as socketlib
|
|
10
10
|
import sys
|
|
11
|
+
from collections.abc import Callable
|
|
11
12
|
from os import PathLike
|
|
12
13
|
from pathlib import Path
|
|
13
14
|
from time import time
|
|
14
|
-
from typing import Any,
|
|
15
|
+
from typing import Any, TextIO
|
|
15
16
|
|
|
16
17
|
import paramiko
|
|
17
18
|
import paramiko.ssh_exception
|
|
@@ -39,16 +40,16 @@ class SSHConnection:
|
|
|
39
40
|
def __init__(
|
|
40
41
|
self,
|
|
41
42
|
*,
|
|
42
|
-
timeout:
|
|
43
|
-
hostname:
|
|
44
|
-
port:
|
|
45
|
-
username:
|
|
46
|
-
password:
|
|
47
|
-
known_hosts_file:
|
|
48
|
-
auto_accept_host:
|
|
43
|
+
timeout: int | float | None = DEFAULT_TIMEOUT,
|
|
44
|
+
hostname: str | None = DEFAULT_HOSTNAME,
|
|
45
|
+
port: int | None = DEFAULT_SSH_PORT,
|
|
46
|
+
username: str | None = DEFAULT_SSH_USERNAME,
|
|
47
|
+
password: str | None = DEFAULT_SSH_PASSWORD,
|
|
48
|
+
known_hosts_file: str | PathLike | None = None,
|
|
49
|
+
auto_accept_host: bool | None = None,
|
|
49
50
|
file: TextIO = sys.stdout,
|
|
50
|
-
input: Callable[[], str] = input,
|
|
51
|
-
exit: Callable[[str], Any] = sys.exit,
|
|
51
|
+
input: Callable[[], str] = input, # noqa: A002
|
|
52
|
+
exit: Callable[[str], Any] = sys.exit, # noqa: A002
|
|
52
53
|
) -> None:
|
|
53
54
|
"""
|
|
54
55
|
Create a new SSH connection instance.
|
|
@@ -61,7 +62,7 @@ class SSHConnection:
|
|
|
61
62
|
username: Username to use for SSH login. Default is "gmp".
|
|
62
63
|
password: Password to use for SSH login. Default is "".
|
|
63
64
|
"""
|
|
64
|
-
self._client:
|
|
65
|
+
self._client: paramiko.SSHClient | None = None
|
|
65
66
|
self.hostname = hostname if hostname is not None else DEFAULT_HOSTNAME
|
|
66
67
|
self.port = int(port) if port is not None else DEFAULT_SSH_PORT
|
|
67
68
|
self.username = (
|
|
@@ -118,8 +119,7 @@ class SSHConnection:
|
|
|
118
119
|
key_type = key.get_name().replace("ssh-", "").upper()
|
|
119
120
|
|
|
120
121
|
logger.info(
|
|
121
|
-
"Warning: Permanently added '%s' (%s) to "
|
|
122
|
-
"the list of known hosts.",
|
|
122
|
+
"Warning: Permanently added '%s' (%s) to the list of known hosts.",
|
|
123
123
|
self.hostname,
|
|
124
124
|
key_type,
|
|
125
125
|
)
|
|
@@ -135,8 +135,7 @@ class SSHConnection:
|
|
|
135
135
|
key_type = key.get_name().replace("ssh-", "").upper()
|
|
136
136
|
|
|
137
137
|
print(
|
|
138
|
-
f"The authenticity of host '{self.hostname}' can't "
|
|
139
|
-
"be established.",
|
|
138
|
+
f"The authenticity of host '{self.hostname}' can't be established.",
|
|
140
139
|
file=self._file,
|
|
141
140
|
)
|
|
142
141
|
print(
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
import logging
|
|
6
6
|
import socket as socketlib
|
|
7
7
|
import ssl
|
|
8
|
-
from typing import Optional, Union
|
|
9
8
|
|
|
10
9
|
from ._connection import DEFAULT_TIMEOUT, AbstractGvmConnection
|
|
11
10
|
|
|
@@ -25,13 +24,13 @@ class TLSConnection(AbstractGvmConnection):
|
|
|
25
24
|
def __init__(
|
|
26
25
|
self,
|
|
27
26
|
*,
|
|
28
|
-
certfile:
|
|
29
|
-
cafile:
|
|
30
|
-
keyfile:
|
|
31
|
-
hostname:
|
|
32
|
-
port:
|
|
33
|
-
password:
|
|
34
|
-
timeout:
|
|
27
|
+
certfile: str | None = None,
|
|
28
|
+
cafile: str | None = None,
|
|
29
|
+
keyfile: str | None = None,
|
|
30
|
+
hostname: str | None = DEFAULT_HOSTNAME,
|
|
31
|
+
port: int | None = DEFAULT_GVM_PORT,
|
|
32
|
+
password: str | None = None,
|
|
33
|
+
timeout: int | float | None = DEFAULT_TIMEOUT,
|
|
35
34
|
) -> None:
|
|
36
35
|
"""
|
|
37
36
|
Create a new TLSConnection instance.
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
import socket as socketlib
|
|
6
6
|
from os import PathLike, fspath
|
|
7
|
-
from typing import Optional, Union
|
|
8
7
|
|
|
9
8
|
from gvm.errors import GvmError
|
|
10
9
|
|
|
@@ -22,8 +21,8 @@ class UnixSocketConnection(AbstractGvmConnection):
|
|
|
22
21
|
def __init__(
|
|
23
22
|
self,
|
|
24
23
|
*,
|
|
25
|
-
path:
|
|
26
|
-
timeout:
|
|
24
|
+
path: str | PathLike[str] | None = DEFAULT_UNIX_SOCKET_PATH,
|
|
25
|
+
timeout: int | float | None = DEFAULT_TIMEOUT,
|
|
27
26
|
) -> None:
|
|
28
27
|
"""
|
|
29
28
|
Create a new UnixSocketConnection instance.
|
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
Module for GVM errors
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
|
-
from typing import Optional
|
|
10
|
-
|
|
11
9
|
|
|
12
10
|
class GvmError(Exception):
|
|
13
11
|
"""An exception for gvm errors
|
|
@@ -15,7 +13,7 @@ class GvmError(Exception):
|
|
|
15
13
|
Base class for all exceptions originating in python-gvm.
|
|
16
14
|
"""
|
|
17
15
|
|
|
18
|
-
def __init__(self, message:
|
|
16
|
+
def __init__(self, message: str | None, *args):
|
|
19
17
|
super().__init__(message, *args)
|
|
20
18
|
self.message = message
|
|
21
19
|
|
|
@@ -44,9 +42,7 @@ class GvmServerError(GvmError):
|
|
|
44
42
|
and function
|
|
45
43
|
"""
|
|
46
44
|
|
|
47
|
-
def __init__(
|
|
48
|
-
self, status: Optional[str] = None, message: Optional[str] = None
|
|
49
|
-
):
|
|
45
|
+
def __init__(self, status: str | None = None, message: str | None = None):
|
|
50
46
|
super().__init__(message, status)
|
|
51
47
|
self.status = status
|
|
52
48
|
|
|
@@ -71,9 +67,7 @@ class GvmResponseError(GvmClientError):
|
|
|
71
67
|
and function
|
|
72
68
|
"""
|
|
73
69
|
|
|
74
|
-
def __init__(
|
|
75
|
-
self, status: Optional[str] = None, message: Optional[str] = None
|
|
76
|
-
):
|
|
70
|
+
def __init__(self, status: str | None = None, message: str | None = None):
|
|
77
71
|
super().__init__(message, status)
|
|
78
72
|
self.status = status
|
|
79
73
|
|
|
@@ -87,7 +81,7 @@ class GvmResponseError(GvmClientError):
|
|
|
87
81
|
)
|
|
88
82
|
|
|
89
83
|
|
|
90
|
-
class InvalidArgument(GvmError):
|
|
84
|
+
class InvalidArgument(GvmError): # noqa: N818
|
|
91
85
|
"""Raised if an invalid argument/parameter is passed
|
|
92
86
|
|
|
93
87
|
Derives from :py:class:`GvmError`
|
|
@@ -101,10 +95,10 @@ class InvalidArgument(GvmError):
|
|
|
101
95
|
|
|
102
96
|
def __init__(
|
|
103
97
|
self,
|
|
104
|
-
message:
|
|
98
|
+
message: str | None = None,
|
|
105
99
|
*,
|
|
106
|
-
argument:
|
|
107
|
-
function:
|
|
100
|
+
argument: str | None = None,
|
|
101
|
+
function: str | None = None,
|
|
108
102
|
):
|
|
109
103
|
super().__init__(message, argument, function)
|
|
110
104
|
self.argument = argument
|
|
@@ -123,7 +117,7 @@ class InvalidArgument(GvmError):
|
|
|
123
117
|
return f"Invalid argument {self.argument} for {self.function}"
|
|
124
118
|
|
|
125
119
|
|
|
126
|
-
class InvalidArgumentType(GvmError):
|
|
120
|
+
class InvalidArgumentType(GvmError): # noqa: N818
|
|
127
121
|
"""Raised if a passed argument has an invalid type
|
|
128
122
|
|
|
129
123
|
Derives from :py:class:`GvmError`
|
|
@@ -138,8 +132,8 @@ class InvalidArgumentType(GvmError):
|
|
|
138
132
|
self,
|
|
139
133
|
argument: str,
|
|
140
134
|
*,
|
|
141
|
-
arg_type:
|
|
142
|
-
function:
|
|
135
|
+
arg_type: str | None = None,
|
|
136
|
+
function: str | None = None,
|
|
143
137
|
):
|
|
144
138
|
super().__init__(None)
|
|
145
139
|
self.argument = argument
|
|
@@ -165,7 +159,7 @@ class InvalidArgumentType(GvmError):
|
|
|
165
159
|
return f"Invalid argument type for argument {self.argument}."
|
|
166
160
|
|
|
167
161
|
|
|
168
|
-
class RequiredArgument(GvmError):
|
|
162
|
+
class RequiredArgument(GvmError): # noqa: N818
|
|
169
163
|
"""Raised if a required argument/parameter is missing
|
|
170
164
|
|
|
171
165
|
Derives from :py:class:`GvmError`
|
|
@@ -179,10 +173,10 @@ class RequiredArgument(GvmError):
|
|
|
179
173
|
|
|
180
174
|
def __init__(
|
|
181
175
|
self,
|
|
182
|
-
message:
|
|
176
|
+
message: str | None = None,
|
|
183
177
|
*,
|
|
184
|
-
argument:
|
|
185
|
-
function:
|
|
178
|
+
argument: str | None = None,
|
|
179
|
+
function: str | None = None,
|
|
186
180
|
):
|
|
187
181
|
super().__init__(message, argument, function)
|
|
188
182
|
self.argument = argument
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
4
|
|
|
5
|
+
from collections.abc import Callable
|
|
5
6
|
from types import TracebackType
|
|
6
|
-
from typing import
|
|
7
|
+
from typing import Generic, TypeVar
|
|
7
8
|
|
|
8
9
|
from gvm.connections import GvmConnection
|
|
9
10
|
|
|
@@ -50,9 +51,9 @@ class GvmProtocol(Generic[T]):
|
|
|
50
51
|
|
|
51
52
|
def __exit__(
|
|
52
53
|
self,
|
|
53
|
-
exc_type:
|
|
54
|
-
exc_value:
|
|
55
|
-
traceback:
|
|
54
|
+
exc_type: type[BaseException] | None,
|
|
55
|
+
exc_value: BaseException | None,
|
|
56
|
+
traceback: TracebackType | None,
|
|
56
57
|
) -> None:
|
|
57
58
|
self.disconnect()
|
|
58
59
|
|
|
@@ -126,7 +127,7 @@ class GvmProtocol(Generic[T]):
|
|
|
126
127
|
try:
|
|
127
128
|
send_data = self._protocol.send(request)
|
|
128
129
|
self._send(send_data)
|
|
129
|
-
response:
|
|
130
|
+
response: Response | None = None
|
|
130
131
|
while not response:
|
|
131
132
|
received_data = self._read()
|
|
132
133
|
response = self._protocol.receive_data(received_data)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
4
|
|
|
5
|
-
from typing import AnyStr,
|
|
5
|
+
from typing import AnyStr, Protocol
|
|
6
6
|
|
|
7
7
|
from lxml import etree
|
|
8
8
|
|
|
@@ -18,7 +18,7 @@ class XmlReader:
|
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
def start_xml(self) -> None:
|
|
21
|
-
self._first_element:
|
|
21
|
+
self._first_element: etree._Element | None = None
|
|
22
22
|
# act on start and end element events and
|
|
23
23
|
# allow huge text data (for report content)
|
|
24
24
|
self._parser = etree.XMLPullParser(
|
|
@@ -60,7 +60,7 @@ class InvalidStateError(GvmError):
|
|
|
60
60
|
class State(Protocol):
|
|
61
61
|
def __set_context__(self, context: "Context") -> None: ...
|
|
62
62
|
def send(self, request: Request) -> bytes: ...
|
|
63
|
-
def receive_data(self, data: bytes) ->
|
|
63
|
+
def receive_data(self, data: bytes) -> Response | None: ...
|
|
64
64
|
def close(self) -> None: ...
|
|
65
65
|
|
|
66
66
|
|
|
@@ -83,7 +83,7 @@ class InitialState(AbstractState):
|
|
|
83
83
|
self.set_next_state(AwaitingResponseState(request))
|
|
84
84
|
return bytes(request)
|
|
85
85
|
|
|
86
|
-
def receive_data(self, data: bytes) ->
|
|
86
|
+
def receive_data(self, data: bytes) -> Response | None:
|
|
87
87
|
raise InvalidStateError()
|
|
88
88
|
|
|
89
89
|
def close(self) -> None:
|
|
@@ -101,7 +101,7 @@ class AwaitingResponseState(AbstractState):
|
|
|
101
101
|
def close(self) -> None:
|
|
102
102
|
self.set_next_state(InitialState())
|
|
103
103
|
|
|
104
|
-
def receive_data(self, data: bytes) ->
|
|
104
|
+
def receive_data(self, data: bytes) -> Response | None:
|
|
105
105
|
next_state = ReceivingDataState(self._request)
|
|
106
106
|
self.set_next_state(next_state)
|
|
107
107
|
return next_state.receive_data(data)
|
|
@@ -118,7 +118,7 @@ class ErrorState(AbstractState):
|
|
|
118
118
|
def close(self) -> None:
|
|
119
119
|
self.set_next_state(InitialState())
|
|
120
120
|
|
|
121
|
-
def receive_data(self, data: bytes) ->
|
|
121
|
+
def receive_data(self, data: bytes) -> Response | None:
|
|
122
122
|
raise InvalidStateError(self.message)
|
|
123
123
|
|
|
124
124
|
|
|
@@ -135,7 +135,7 @@ class ReceivingDataState(AbstractState):
|
|
|
135
135
|
def close(self) -> None:
|
|
136
136
|
self.set_next_state(InitialState())
|
|
137
137
|
|
|
138
|
-
def receive_data(self, data: bytes) ->
|
|
138
|
+
def receive_data(self, data: bytes) -> Response | None:
|
|
139
139
|
self._data += data
|
|
140
140
|
try:
|
|
141
141
|
self._reader.feed_xml(data)
|
|
@@ -174,7 +174,7 @@ class Connection:
|
|
|
174
174
|
"""
|
|
175
175
|
return self._state.send(request)
|
|
176
176
|
|
|
177
|
-
def receive_data(self, data: bytes) ->
|
|
177
|
+
def receive_data(self, data: bytes) -> Response | None:
|
|
178
178
|
"""
|
|
179
179
|
Feed received data a response is complete
|
|
180
180
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
4
|
|
|
5
5
|
from functools import cached_property
|
|
6
|
-
from typing import
|
|
6
|
+
from typing import TypeVar
|
|
7
7
|
|
|
8
8
|
from gvm.errors import GvmError
|
|
9
9
|
from gvm.xml import Element, parse_xml
|
|
@@ -18,7 +18,7 @@ class StatusError(GvmError):
|
|
|
18
18
|
May be raised when calling `response.raise_for_status()`
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
|
-
def __init__(self, message:
|
|
21
|
+
def __init__(self, message: str | None, *args, response: "Response"):
|
|
22
22
|
super().__init__(message, *args)
|
|
23
23
|
self.response = response
|
|
24
24
|
self.request = response.request
|
|
@@ -42,7 +42,7 @@ class Response:
|
|
|
42
42
|
"""
|
|
43
43
|
self._request = request
|
|
44
44
|
self._data = data
|
|
45
|
-
self.__xml:
|
|
45
|
+
self.__xml: Element | None = None
|
|
46
46
|
|
|
47
47
|
def __root_element(self) -> Element:
|
|
48
48
|
if self.__xml is None:
|
|
@@ -72,7 +72,7 @@ class Response:
|
|
|
72
72
|
return self._request
|
|
73
73
|
|
|
74
74
|
@cached_property
|
|
75
|
-
def status_code(self) ->
|
|
75
|
+
def status_code(self) -> int | None:
|
|
76
76
|
"""
|
|
77
77
|
The status code of the response
|
|
78
78
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
4
|
|
|
5
5
|
import warnings
|
|
6
|
+
from collections.abc import Callable
|
|
6
7
|
from types import TracebackType
|
|
7
|
-
from typing import Callable, Optional, Type, Union
|
|
8
8
|
|
|
9
9
|
from gvm.__version__ import __version__
|
|
10
10
|
from gvm.connections import GvmConnection
|
|
@@ -19,9 +19,9 @@ from ._gmp227 import GMPv227
|
|
|
19
19
|
from ._gmpnext import GMPNext
|
|
20
20
|
from .requests import Version
|
|
21
21
|
|
|
22
|
-
SUPPORTED_GMP_VERSIONS =
|
|
23
|
-
GMPv224[T]
|
|
24
|
-
|
|
22
|
+
SUPPORTED_GMP_VERSIONS = (
|
|
23
|
+
GMPv224[T] | GMPv225[T] | GMPv226[T] | GMPv227[T] | GMPNext[T]
|
|
24
|
+
)
|
|
25
25
|
_SUPPORTED_GMP_VERSION_STRINGS = ["22.4", "22.5", "22.6", "22.7", "22.8"]
|
|
26
26
|
|
|
27
27
|
|
|
@@ -67,7 +67,7 @@ class GMP(GvmProtocol[T]):
|
|
|
67
67
|
See :mod:`gvm.transforms` for existing transforms.
|
|
68
68
|
"""
|
|
69
69
|
super().__init__(connection, transform=transform)
|
|
70
|
-
self._gmp:
|
|
70
|
+
self._gmp: SUPPORTED_GMP_VERSIONS | None = None
|
|
71
71
|
|
|
72
72
|
def determine_remote_gmp_version(self) -> str:
|
|
73
73
|
"""Determine the supported GMP version of the remote daemon"""
|
|
@@ -131,9 +131,9 @@ class GMP(GvmProtocol[T]):
|
|
|
131
131
|
|
|
132
132
|
def __exit__(
|
|
133
133
|
self,
|
|
134
|
-
exc_type:
|
|
135
|
-
exc_value:
|
|
136
|
-
traceback:
|
|
134
|
+
exc_type: type[BaseException] | None,
|
|
135
|
+
exc_value: BaseException | None,
|
|
136
|
+
traceback: TracebackType | None,
|
|
137
137
|
) -> None:
|
|
138
138
|
if self._gmp:
|
|
139
139
|
self._gmp.disconnect()
|