python-gvm 26.1.1__tar.gz → 26.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_gvm-26.1.1 → python_gvm-26.2.0}/PKG-INFO +1 -1
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/__init__.py +3 -5
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/__version__.py +1 -1
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/connections/_debug.py +3 -6
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/connections/_tls.py +3 -6
- python_gvm-26.2.0/gvm/protocols/__init__.py +20 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/_protocol.py +1 -4
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/__init__.py +6 -2
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/_gmp.py +10 -13
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/_gmp224.py +7 -14
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/_gmp225.py +0 -19
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/_gmp226.py +3 -19
- python_gvm-26.2.0/gvm/protocols/gmp/_gmp227.py +190 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v226/_reports.py +5 -0
- python_gvm-26.2.0/gvm/protocols/gmp/requests/v227/__init__.py +151 -0
- python_gvm-26.2.0/gvm/protocols/gmp/requests/v227/_scanners.py +326 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/latest.py +2 -2
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/next.py +3 -6
- {python_gvm-26.1.1 → python_gvm-26.2.0}/pyproject.toml +2 -1
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/test_reports.py +11 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_scanners.py +5 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_scanners.py +5 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/reports/test_get_report.py +9 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_scanners.py +8 -3
- python_gvm-26.2.0/tests/protocols/gmpv226/enums/test_scanner_type.py +42 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/__init__.py +12 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/__init__.py +3 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/scanners/__init__.py +24 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/scanners/test_create_scanner.py +254 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/scanners/test_modify_scanner.py +163 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_alerts.py +48 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_audit_reports.py +23 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_audits.py +53 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_credentials.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_filters.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_groups.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_hosts.py +33 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_notes.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_operating_systems.py +36 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_overrides.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_permissions.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_policies.py +80 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_port_lists.py +48 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_report_configs.py +44 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_report_formats.py +51 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_reports.py +28 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_resource_names.py +20 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_results.py +18 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_roles.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_scan_configs.py +80 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_scanners.py +42 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_schedules.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_secinfo.py +83 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_tags.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_targets.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_tasks.py +65 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_tickets.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_tls_certificates.py +48 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_users.py +38 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/entities/test_vulnerabilities.py +20 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/__init__.py +4 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_aggregate_statistic.py +57 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_alert_condition.py +45 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_alert_event.py +45 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_alert_method.py +69 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_alive_test.py +61 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_credential_format.py +41 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_credential_type.py +49 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_entity_type.py +166 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_feed_type.py +37 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_filter_type.py +146 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_help_format.py +37 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_hosts_ordering.py +33 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_info_type.py +49 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_permission_subject_type.py +33 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_port_range_type.py +29 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_report_format_type.py +97 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_resource_type.py +133 -0
- {python_gvm-26.1.1/tests/protocols/gmpv226 → python_gvm-26.2.0/tests/protocols/gmpv227}/enums/test_scanner_type.py +8 -1
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_snmp_algorithms.py +52 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_sort_order.py +33 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_ticket_status.py +33 -0
- python_gvm-26.2.0/tests/protocols/gmpv227/enums/test_user_auth_type.py +37 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/test_latest.py +1 -1
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/test_next.py +1 -1
- python_gvm-26.1.1/gvm/protocols/__init__.py +0 -17
- {python_gvm-26.1.1 → python_gvm-26.2.0}/LICENSE +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/README.md +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/_enum.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/connections/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/connections/_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/connections/_ssh.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/connections/_unix.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/errors.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/core/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/core/_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/core/_request.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/core/_response.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/_entity_id.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_aggregates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_alerts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_audits.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_auth.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_cert_bund_advisories.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_cpes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_credentials.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_cves.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_dfn_cert_advisories.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_entity_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_feed.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_groups.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_hosts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_notes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_nvts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_operating_systems.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_overrides.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_permissions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_policies.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_port_lists.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_report_formats.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_results.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_roles.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_scan_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_scanners.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_schedules.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_secinfo.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_severity.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_system_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_tags.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_targets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_tasks.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_tickets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_tls_certificates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_user_settings.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_users.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v224/_vulnerabilities.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v225/_resource_names.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v226/_audit_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v226/_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v226/_report_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/gmp/requests/v226/_resource_names.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/protocols/ospv1.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/py.typed +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/transforms.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/utils.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/gvm/xml.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/connections/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/connections/test_debug_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/connections/test_gvm_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/connections/test_ssh_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/connections/test_tls_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/connections/test_unix_socket_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/core/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/core/test_connection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/core/test_request.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/core/test_response.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/core/test_states.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/core/test_xml_reader.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/test_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_aggregates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_alerts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_audits.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_auth.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_cert_bund_advisories.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_cpes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_credentials.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_cves.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_dfn_cert_advisories.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_feed.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_groups.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_hosts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_notes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_nvts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_operating_systems.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_overrides.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_permissions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_policies.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_port_lists.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_report_formats.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_results.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_roles.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_scan_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_scanners.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_schedules.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_secinfo.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_system_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_tags.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_targets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_tasks.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_tickets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_tls_certificates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_user_settings.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_users.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v224/test_vulnerabilities.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v225/test_resource_names.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/test_audit_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/test_filter_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/test_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/test_report_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/requests/v226/test_resource_names.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmp/test_context_manager.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_modify_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_create_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_get_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_get_audits.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_modify_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_start_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/test_create_filter.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/test_get_filter.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/test_get_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/filters/test_modify_filter.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/test_clone_group.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/test_create_group.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/test_delete_group.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/test_get_group.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/test_get_groups.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/groups/test_modify_group.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/hosts/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/hosts/test_create_host.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/hosts/test_get_host.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/hosts/test_modify_host.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/test_clone_note.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/test_create_note.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/test_delete_note.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/test_get_note.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/test_get_notes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/operating_systems/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/operating_systems/test_modify_operating_system.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/test_get_override.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_create_policy.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_get_policies.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_get_policy.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_import_policy.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_comment.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_name.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_clone_report_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_delete_report_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_import_report_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_modify_report_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/report_formats/test_verify_report_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/reports/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/reports/test_get_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/reports/test_import_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/results/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/results/test_get_result.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/results/test_get_results.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/test_clone_role.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/test_create_role.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/test_delete_role.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/test_get_role.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/test_get_roles.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/roles/test_modify_role.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/test_create_schedule.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/schedules/test_modify_schedule.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/test_create_tag.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/test_get_tag.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/test_get_tags.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tags/test_modify_tag.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/test_clone_target.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/test_delete_target.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/test_get_target.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/test_get_targets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_create_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_get_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_move_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_start_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/test_clone_tls_certificate.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/test_clone_user.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/test_delete_user.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/test_get_user.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/test_get_users.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/users/test_modify_user.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/aggregates/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/authentication/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/authentication/test_authenticate.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/feed/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/feed/test_get_feed.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/feed/test_get_feeds.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/help/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/help/test_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/system_reports/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/trashcan/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/user_settings/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/user_settings/test_modify_user_setting.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/system/versions/test_get_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_alerts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_audits.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_credentials.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_groups.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_hosts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_notes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_operating_systems.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_overrides.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_permissions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_policies.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_port_lists.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_report_formats.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_resource_names.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_results.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_roles.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_scan_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_schedules.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_secinfo.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_tags.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_targets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_tasks.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_tickets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_users.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_alert_condition.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_alert_event.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_alert_method.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_alive_test.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_credential_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_credential_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_entity_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_feed_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_filter_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_help_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_info_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_port_range_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_report_format_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_resource_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_scanner_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_sort_order.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_ticket_status.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_aggregates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_authentication.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_feed.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_system_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_user_settings.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/test_versions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/versions/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/test_gmp_types.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv225/test_with_statement.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/audit_reports/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/audit_reports/test_delete_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/test_clone_report_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/test_create_report_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/test_delete_report_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/report_configs/test_modify_report_config.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/reports/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/reports/test_delete_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/reports/test_get_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/reports/test_import_report.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/resourcenames/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_alerts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_audit_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_audits.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_credentials.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_filters.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_groups.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_hosts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_notes.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_operating_systems.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_overrides.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_permissions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_policies.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_port_lists.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_report_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_report_formats.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_resource_names.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_results.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_roles.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_scan_configs.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_schedules.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_secinfo.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_tags.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_targets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_tasks.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_tickets.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_tls_certificates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_users.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/entities/test_vulnerabilities.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_alert_condition.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_alert_event.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_alert_method.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_alive_test.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_credential_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_credential_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_entity_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_feed_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_filter_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_help_format.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_hosts_ordering.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_info_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_permission_subject_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_port_range_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_report_format_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_resource_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_sort_order.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_ticket_status.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/enums/test_user_auth_type.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_aggregates.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_authentication.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_feed.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_system_reports.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_trashcan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_user_settings.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/test_versions.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/versions/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/test_gmp_types.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/gmpv226/test_with_statement.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_start_scan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/test_enum.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/test_errors.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/transforms/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_check_port.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/xml/__init__.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/xml/test.file +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/xml/test_parse_xml.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-26.1.1 → python_gvm-26.2.0}/tests/xml/test_xml_command.py +0 -0
|
@@ -5,17 +5,15 @@
|
|
|
5
5
|
"""
|
|
6
6
|
Main module of python-gvm.
|
|
7
7
|
"""
|
|
8
|
+
|
|
8
9
|
from .__version__ import __version__
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
def get_version() -> str:
|
|
12
|
-
"""Returns the version of python-gvm as a string in
|
|
13
|
-
format.
|
|
13
|
+
"""Returns the version of python-gvm as a string in
|
|
14
|
+
`PEP440 <https://www.python.org/dev/peps/pep-0440>`_ compliant format.
|
|
14
15
|
|
|
15
16
|
Returns:
|
|
16
17
|
Current version of python-gvm
|
|
17
|
-
|
|
18
|
-
.. _PEP440:
|
|
19
|
-
https://www.python.org/dev/peps/pep-0440
|
|
20
18
|
"""
|
|
21
19
|
return __version__
|
|
@@ -13,9 +13,9 @@ class DebugConnection:
|
|
|
13
13
|
"""Wrapper around a connection for debugging purposes
|
|
14
14
|
|
|
15
15
|
Allows to debug the connection flow including send and read data. Internally
|
|
16
|
-
it uses the python `logging
|
|
17
|
-
take a look at
|
|
18
|
-
<https://docs.python.org/3/howto/logging.html#logging-basic-tutorial>`_
|
|
16
|
+
it uses the python `logging <https://docs.python.org/3/library/logging.html>`_
|
|
17
|
+
framework to create debug messages. Please take a look at
|
|
18
|
+
`the logging tutorial <https://docs.python.org/3/howto/logging.html#logging-basic-tutorial>`_
|
|
19
19
|
for further details.
|
|
20
20
|
|
|
21
21
|
Example:
|
|
@@ -29,9 +29,6 @@ class DebugConnection:
|
|
|
29
29
|
socket_connection = UnixSocketConnection(path='/var/run/gvm.sock')
|
|
30
30
|
connection = DebugConnection(socket_connection)
|
|
31
31
|
gmp = Gmp(connection=connection)
|
|
32
|
-
|
|
33
|
-
.. _logging:
|
|
34
|
-
https://docs.python.org/3/library/logging.html
|
|
35
32
|
"""
|
|
36
33
|
|
|
37
34
|
def __init__(self, connection: GvmConnection):
|
|
@@ -41,17 +41,14 @@ class TLSConnection(AbstractGvmConnection):
|
|
|
41
41
|
hostname: DNS name or IP address of the remote TLS server.
|
|
42
42
|
port: Port for the TLS connection. Default is 9390.
|
|
43
43
|
certfile: Path to PEM encoded certificate file. See
|
|
44
|
-
`python certificates
|
|
45
|
-
cafile: Path to PEM encoded CA file. See `python certificates
|
|
44
|
+
`python certificates <https://docs.python.org/3/library/ssl.html#certificates>`_ for details.
|
|
45
|
+
cafile: Path to PEM encoded CA file. See `python certificates <https://docs.python.org/3/library/ssl.html#certificates>`_
|
|
46
46
|
for details.
|
|
47
|
-
keyfile: Path to PEM encoded private key. See `python certificates
|
|
47
|
+
keyfile: Path to PEM encoded private key. See `python certificates <https://docs.python.org/3/library/ssl.html#certificates>`_
|
|
48
48
|
for details.
|
|
49
49
|
password: Password for the private key. If the password argument is not
|
|
50
50
|
specified and a password is required it will be interactively prompt
|
|
51
51
|
the user for a password.
|
|
52
|
-
|
|
53
|
-
.. _python certificates:
|
|
54
|
-
https://docs.python.org/3/library/ssl.html#certificates
|
|
55
52
|
"""
|
|
56
53
|
super().__init__(timeout=timeout)
|
|
57
54
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2018-2024 Greenbone AG
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
|
+
#
|
|
5
|
+
"""
|
|
6
|
+
Package for supported Greenbone Protocol versions.
|
|
7
|
+
|
|
8
|
+
Currently GMP version 22.4, `GMP version 22.5`_,
|
|
9
|
+
`GMP version 22.6`_, `GMP version 22.7`_
|
|
10
|
+
and `OSP version 1`_ are supported.
|
|
11
|
+
|
|
12
|
+
.. _GMP version 22.5:
|
|
13
|
+
https://docs.greenbone.net/API/GMP/gmp-22.5.html
|
|
14
|
+
.. _GMP version 22.6:
|
|
15
|
+
https://docs.greenbone.net/API/GMP/gmp-22.6.html
|
|
16
|
+
.. _GMP version 22.7:
|
|
17
|
+
https://docs.greenbone.net/API/GMP/gmp-22.7.html
|
|
18
|
+
.. _OSP version 1:
|
|
19
|
+
https://docs.greenbone.net/API/OSP/osp-1.2.html
|
|
20
|
+
"""
|
|
@@ -86,10 +86,7 @@ class GvmProtocol(Generic[T]):
|
|
|
86
86
|
|
|
87
87
|
Normally connect is not called directly. Either it is called
|
|
88
88
|
automatically when sending a protocol command or when using a
|
|
89
|
-
`with statement
|
|
90
|
-
|
|
91
|
-
.. _with statement:
|
|
92
|
-
https://docs.python.org/3/reference/datamodel.html#with-statement-context-managers
|
|
89
|
+
`with statement <https://docs.python.org/3/reference/datamodel.html#with-statement-context-managers>`_.
|
|
93
90
|
"""
|
|
94
91
|
if not self.is_connected():
|
|
95
92
|
self._connection.connect()
|
|
@@ -8,18 +8,21 @@ Protocol implementations for the Greenbone Management Protocol (GMP).
|
|
|
8
8
|
In most circumstances you will want to use the :class:`GMP` class which
|
|
9
9
|
dynamically selects the supported GMP protocol of the remote manager daemon.
|
|
10
10
|
|
|
11
|
-
If you need to use a specific GMP version, you can use the :class:`GMPv224
|
|
12
|
-
:class:`GMPv225` classes.
|
|
11
|
+
If you need to use a specific GMP version, you can use the :class:`GMPv224`,
|
|
12
|
+
:class:`GMPv225`, :class:`GMPv226` or :class:`GMPv227` classes.
|
|
13
13
|
|
|
14
14
|
* :class:`GMP` - Dynamically select supported GMP protocol of the remote manager daemon.
|
|
15
15
|
* :class:`GMPv224` - GMP version 22.4
|
|
16
16
|
* :class:`GMPv225` - GMP version 22.5
|
|
17
|
+
* :class:`GMPv226` - GMP version 22.6
|
|
18
|
+
* :class:`GMPv227` - GMP version 22.7
|
|
17
19
|
"""
|
|
18
20
|
|
|
19
21
|
from ._gmp import GMP
|
|
20
22
|
from ._gmp224 import GMPv224
|
|
21
23
|
from ._gmp225 import GMPv225
|
|
22
24
|
from ._gmp226 import GMPv226
|
|
25
|
+
from ._gmp227 import GMPv227
|
|
23
26
|
|
|
24
27
|
Gmp = GMP # for backwards compatibility
|
|
25
28
|
|
|
@@ -29,4 +32,5 @@ __all__ = (
|
|
|
29
32
|
"GMPv224",
|
|
30
33
|
"GMPv225",
|
|
31
34
|
"GMPv226",
|
|
35
|
+
"GMPv227",
|
|
32
36
|
)
|
|
@@ -15,17 +15,17 @@ from .._protocol import GvmProtocol, T, str_transform
|
|
|
15
15
|
from ._gmp224 import GMPv224
|
|
16
16
|
from ._gmp225 import GMPv225
|
|
17
17
|
from ._gmp226 import GMPv226
|
|
18
|
+
from ._gmp227 import GMPv227
|
|
18
19
|
from .requests import Version
|
|
19
20
|
|
|
20
|
-
SUPPORTED_GMP_VERSIONS = Union[GMPv224[T], GMPv225[T], GMPv226[T]]
|
|
21
|
-
_SUPPORTED_GMP_VERSION_STRINGS = ["22.4", "22.5", "22.6"]
|
|
21
|
+
SUPPORTED_GMP_VERSIONS = Union[GMPv224[T], GMPv225[T], GMPv226[T], GMPv227[T]]
|
|
22
|
+
_SUPPORTED_GMP_VERSION_STRINGS = ["22.4", "22.5", "22.6", "22.7"]
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
class GMP(GvmProtocol[T]):
|
|
25
26
|
"""Dynamically select supported GMP protocol of the remote manager daemon.
|
|
26
27
|
|
|
27
|
-
Must be used as a `Context Manager
|
|
28
|
-
<https://docs.python.org/3/reference/datamodel.html#context-managers>`_
|
|
28
|
+
Must be used as a `Context Manager <https://docs.python.org/3/reference/datamodel.html#context-managers>`_
|
|
29
29
|
|
|
30
30
|
Example:
|
|
31
31
|
|
|
@@ -36,11 +36,11 @@ class GMP(GvmProtocol[T]):
|
|
|
36
36
|
with GMP(connection) as gmp:
|
|
37
37
|
# gmp can be an instance of
|
|
38
38
|
# gvm.protocols.gmp.GMPv224,
|
|
39
|
-
# gvm.protocols.gmp.GMPv225
|
|
40
|
-
#
|
|
39
|
+
# gvm.protocols.gmp.GMPv225,
|
|
40
|
+
# gvm.protocols.gmp.GMPv226,
|
|
41
|
+
# or gvm.protocols.gmp.GMPv227
|
|
41
42
|
# depending on the supported GMP version of the remote manager daemon
|
|
42
43
|
resp = gmp.get_tasks()
|
|
43
|
-
|
|
44
44
|
"""
|
|
45
45
|
|
|
46
46
|
def __init__(
|
|
@@ -55,15 +55,12 @@ class GMP(GvmProtocol[T]):
|
|
|
55
55
|
Args:
|
|
56
56
|
connection: Connection to use to talk with the remote daemon. See
|
|
57
57
|
:mod:`gvm.connections` for possible connection types.
|
|
58
|
-
transform: Optional transform `callable
|
|
59
|
-
After each request the callable gets passed the plain response data
|
|
58
|
+
transform: Optional transform `callable <https://docs.python.org/3/library/functions.html#callable>`_
|
|
59
|
+
to convert response data. After each request the callable gets passed the plain response data
|
|
60
60
|
which can be used to check the data and/or conversion into different
|
|
61
61
|
representations like a xml dom.
|
|
62
62
|
|
|
63
63
|
See :mod:`gvm.transforms` for existing transforms.
|
|
64
|
-
|
|
65
|
-
.. _callable:
|
|
66
|
-
https://docs.python.org/3/library/functions.html#callable
|
|
67
64
|
"""
|
|
68
65
|
super().__init__(connection, transform=transform)
|
|
69
66
|
self._gmp: Optional[SUPPORTED_GMP_VERSIONS] = None
|
|
@@ -98,7 +95,7 @@ class GMP(GvmProtocol[T]):
|
|
|
98
95
|
gmp_class = GMPv226
|
|
99
96
|
if minor_version > 6:
|
|
100
97
|
warnings.warn(
|
|
101
|
-
"Remote manager daemon uses a newer GMP version
|
|
98
|
+
"Remote manager daemon uses a newer GMP version than "
|
|
102
99
|
f"supported by python-gvm {__version__}. Please update to "
|
|
103
100
|
"a newer release of python-gvm if possible. "
|
|
104
101
|
f"Remote GMP version is {major_version}.{minor_version}. "
|
|
@@ -122,20 +122,18 @@ class GMPv224(GvmProtocol[T]):
|
|
|
122
122
|
|
|
123
123
|
def __init__(self, *args, **kwargs):
|
|
124
124
|
"""
|
|
125
|
-
Create a new
|
|
125
|
+
Create a new GMP protocol instance.
|
|
126
126
|
|
|
127
127
|
Args:
|
|
128
128
|
connection: Connection to use to talk with the remote daemon. See
|
|
129
129
|
:mod:`gvm.connections` for possible connection types.
|
|
130
|
-
transform: Optional transform `callable
|
|
130
|
+
transform: Optional transform `callable <https://docs.python.org/3/library/functions.html#callable>`_
|
|
131
|
+
to convert response data.
|
|
131
132
|
After each request the callable gets passed the plain response data
|
|
132
133
|
which can be used to check the data and/or conversion into different
|
|
133
134
|
representations like a xml dom.
|
|
134
135
|
|
|
135
136
|
See :mod:`gvm.transforms` for existing transforms.
|
|
136
|
-
|
|
137
|
-
.. _callable:
|
|
138
|
-
https://docs.python.org/3/library/functions.html#callable
|
|
139
137
|
"""
|
|
140
138
|
super().__init__(*args, **kwargs)
|
|
141
139
|
self.types = to_dotted_types_dict(_TYPE_FIELDS)
|
|
@@ -3141,7 +3139,7 @@ class GMPv224(GvmProtocol[T]):
|
|
|
3141
3139
|
*,
|
|
3142
3140
|
comment: Optional[str] = None,
|
|
3143
3141
|
) -> T:
|
|
3144
|
-
"""Create a new schedule based in `iCalendar
|
|
3142
|
+
"""Create a new schedule based in `iCalendar <https://tools.ietf.org/html/rfc5545>`_ data.
|
|
3145
3143
|
|
|
3146
3144
|
Example:
|
|
3147
3145
|
Requires https://pypi.org/project/icalendar/
|
|
@@ -3173,16 +3171,13 @@ class GMPv224(GvmProtocol[T]):
|
|
|
3173
3171
|
|
|
3174
3172
|
Args:
|
|
3175
3173
|
name: Name of the new schedule
|
|
3176
|
-
icalendar: `iCalendar
|
|
3174
|
+
icalendar: `iCalendar <https://tools.ietf.org/html/rfc5545>`_ (RFC 5545) based data.
|
|
3177
3175
|
timezone: Timezone to use for the icalendar events e.g
|
|
3178
3176
|
Europe/Berlin. If the datetime values in the icalendar data are
|
|
3179
3177
|
missing timezone information this timezone gets applied.
|
|
3180
3178
|
Otherwise the datetime values from the icalendar data are
|
|
3181
3179
|
displayed in this timezone
|
|
3182
3180
|
comment: Comment on schedule.
|
|
3183
|
-
|
|
3184
|
-
.. _iCalendar:
|
|
3185
|
-
https://tools.ietf.org/html/rfc5545
|
|
3186
3181
|
"""
|
|
3187
3182
|
return self._send_request_and_transform_response(
|
|
3188
3183
|
Schedules.create_schedule(
|
|
@@ -3255,16 +3250,14 @@ class GMPv224(GvmProtocol[T]):
|
|
|
3255
3250
|
Args:
|
|
3256
3251
|
schedule_id: UUID of the schedule to be modified
|
|
3257
3252
|
name: Name of the schedule
|
|
3258
|
-
icalendar: `iCalendar
|
|
3253
|
+
icalendar: `iCalendar <https://tools.ietf.org/html/rfc5545>`_
|
|
3254
|
+
(RFC 5545) based data.
|
|
3259
3255
|
timezone: Timezone to use for the icalendar events e.g
|
|
3260
3256
|
Europe/Berlin. If the datetime values in the icalendar data are
|
|
3261
3257
|
missing timezone information this timezone gets applied.
|
|
3262
3258
|
Otherwise the datetime values from the icalendar data are
|
|
3263
3259
|
displayed in this timezone
|
|
3264
3260
|
comment: Comment on schedule.
|
|
3265
|
-
|
|
3266
|
-
.. _iCalendar:
|
|
3267
|
-
https://tools.ietf.org/html/rfc5545
|
|
3268
3261
|
"""
|
|
3269
3262
|
return self._send_request_and_transform_response(
|
|
3270
3263
|
Schedules.modify_schedule(
|
|
@@ -30,25 +30,6 @@ class GMPv225(GMPv224[T]):
|
|
|
30
30
|
resp = gmp.get_tasks()
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
|
-
def __init__(self, *args, **kwargs):
|
|
34
|
-
"""
|
|
35
|
-
Create a new GMPv225 instance.
|
|
36
|
-
|
|
37
|
-
Args:
|
|
38
|
-
connection: Connection to use to talk with the remote daemon. See
|
|
39
|
-
:mod:`gvm.connections` for possible connection types.
|
|
40
|
-
transform: Optional transform `callable`_ to convert response data.
|
|
41
|
-
After each request the callable gets passed the plain response data
|
|
42
|
-
which can be used to check the data and/or conversion into different
|
|
43
|
-
representations like a xml dom.
|
|
44
|
-
|
|
45
|
-
See :mod:`gvm.transforms` for existing transforms.
|
|
46
|
-
|
|
47
|
-
.. _callable:
|
|
48
|
-
https://docs.python.org/3/library/functions.html#callable
|
|
49
|
-
"""
|
|
50
|
-
super().__init__(*args, **kwargs)
|
|
51
|
-
|
|
52
33
|
@staticmethod
|
|
53
34
|
def get_protocol_version() -> tuple[int, int]:
|
|
54
35
|
return (22, 5)
|
|
@@ -38,25 +38,6 @@ class GMPv226(GMPv225[T]):
|
|
|
38
38
|
resp = gmp.get_tasks()
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
|
-
def __init__(self, *args, **kwargs):
|
|
42
|
-
"""
|
|
43
|
-
Create a new GMPv226 instance.
|
|
44
|
-
|
|
45
|
-
Args:
|
|
46
|
-
connection: Connection to use to talk with the remote daemon. See
|
|
47
|
-
:mod:`gvm.connections` for possible connection types.
|
|
48
|
-
transform: Optional transform `callable`_ to convert response data.
|
|
49
|
-
After each request the callable gets passed the plain response data
|
|
50
|
-
which can be used to check the data and/or conversion into different
|
|
51
|
-
representations like a xml dom.
|
|
52
|
-
|
|
53
|
-
See :mod:`gvm.transforms` for existing transforms.
|
|
54
|
-
|
|
55
|
-
.. _callable:
|
|
56
|
-
https://docs.python.org/3/library/functions.html#callable
|
|
57
|
-
"""
|
|
58
|
-
super().__init__(*args, **kwargs)
|
|
59
|
-
|
|
60
41
|
@staticmethod
|
|
61
42
|
def get_protocol_version() -> tuple[int, int]:
|
|
62
43
|
return (22, 6)
|
|
@@ -122,6 +103,7 @@ class GMPv226(GMPv225[T]):
|
|
|
122
103
|
filter_id: Optional[str] = None,
|
|
123
104
|
delta_report_id: Optional[EntityID] = None,
|
|
124
105
|
report_format_id: Optional[Union[str, ReportFormatType]] = None,
|
|
106
|
+
report_config_id: Optional[str] = None,
|
|
125
107
|
ignore_pagination: Optional[bool] = None,
|
|
126
108
|
details: Optional[bool] = True,
|
|
127
109
|
) -> T:
|
|
@@ -134,6 +116,7 @@ class GMPv226(GMPv225[T]):
|
|
|
134
116
|
delta_report_id: UUID of an existing report to compare report to.
|
|
135
117
|
report_format_id: UUID of report format to use
|
|
136
118
|
or ReportFormatType (enum)
|
|
119
|
+
report_config_id: UUID of report format config to use
|
|
137
120
|
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
138
121
|
"rows".
|
|
139
122
|
details: Request additional report information details
|
|
@@ -146,6 +129,7 @@ class GMPv226(GMPv225[T]):
|
|
|
146
129
|
filter_id=filter_id,
|
|
147
130
|
delta_report_id=delta_report_id,
|
|
148
131
|
report_format_id=report_format_id,
|
|
132
|
+
report_config_id=report_config_id,
|
|
149
133
|
ignore_pagination=ignore_pagination,
|
|
150
134
|
details=details,
|
|
151
135
|
)
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2025 Greenbone AG
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Greenbone Management Protocol (GMP) version 22.7
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from typing import Optional, Union
|
|
10
|
+
|
|
11
|
+
from .._protocol import T
|
|
12
|
+
from ._gmp226 import GMPv226
|
|
13
|
+
from .requests.v227 import (
|
|
14
|
+
EntityID,
|
|
15
|
+
Scanners,
|
|
16
|
+
ScannerType,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class GMPv227(GMPv226[T]):
|
|
21
|
+
"""
|
|
22
|
+
A class implementing the Greenbone Management Protocol (GMP) version 22.7
|
|
23
|
+
|
|
24
|
+
Example:
|
|
25
|
+
|
|
26
|
+
.. code-block:: python
|
|
27
|
+
|
|
28
|
+
from gvm.protocols.gmp import GMPv227 as GMP
|
|
29
|
+
|
|
30
|
+
with GMP(connection) as gmp:
|
|
31
|
+
resp = gmp.get_tasks()
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
@staticmethod
|
|
35
|
+
def get_protocol_version() -> tuple[int, int]:
|
|
36
|
+
return (22, 7)
|
|
37
|
+
|
|
38
|
+
def create_scanner( # type:ignore[override]
|
|
39
|
+
self,
|
|
40
|
+
name: str,
|
|
41
|
+
host: str,
|
|
42
|
+
port: Union[str, int],
|
|
43
|
+
scanner_type: ScannerType,
|
|
44
|
+
credential_id: str,
|
|
45
|
+
*,
|
|
46
|
+
ca_pub: Optional[str] = None,
|
|
47
|
+
comment: Optional[str] = None,
|
|
48
|
+
relay_host: Optional[str] = None,
|
|
49
|
+
relay_port: Optional[Union[str, int]] = None,
|
|
50
|
+
) -> T:
|
|
51
|
+
"""Create a new scanner
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
name: Name of the new scanner
|
|
55
|
+
host: Hostname or IP address of the scanner
|
|
56
|
+
port: Port of the scanner
|
|
57
|
+
scanner_type: Type of the scanner
|
|
58
|
+
credential_id: UUID of client certificate credential for the
|
|
59
|
+
scanner
|
|
60
|
+
ca_pub: Certificate of CA to verify scanner certificate
|
|
61
|
+
comment: Comment for the scanner
|
|
62
|
+
relay_host: Hostname or IP address of the scanner relay
|
|
63
|
+
relay_port: Port of the scanner relay
|
|
64
|
+
"""
|
|
65
|
+
return self._send_request_and_transform_response(
|
|
66
|
+
Scanners.create_scanner(
|
|
67
|
+
name,
|
|
68
|
+
host,
|
|
69
|
+
port,
|
|
70
|
+
scanner_type,
|
|
71
|
+
credential_id,
|
|
72
|
+
ca_pub=ca_pub,
|
|
73
|
+
comment=comment,
|
|
74
|
+
relay_host=relay_host,
|
|
75
|
+
relay_port=relay_port,
|
|
76
|
+
)
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
def modify_scanner( # type:ignore[override]
|
|
80
|
+
self,
|
|
81
|
+
scanner_id: EntityID,
|
|
82
|
+
*,
|
|
83
|
+
name: Optional[str] = None,
|
|
84
|
+
host: Optional[str] = None,
|
|
85
|
+
port: Optional[int] = None,
|
|
86
|
+
scanner_type: Optional[ScannerType] = None,
|
|
87
|
+
credential_id: Optional[EntityID] = None,
|
|
88
|
+
ca_pub: Optional[str] = None,
|
|
89
|
+
comment: Optional[str] = None,
|
|
90
|
+
relay_host: Optional[str] = None,
|
|
91
|
+
relay_port: Optional[Union[str, int]] = None,
|
|
92
|
+
) -> T:
|
|
93
|
+
"""Modify an existing scanner
|
|
94
|
+
|
|
95
|
+
Args:
|
|
96
|
+
scanner_id: UUID of the scanner to modify
|
|
97
|
+
name: New name of the scanner
|
|
98
|
+
host: New hostname or IP address of the scanner
|
|
99
|
+
port: New port of the scanner
|
|
100
|
+
scanner_type: New type of the scanner
|
|
101
|
+
credential_id: New UUID of client certificate credential for the
|
|
102
|
+
scanner
|
|
103
|
+
ca_pub: New certificate of CA to verify scanner certificate
|
|
104
|
+
comment: New comment for the scanner
|
|
105
|
+
relay_host: Hostname or IP address of the scanner relay
|
|
106
|
+
relay_port: Port of the scanner relay
|
|
107
|
+
"""
|
|
108
|
+
return self._send_request_and_transform_response(
|
|
109
|
+
Scanners.modify_scanner(
|
|
110
|
+
scanner_id,
|
|
111
|
+
name=name,
|
|
112
|
+
host=host,
|
|
113
|
+
port=port,
|
|
114
|
+
scanner_type=scanner_type,
|
|
115
|
+
credential_id=credential_id,
|
|
116
|
+
ca_pub=ca_pub,
|
|
117
|
+
comment=comment,
|
|
118
|
+
relay_host=relay_host,
|
|
119
|
+
relay_port=relay_port,
|
|
120
|
+
)
|
|
121
|
+
)
|
|
122
|
+
|
|
123
|
+
def get_scanners(
|
|
124
|
+
self,
|
|
125
|
+
*,
|
|
126
|
+
filter_string: Optional[str] = None,
|
|
127
|
+
filter_id: Optional[EntityID] = None,
|
|
128
|
+
trash: Optional[bool] = None,
|
|
129
|
+
details: Optional[bool] = None,
|
|
130
|
+
) -> T:
|
|
131
|
+
"""Request a list of scanners
|
|
132
|
+
|
|
133
|
+
Args:
|
|
134
|
+
filter_string: Filter term to use for the query
|
|
135
|
+
filter_id: UUID of an existing filter to use for the query
|
|
136
|
+
trash: Whether to get the trashcan scanners instead
|
|
137
|
+
details: Whether to include extra details like tasks using this
|
|
138
|
+
scanner
|
|
139
|
+
"""
|
|
140
|
+
return self._send_request_and_transform_response(
|
|
141
|
+
Scanners.get_scanners(
|
|
142
|
+
filter_string=filter_string,
|
|
143
|
+
filter_id=filter_id,
|
|
144
|
+
trash=trash,
|
|
145
|
+
details=details,
|
|
146
|
+
)
|
|
147
|
+
)
|
|
148
|
+
|
|
149
|
+
def get_scanner(self, scanner_id: EntityID) -> T:
|
|
150
|
+
"""Request a single scanner
|
|
151
|
+
|
|
152
|
+
Args:
|
|
153
|
+
scanner_id: UUID of an existing scanner
|
|
154
|
+
"""
|
|
155
|
+
return self._send_request_and_transform_response(
|
|
156
|
+
Scanners.get_scanner(scanner_id)
|
|
157
|
+
)
|
|
158
|
+
|
|
159
|
+
def verify_scanner(self, scanner_id: EntityID) -> T:
|
|
160
|
+
"""Verify an existing scanner
|
|
161
|
+
|
|
162
|
+
Args:
|
|
163
|
+
scanner_id: UUID of an existing scanner
|
|
164
|
+
"""
|
|
165
|
+
return self._send_request_and_transform_response(
|
|
166
|
+
Scanners.verify_scanner(scanner_id)
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
def clone_scanner(self, scanner_id: EntityID) -> T:
|
|
170
|
+
"""Clone an existing scanner
|
|
171
|
+
|
|
172
|
+
Args:
|
|
173
|
+
scanner_id: UUID of an existing scanner
|
|
174
|
+
"""
|
|
175
|
+
return self._send_request_and_transform_response(
|
|
176
|
+
Scanners.clone_scanner(scanner_id)
|
|
177
|
+
)
|
|
178
|
+
|
|
179
|
+
def delete_scanner(
|
|
180
|
+
self, scanner_id: EntityID, ultimate: Optional[bool] = False
|
|
181
|
+
) -> T:
|
|
182
|
+
"""Delete an existing scanner
|
|
183
|
+
|
|
184
|
+
Args:
|
|
185
|
+
scanner_id: UUID of an existing scanner
|
|
186
|
+
ultimate: Whether to remove entirely, or to the trashcan.
|
|
187
|
+
"""
|
|
188
|
+
return self._send_request_and_transform_response(
|
|
189
|
+
Scanners.delete_scanner(scanner_id, ultimate=ultimate)
|
|
190
|
+
)
|
|
@@ -41,6 +41,7 @@ class Reports:
|
|
|
41
41
|
filter_id: Optional[str] = None,
|
|
42
42
|
delta_report_id: Optional[EntityID] = None,
|
|
43
43
|
report_format_id: Optional[Union[str, ReportFormatType]] = None,
|
|
44
|
+
report_config_id: Optional[str] = None,
|
|
44
45
|
ignore_pagination: Optional[bool] = None,
|
|
45
46
|
details: Optional[bool] = True,
|
|
46
47
|
) -> Request:
|
|
@@ -53,6 +54,7 @@ class Reports:
|
|
|
53
54
|
delta_report_id: UUID of an existing report to compare report to.
|
|
54
55
|
report_format_id: UUID of report format to use
|
|
55
56
|
or ReportFormatType (enum)
|
|
57
|
+
report_config_id: UUID of report format config to use
|
|
56
58
|
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
57
59
|
"rows".
|
|
58
60
|
details: Request additional report information details
|
|
@@ -76,6 +78,9 @@ class Reports:
|
|
|
76
78
|
if report_format_id:
|
|
77
79
|
cmd.set_attribute("format_id", str(report_format_id))
|
|
78
80
|
|
|
81
|
+
if report_config_id:
|
|
82
|
+
cmd.set_attribute("config_id", str(report_config_id))
|
|
83
|
+
|
|
79
84
|
if ignore_pagination is not None:
|
|
80
85
|
cmd.set_attribute("ignore_pagination", to_bool(ignore_pagination))
|
|
81
86
|
|