Calipso initial release for OPNFV 49/38249/5
authorYaron Yogev <yaronyogev@gmail.com>
Thu, 27 Jul 2017 06:02:54 +0000 (09:02 +0300)
committerYaron Yogev <yaronyogev@gmail.com>
Thu, 27 Jul 2017 11:56:25 +0000 (14:56 +0300)
commit7e83d0876ddb84a45e130eeba28bc40ef53c074b
tree47d76239ae7658d87c66abd142df92709427e7dd
parent378ecbd8947589b9cbb39013a0c2e2aa201e03bd
Calipso initial release for OPNFV

Change-Id: I7210c244b0c10fa80bfa8c77cb86c9d6ddf8bc88
Signed-off-by: Yaron Yogev <yaronyogev@gmail.com>
365 files changed:
LICENSE
README.md [new file with mode: 0644]
app/api/__init__.py [new file with mode: 0644]
app/api/app.py [new file with mode: 0644]
app/api/auth/__init__.py [new file with mode: 0644]
app/api/auth/auth.py [new file with mode: 0644]
app/api/auth/token.py [new file with mode: 0644]
app/api/backends/__init__.py [new file with mode: 0644]
app/api/backends/ldap_access.py [new file with mode: 0644]
app/api/exceptions/__init__.py [new file with mode: 0644]
app/api/exceptions/exceptions.py [new file with mode: 0644]
app/api/middleware/__init__.py [new file with mode: 0644]
app/api/middleware/authentication.py [new file with mode: 0644]
app/api/responders/__init__.py [new file with mode: 0644]
app/api/responders/auth/__init__.py [new file with mode: 0644]
app/api/responders/auth/tokens.py [new file with mode: 0644]
app/api/responders/resource/__init__.py [new file with mode: 0644]
app/api/responders/resource/aggregates.py [new file with mode: 0644]
app/api/responders/resource/clique_constraints.py [new file with mode: 0644]
app/api/responders/resource/clique_types.py [new file with mode: 0644]
app/api/responders/resource/cliques.py [new file with mode: 0644]
app/api/responders/resource/constants.py [new file with mode: 0644]
app/api/responders/resource/environment_configs.py [new file with mode: 0644]
app/api/responders/resource/inventory.py [new file with mode: 0644]
app/api/responders/resource/links.py [new file with mode: 0644]
app/api/responders/resource/messages.py [new file with mode: 0644]
app/api/responders/resource/monitoring_config_templates.py [new file with mode: 0644]
app/api/responders/resource/scans.py [new file with mode: 0644]
app/api/responders/resource/scheduled_scans.py [new file with mode: 0644]
app/api/responders/responder_base.py [new file with mode: 0644]
app/api/server.py [new file with mode: 0755]
app/api/validation/__init__.py [new file with mode: 0644]
app/api/validation/data_validate.py [new file with mode: 0644]
app/api/validation/regex.py [new file with mode: 0644]
app/config/events.json [new file with mode: 0644]
app/config/scanners.json [new file with mode: 0644]
app/discover/__init__.py [new file with mode: 0644]
app/discover/clique_finder.py [new file with mode: 0644]
app/discover/configuration.py [new file with mode: 0644]
app/discover/event_handler.py [new file with mode: 0644]
app/discover/event_manager.py [new file with mode: 0644]
app/discover/events/__init__.py [new file with mode: 0644]
app/discover/events/event_base.py [new file with mode: 0644]
app/discover/events/event_delete_base.py [new file with mode: 0644]
app/discover/events/event_instance_add.py [new file with mode: 0644]
app/discover/events/event_instance_delete.py [new file with mode: 0644]
app/discover/events/event_instance_update.py [new file with mode: 0644]
app/discover/events/event_interface_add.py [new file with mode: 0644]
app/discover/events/event_interface_delete.py [new file with mode: 0644]
app/discover/events/event_metadata_parser.py [new file with mode: 0644]
app/discover/events/event_network_add.py [new file with mode: 0644]
app/discover/events/event_network_delete.py [new file with mode: 0644]
app/discover/events/event_network_update.py [new file with mode: 0644]
app/discover/events/event_port_add.py [new file with mode: 0644]
app/discover/events/event_port_delete.py [new file with mode: 0644]
app/discover/events/event_port_update.py [new file with mode: 0644]
app/discover/events/event_router_add.py [new file with mode: 0644]
app/discover/events/event_router_delete.py [new file with mode: 0644]
app/discover/events/event_router_update.py [new file with mode: 0644]
app/discover/events/event_subnet_add.py [new file with mode: 0644]
app/discover/events/event_subnet_delete.py [new file with mode: 0644]
app/discover/events/event_subnet_update.py [new file with mode: 0644]
app/discover/events/listeners/__init__.py [new file with mode: 0644]
app/discover/events/listeners/default_listener.py [new file with mode: 0755]
app/discover/events/listeners/listener_base.py [new file with mode: 0644]
app/discover/fetch_host_object_types.py [new file with mode: 0644]
app/discover/fetch_region_object_types.py [new file with mode: 0644]
app/discover/fetcher.py [new file with mode: 0644]
app/discover/fetcher_new.py [new file with mode: 0644]
app/discover/fetchers/__init__.py [new file with mode: 0644]
app/discover/fetchers/aci/__init__.py [new file with mode: 0644]
app/discover/fetchers/aci/aci_access.py [new file with mode: 0644]
app/discover/fetchers/aci/aci_fetch_switch_pnic.py [new file with mode: 0644]
app/discover/fetchers/api/__init__.py [new file with mode: 0644]
app/discover/fetchers/api/api_access.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_availability_zones.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_end_points.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_host_instances.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_network.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_networks.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_port.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_ports.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_project_hosts.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_projects.py [new file with mode: 0644]
app/discover/fetchers/api/api_fetch_regions.py [new file with mode: 0644]
app/discover/fetchers/cli/__init__.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_access.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_host_pnics.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_host_pnics_vpp.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_host_vservice.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_host_vservices.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_instance_vnics.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_instance_vnics_base.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_instance_vnics_vpp.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_oteps_lxb.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_vconnectors.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_vconnectors_lxb.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_vconnectors_ovs.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_vconnectors_vpp.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_vpp_vedges.py [new file with mode: 0644]
app/discover/fetchers/cli/cli_fetch_vservice_vnics.py [new file with mode: 0644]
app/discover/fetchers/db/__init__.py [new file with mode: 0644]
app/discover/fetchers/db/db_access.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_aggregate_hosts.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_aggregates.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_availability_zones.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_az_network_hosts.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_host_instances.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_host_network_agents.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_instances.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_oteps.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_port.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_vedges_ovs.py [new file with mode: 0644]
app/discover/fetchers/db/db_fetch_vedges_vpp.py [new file with mode: 0644]
app/discover/fetchers/folder_fetcher.py [new file with mode: 0644]
app/discover/find_links.py [new file with mode: 0644]
app/discover/find_links_for_instance_vnics.py [new file with mode: 0644]
app/discover/find_links_for_oteps.py [new file with mode: 0644]
app/discover/find_links_for_pnics.py [new file with mode: 0644]
app/discover/find_links_for_vconnectors.py [new file with mode: 0644]
app/discover/find_links_for_vedges.py [new file with mode: 0644]
app/discover/find_links_for_vservice_vnics.py [new file with mode: 0644]
app/discover/manager.py [new file with mode: 0644]
app/discover/monitoring_mgr.py [new file with mode: 0644]
app/discover/network_agents_list.py [new file with mode: 0644]
app/discover/plugins/__init__.py [new file with mode: 0644]
app/discover/scan.py [new file with mode: 0755]
app/discover/scan_error.py [new file with mode: 0644]
app/discover/scan_manager.py [new file with mode: 0644]
app/discover/scan_metadata_parser.py [new file with mode: 0644]
app/discover/scanner.py [new file with mode: 0644]
app/install/calipso-installer.py [new file with mode: 0644]
app/install/calipso_mongo_access.conf.example [new file with mode: 0644]
app/install/db/attributes_for_hover_on_data.json [new file with mode: 0644]
app/install/db/clique_constraints.json [new file with mode: 0644]
app/install/db/clique_types.json [new file with mode: 0644]
app/install/db/cliques.json [new file with mode: 0644]
app/install/db/constants.json [new file with mode: 0644]
app/install/db/environments_config.json [new file with mode: 0644]
app/install/db/inventory.json [new file with mode: 0644]
app/install/db/link_types.json [new file with mode: 0644]
app/install/db/links.json [new file with mode: 0644]
app/install/db/messages.json [new file with mode: 0644]
app/install/db/meteor_accounts_loginServiceConfiguration.json [new file with mode: 0644]
app/install/db/monitoring_config.json [new file with mode: 0644]
app/install/db/monitoring_config_templates.json [new file with mode: 0644]
app/install/db/network_agent_types.json [new file with mode: 0644]
app/install/db/roles.json [new file with mode: 0644]
app/install/db/scans.json [new file with mode: 0644]
app/install/db/scheduled_scans.json [new file with mode: 0644]
app/install/db/statistics.json [new file with mode: 0644]
app/install/db/supported_environments.json [new file with mode: 0644]
app/install/db/users.json [new file with mode: 0644]
app/install/ldap.conf.example [new file with mode: 0644]
app/messages/message.py [new file with mode: 0644]
app/monitoring/__init__.py [new file with mode: 0644]
app/monitoring/checks/binary_converter.py [new file with mode: 0644]
app/monitoring/checks/check_interface.py [new file with mode: 0755]
app/monitoring/checks/check_ping.py [new file with mode: 0755]
app/monitoring/checks/check_pnic_vpp.py [new file with mode: 0755]
app/monitoring/checks/check_vedge_ovs.py [new file with mode: 0755]
app/monitoring/checks/check_vedge_vpp.py [new file with mode: 0755]
app/monitoring/checks/check_vnic_vconnector.py [new file with mode: 0755]
app/monitoring/checks/check_vnic_vpp.py [new file with mode: 0755]
app/monitoring/checks/check_vservice.py [new file with mode: 0644]
app/monitoring/handlers/__init__.py [new file with mode: 0644]
app/monitoring/handlers/basic_check_handler.py [new file with mode: 0644]
app/monitoring/handlers/handle_link.py [new file with mode: 0644]
app/monitoring/handlers/handle_otep.py [new file with mode: 0644]
app/monitoring/handlers/handle_pnic.py [new file with mode: 0644]
app/monitoring/handlers/handle_pnic_vpp.py [new file with mode: 0644]
app/monitoring/handlers/handle_vnic_vpp.py [new file with mode: 0644]
app/monitoring/handlers/monitor.py [new file with mode: 0755]
app/monitoring/handlers/monitoring_check_handler.py [new file with mode: 0644]
app/monitoring/setup/__init__.py [new file with mode: 0644]
app/monitoring/setup/monitoring_check_handler.py [new file with mode: 0644]
app/monitoring/setup/monitoring_handler.py [new file with mode: 0644]
app/monitoring/setup/monitoring_host.py [new file with mode: 0644]
app/monitoring/setup/monitoring_link_vnic_vconnector.py [new file with mode: 0644]
app/monitoring/setup/monitoring_otep.py [new file with mode: 0644]
app/monitoring/setup/monitoring_pnic.py [new file with mode: 0644]
app/monitoring/setup/monitoring_setup_manager.py [new file with mode: 0644]
app/monitoring/setup/monitoring_simple_object.py [new file with mode: 0644]
app/monitoring/setup/monitoring_vedge.py [new file with mode: 0644]
app/monitoring/setup/monitoring_vnic.py [new file with mode: 0644]
app/monitoring/setup/monitoring_vservice.py [new file with mode: 0644]
app/statistics/stats_consumer.py [new file with mode: 0755]
app/test/__init__.py [new file with mode: 0644]
app/test/api/__init__.py [new file with mode: 0644]
app/test/api/responders_test/__init__.py [new file with mode: 0644]
app/test/api/responders_test/auth/__init__.py [new file with mode: 0644]
app/test/api/responders_test/auth/test_tokens.py [new file with mode: 0644]
app/test/api/responders_test/resource/__init__.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_aggregates.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_clique_constraints.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_clique_types.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_cliques.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_constants.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_environment_configs.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_inventory.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_links.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_messages.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_monitoring_config_templates.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_scans.py [new file with mode: 0644]
app/test/api/responders_test/resource/test_scheduled_scans.py [new file with mode: 0644]
app/test/api/responders_test/test_data/__init__.py [new file with mode: 0644]
app/test/api/responders_test/test_data/aggregates.py [new file with mode: 0644]
app/test/api/responders_test/test_data/base.py [new file with mode: 0644]
app/test/api/responders_test/test_data/clique_constraints.py [new file with mode: 0644]
app/test/api/responders_test/test_data/clique_types.py [new file with mode: 0644]
app/test/api/responders_test/test_data/cliques.py [new file with mode: 0644]
app/test/api/responders_test/test_data/constants.py [new file with mode: 0644]
app/test/api/responders_test/test_data/environment_configs.py [new file with mode: 0644]
app/test/api/responders_test/test_data/inventory.py [new file with mode: 0644]
app/test/api/responders_test/test_data/links.py [new file with mode: 0644]
app/test/api/responders_test/test_data/messages.py [new file with mode: 0644]
app/test/api/responders_test/test_data/monitoring_config_templates.py [new file with mode: 0644]
app/test/api/responders_test/test_data/scans.py [new file with mode: 0644]
app/test/api/responders_test/test_data/scheduled_scans.py [new file with mode: 0644]
app/test/api/responders_test/test_data/tokens.py [new file with mode: 0644]
app/test/api/test_base.py [new file with mode: 0644]
app/test/event_based_scan/__init__.py [new file with mode: 0644]
app/test/event_based_scan/config/__init__.py [new file with mode: 0644]
app/test/event_based_scan/config/test_config.py [new file with mode: 0644]
app/test/event_based_scan/test_data/__init__.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_instance_add.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_instance_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_instance_update.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_interface_add.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_interface_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_network_add.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_network_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_network_update.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_port_add.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_port_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_port_update.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_router_add.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_router_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_router_update.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_subnet_add.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_subnet_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_data/event_payload_subnet_update.py [new file with mode: 0644]
app/test/event_based_scan/test_event.py [new file with mode: 0644]
app/test/event_based_scan/test_event_delete_base.py [new file with mode: 0644]
app/test/event_based_scan/test_instance_add.py [new file with mode: 0644]
app/test/event_based_scan/test_instance_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_instance_update.py [new file with mode: 0644]
app/test/event_based_scan/test_interface_add.py [new file with mode: 0644]
app/test/event_based_scan/test_interface_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_network_add.py [new file with mode: 0644]
app/test/event_based_scan/test_network_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_network_update.py [new file with mode: 0644]
app/test/event_based_scan/test_port_add.py [new file with mode: 0644]
app/test/event_based_scan/test_port_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_port_update.py [new file with mode: 0644]
app/test/event_based_scan/test_router_add.py [new file with mode: 0644]
app/test/event_based_scan/test_router_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_router_update.py [new file with mode: 0644]
app/test/event_based_scan/test_subnet_add.py [new file with mode: 0644]
app/test/event_based_scan/test_subnet_delete.py [new file with mode: 0644]
app/test/event_based_scan/test_subnet_update.py [new file with mode: 0644]
app/test/fetch/__init__.py [new file with mode: 0644]
app/test/fetch/api_fetch/__init__.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_access.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_availability_zone.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_host_instances.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_networks.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_ports.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_project_hosts.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_projects.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_api_fetch_regions.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/__init__.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_access.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_availability_zones.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_host_instances.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_host_project_hosts.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_networks.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_ports.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_projects.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/api_fetch_regions.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/configurations.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/regions.py [new file with mode: 0644]
app/test/fetch/api_fetch/test_data/token.py [new file with mode: 0644]
app/test/fetch/cli_fetch/__init__.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_access.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_host_pnics.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_host_pnics_vpp.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_host_vservices.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_instance_vnics.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_instance_vnics_ovs.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_instance_vnics_vpp.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_vconnectors.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_vconnectors_ovs.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_vconnectors_vpp.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_cli_fetch_vservice_vnics.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/__init__.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_access.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_host_pnics.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_host_pnics_vpp.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_host_verservices.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_instance_vnics.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_vconnectors.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_vconnectors_ovs.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_vconnectors_vpp.py [new file with mode: 0644]
app/test/fetch/cli_fetch/test_data/cli_fetch_vservice_vnics.py [new file with mode: 0644]
app/test/fetch/config/__init__.py [new file with mode: 0644]
app/test/fetch/config/test_config.py [new file with mode: 0644]
app/test/fetch/db_fetch/__init__.py [new file with mode: 0644]
app/test/fetch/db_fetch/mock_cursor.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/__init__.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_access.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_aggregate_hosts.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_aggregates.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_host_network_agents.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_instances.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_oteps.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_vedges_ovs.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_data/db_fetch_vedges_vpp.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_access.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_fetch_aggregates.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_fetch_instances.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_fetch_oteps.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_fetch_vedges_ovs.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_db_fetch_vedges_vpp.py [new file with mode: 0644]
app/test/fetch/db_fetch/test_fetch_host_network_agents.py [new file with mode: 0644]
app/test/fetch/test_fetch.py [new file with mode: 0644]
app/test/scan/__init__.py [new file with mode: 0644]
app/test/scan/config/__init__.py [new file with mode: 0644]
app/test/scan/config/test_config.py [new file with mode: 0644]
app/test/scan/main.py [new file with mode: 0644]
app/test/scan/mock_module.py [new file with mode: 0644]
app/test/scan/test_data/__init__.py [new file with mode: 0644]
app/test/scan/test_data/configurations.py [new file with mode: 0644]
app/test/scan/test_data/metadata.py [new file with mode: 0644]
app/test/scan/test_data/scan.py [new file with mode: 0644]
app/test/scan/test_data/scanner.py [new file with mode: 0644]
app/test/scan/test_scan.py [new file with mode: 0644]
app/test/scan/test_scan_controller.py [new file with mode: 0644]
app/test/scan/test_scan_metadata_parser.py [new file with mode: 0644]
app/test/scan/test_scanner.py [new file with mode: 0644]
app/test/test_suite.py [new file with mode: 0644]
app/utils/__init__.py [new file with mode: 0644]
app/utils/binary_converter.py [new file with mode: 0644]
app/utils/config_file.py [new file with mode: 0644]
app/utils/constants.py [new file with mode: 0644]
app/utils/deep_merge.py [new file with mode: 0644]
app/utils/dict_naming_converter.py [new file with mode: 0644]
app/utils/exceptions.py [new file with mode: 0644]
app/utils/inventory_mgr.py [new file with mode: 0644]
app/utils/logging/__init__.py [new file with mode: 0644]
app/utils/logging/console_logger.py [new file with mode: 0644]
app/utils/logging/file_logger.py [new file with mode: 0644]
app/utils/logging/full_logger.py [new file with mode: 0644]
app/utils/logging/logger.py [new file with mode: 0644]
app/utils/logging/message_logger.py [new file with mode: 0644]
app/utils/logging/mongo_logging_handler.py [new file with mode: 0644]
app/utils/metadata_parser.py [new file with mode: 0644]
app/utils/mongo_access.py [new file with mode: 0644]
app/utils/singleton.py [new file with mode: 0644]
app/utils/special_char_converter.py [new file with mode: 0644]
app/utils/ssh_conn.py [new file with mode: 0644]
app/utils/ssh_connection.py [new file with mode: 0644]
app/utils/string_utils.py [new file with mode: 0644]
app/utils/util.py [new file with mode: 0644]