├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── pytest.yml │ └── stylish.yml ├── .gitignore ├── .packit.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.hyperv ├── README.md ├── conftest.py ├── pytest.ini ├── rel-eng ├── packages │ └── virt-who ├── releasers.conf └── tito.props ├── requirements-test.txt ├── requirements.txt ├── scripts └── container-pre-test.sh ├── setup.py ├── template-general.conf ├── template.conf ├── tests ├── base.py ├── complex │ ├── cert.pem │ ├── data │ │ └── esx │ │ │ ├── esx_cancelwaitforupdatesexresponse.xml │ │ │ ├── esx_createfilterresponse.xml │ │ │ ├── esx_destroypropertyfilterresponse.xml │ │ │ ├── esx_loginresponse.xml │ │ │ ├── esx_logoutresponse.xml │ │ │ ├── esx_retrieveservicecontent.xml │ │ │ ├── esx_waitforupdatesexresponse_0.xml │ │ │ └── esx_waitforupdatesexresponse_1.xml │ ├── fake_esx.py │ ├── fake_sam.py │ ├── fake_server.py │ ├── fake_virt.py │ ├── key.pem │ ├── test_esx_complex.py │ ├── virt-who-test │ └── virtwhotest.py ├── proxy.py ├── stubs.py ├── suds │ ├── external │ │ ├── __init__.py │ │ ├── axis1.py │ │ ├── axis2.py │ │ ├── jasper.py │ │ ├── public.py │ │ ├── rhq.py │ │ └── saxenc.py │ ├── profiling │ │ ├── __init__.py │ │ └── profile_sax_encoder.py │ ├── test_argument_parser.py │ ├── test_cache.py │ ├── test_client.py │ ├── test_compare_sax.py │ ├── test_date_time.py │ ├── test_dependency_sort.py │ ├── test_document_store.py │ ├── test_input_parameters.py │ ├── test_mx.py │ ├── test_plugin.py │ ├── test_reader.py │ ├── test_reply_handling.py │ ├── test_request_construction.py │ ├── test_sax_document.py │ ├── test_sax_element.py │ ├── test_sax_encoder.py │ ├── test_suds.py │ ├── test_timezone.py │ ├── test_transport.py │ ├── test_transport_http.py │ ├── test_wsse.py │ ├── test_xsd_builtins.py │ ├── test_xsd_element.py │ └── testutils │ │ ├── __init__.py │ │ ├── assertion.py │ │ ├── assertion__pytest_assert_rewrite_needed.py │ │ ├── compare_sax.py │ │ ├── compare_sax__pytest_assert_rewrite_needed.py │ │ └── indirect_parametrize.py ├── test_ahv.py ├── test_config.py ├── test_config_migrate.py ├── test_config_section.py ├── test_config_section_ahv.py ├── test_config_section_esx.py ├── test_config_section_global.py ├── test_config_section_hyperv.py ├── test_config_section_kubevirt.py ├── test_config_section_libvirtd.py ├── test_config_section_virt.py ├── test_datastore.py ├── test_effective_config.py ├── test_esx.py ├── test_fake.py ├── test_hyperv.py ├── test_kubevirt.py ├── test_libvirtd.py ├── test_log.py ├── test_manager.py ├── test_password.py ├── test_satellite.py ├── test_subscriptionmanager.py ├── test_util.py ├── test_version.py ├── test_virt.py ├── test_virt_intervalthread.py └── test_virtwho.py ├── virt-who ├── virt-who-config.5 ├── virt-who-password ├── virt-who-password.8 ├── virt-who-zsh ├── virt-who.8 ├── virt-who.service ├── virt-who.spec └── virtwho ├── __init__.py ├── __main__.py ├── config.py ├── datastore.py ├── executor.py ├── lock.py ├── log.py ├── main.py ├── manager ├── __init__.py ├── manager.py ├── satellite │ ├── __init__.py │ └── satellite.py └── subscriptionmanager │ ├── __init__.py │ └── subscriptionmanager.py ├── migrate ├── __init__.py └── migrateconfiguration.py ├── parser.py ├── password ├── __init__.py └── __main__.py ├── util.py ├── version.py └── virt ├── __init__.py ├── ahv ├── __init__.py ├── ahv.py └── ahv_interface.py ├── esx ├── __init__.py ├── create_minimal_vim.py ├── esx.py ├── suds │ ├── LICENSE.txt │ ├── __init__.py │ ├── argparser.py │ ├── bindings │ │ ├── __init__.py │ │ ├── binding.py │ │ ├── document.py │ │ ├── multiref.py │ │ └── rpc.py │ ├── builder.py │ ├── cache.py │ ├── client.py │ ├── metrics.py │ ├── mx │ │ ├── __init__.py │ │ ├── appender.py │ │ ├── basic.py │ │ ├── core.py │ │ ├── encoded.py │ │ ├── literal.py │ │ └── typer.py │ ├── options.py │ ├── plugin.py │ ├── properties.py │ ├── reader.py │ ├── resolver.py │ ├── sax │ │ ├── __init__.py │ │ ├── attribute.py │ │ ├── date.py │ │ ├── document.py │ │ ├── element.py │ │ ├── enc.py │ │ ├── parser.py │ │ └── text.py │ ├── servicedefinition.py │ ├── serviceproxy.py │ ├── soaparray.py │ ├── store.py │ ├── sudsobject.py │ ├── transport │ │ ├── __init__.py │ │ ├── http.py │ │ ├── https.py │ │ └── options.py │ ├── umx │ │ ├── __init__.py │ │ ├── attrlist.py │ │ ├── basic.py │ │ ├── core.py │ │ ├── encoded.py │ │ └── typed.py │ ├── version.py │ ├── wsdl.py │ ├── wsse.py │ └── xsd │ │ ├── __init__.py │ │ ├── depsort.py │ │ ├── doctor.py │ │ ├── query.py │ │ ├── schema.py │ │ ├── sxbase.py │ │ ├── sxbasic.py │ │ └── sxbuiltin.py └── vimServiceMinimal.wsdl ├── fakevirt ├── __init__.py └── fakevirt.py ├── hyperv ├── __init__.py └── hyperv.py ├── kubevirt ├── __init__.py ├── client.py ├── config.py └── kubevirt.py ├── libvirtd ├── __init__.py └── libvirtd.py └── virt.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.github/workflows/stylish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/.github/workflows/stylish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/.gitignore -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/.packit.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/Makefile -------------------------------------------------------------------------------- /README.hyperv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/README.hyperv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/conftest.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/pytest.ini -------------------------------------------------------------------------------- /rel-eng/packages/virt-who: -------------------------------------------------------------------------------- 1 | 1.32.1-1 ./ 2 | -------------------------------------------------------------------------------- /rel-eng/releasers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/rel-eng/releasers.conf -------------------------------------------------------------------------------- /rel-eng/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/rel-eng/tito.props -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.0 2 | cryptography 3 | PyYAML 4 | -------------------------------------------------------------------------------- /scripts/container-pre-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/scripts/container-pre-test.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/setup.py -------------------------------------------------------------------------------- /template-general.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/template-general.conf -------------------------------------------------------------------------------- /template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/template.conf -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/complex/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/cert.pem -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_cancelwaitforupdatesexresponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_cancelwaitforupdatesexresponse.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_createfilterresponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_createfilterresponse.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_destroypropertyfilterresponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_destroypropertyfilterresponse.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_loginresponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_loginresponse.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_logoutresponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_logoutresponse.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_retrieveservicecontent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_retrieveservicecontent.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_waitforupdatesexresponse_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_waitforupdatesexresponse_0.xml -------------------------------------------------------------------------------- /tests/complex/data/esx/esx_waitforupdatesexresponse_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/data/esx/esx_waitforupdatesexresponse_1.xml -------------------------------------------------------------------------------- /tests/complex/fake_esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/fake_esx.py -------------------------------------------------------------------------------- /tests/complex/fake_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/fake_sam.py -------------------------------------------------------------------------------- /tests/complex/fake_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/fake_server.py -------------------------------------------------------------------------------- /tests/complex/fake_virt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/fake_virt.py -------------------------------------------------------------------------------- /tests/complex/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/key.pem -------------------------------------------------------------------------------- /tests/complex/test_esx_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/test_esx_complex.py -------------------------------------------------------------------------------- /tests/complex/virt-who-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/virt-who-test -------------------------------------------------------------------------------- /tests/complex/virtwhotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/complex/virtwhotest.py -------------------------------------------------------------------------------- /tests/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/proxy.py -------------------------------------------------------------------------------- /tests/stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/stubs.py -------------------------------------------------------------------------------- /tests/suds/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/__init__.py -------------------------------------------------------------------------------- /tests/suds/external/axis1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/axis1.py -------------------------------------------------------------------------------- /tests/suds/external/axis2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/axis2.py -------------------------------------------------------------------------------- /tests/suds/external/jasper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/jasper.py -------------------------------------------------------------------------------- /tests/suds/external/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/public.py -------------------------------------------------------------------------------- /tests/suds/external/rhq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/rhq.py -------------------------------------------------------------------------------- /tests/suds/external/saxenc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/external/saxenc.py -------------------------------------------------------------------------------- /tests/suds/profiling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/profiling/__init__.py -------------------------------------------------------------------------------- /tests/suds/profiling/profile_sax_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/profiling/profile_sax_encoder.py -------------------------------------------------------------------------------- /tests/suds/test_argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_argument_parser.py -------------------------------------------------------------------------------- /tests/suds/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_cache.py -------------------------------------------------------------------------------- /tests/suds/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_client.py -------------------------------------------------------------------------------- /tests/suds/test_compare_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_compare_sax.py -------------------------------------------------------------------------------- /tests/suds/test_date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_date_time.py -------------------------------------------------------------------------------- /tests/suds/test_dependency_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_dependency_sort.py -------------------------------------------------------------------------------- /tests/suds/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_document_store.py -------------------------------------------------------------------------------- /tests/suds/test_input_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_input_parameters.py -------------------------------------------------------------------------------- /tests/suds/test_mx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_mx.py -------------------------------------------------------------------------------- /tests/suds/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_plugin.py -------------------------------------------------------------------------------- /tests/suds/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_reader.py -------------------------------------------------------------------------------- /tests/suds/test_reply_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_reply_handling.py -------------------------------------------------------------------------------- /tests/suds/test_request_construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_request_construction.py -------------------------------------------------------------------------------- /tests/suds/test_sax_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_sax_document.py -------------------------------------------------------------------------------- /tests/suds/test_sax_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_sax_element.py -------------------------------------------------------------------------------- /tests/suds/test_sax_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_sax_encoder.py -------------------------------------------------------------------------------- /tests/suds/test_suds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_suds.py -------------------------------------------------------------------------------- /tests/suds/test_timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_timezone.py -------------------------------------------------------------------------------- /tests/suds/test_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_transport.py -------------------------------------------------------------------------------- /tests/suds/test_transport_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_transport_http.py -------------------------------------------------------------------------------- /tests/suds/test_wsse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_wsse.py -------------------------------------------------------------------------------- /tests/suds/test_xsd_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_xsd_builtins.py -------------------------------------------------------------------------------- /tests/suds/test_xsd_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/test_xsd_element.py -------------------------------------------------------------------------------- /tests/suds/testutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/testutils/__init__.py -------------------------------------------------------------------------------- /tests/suds/testutils/assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/testutils/assertion.py -------------------------------------------------------------------------------- /tests/suds/testutils/assertion__pytest_assert_rewrite_needed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/testutils/assertion__pytest_assert_rewrite_needed.py -------------------------------------------------------------------------------- /tests/suds/testutils/compare_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/testutils/compare_sax.py -------------------------------------------------------------------------------- /tests/suds/testutils/compare_sax__pytest_assert_rewrite_needed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/testutils/compare_sax__pytest_assert_rewrite_needed.py -------------------------------------------------------------------------------- /tests/suds/testutils/indirect_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/suds/testutils/indirect_parametrize.py -------------------------------------------------------------------------------- /tests/test_ahv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_ahv.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_config_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_migrate.py -------------------------------------------------------------------------------- /tests/test_config_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section.py -------------------------------------------------------------------------------- /tests/test_config_section_ahv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_ahv.py -------------------------------------------------------------------------------- /tests/test_config_section_esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_esx.py -------------------------------------------------------------------------------- /tests/test_config_section_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_global.py -------------------------------------------------------------------------------- /tests/test_config_section_hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_hyperv.py -------------------------------------------------------------------------------- /tests/test_config_section_kubevirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_kubevirt.py -------------------------------------------------------------------------------- /tests/test_config_section_libvirtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_libvirtd.py -------------------------------------------------------------------------------- /tests/test_config_section_virt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_config_section_virt.py -------------------------------------------------------------------------------- /tests/test_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_datastore.py -------------------------------------------------------------------------------- /tests/test_effective_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_effective_config.py -------------------------------------------------------------------------------- /tests/test_esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_esx.py -------------------------------------------------------------------------------- /tests/test_fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_fake.py -------------------------------------------------------------------------------- /tests/test_hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_hyperv.py -------------------------------------------------------------------------------- /tests/test_kubevirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_kubevirt.py -------------------------------------------------------------------------------- /tests/test_libvirtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_libvirtd.py -------------------------------------------------------------------------------- /tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_log.py -------------------------------------------------------------------------------- /tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_manager.py -------------------------------------------------------------------------------- /tests/test_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_password.py -------------------------------------------------------------------------------- /tests/test_satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_satellite.py -------------------------------------------------------------------------------- /tests/test_subscriptionmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_subscriptionmanager.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/test_virt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_virt.py -------------------------------------------------------------------------------- /tests/test_virt_intervalthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_virt_intervalthread.py -------------------------------------------------------------------------------- /tests/test_virtwho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/tests/test_virtwho.py -------------------------------------------------------------------------------- /virt-who: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who -------------------------------------------------------------------------------- /virt-who-config.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who-config.5 -------------------------------------------------------------------------------- /virt-who-password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who-password -------------------------------------------------------------------------------- /virt-who-password.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who-password.8 -------------------------------------------------------------------------------- /virt-who-zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who-zsh -------------------------------------------------------------------------------- /virt-who.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who.8 -------------------------------------------------------------------------------- /virt-who.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who.service -------------------------------------------------------------------------------- /virt-who.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virt-who.spec -------------------------------------------------------------------------------- /virtwho/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/__init__.py -------------------------------------------------------------------------------- /virtwho/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/__main__.py -------------------------------------------------------------------------------- /virtwho/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/config.py -------------------------------------------------------------------------------- /virtwho/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/datastore.py -------------------------------------------------------------------------------- /virtwho/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/executor.py -------------------------------------------------------------------------------- /virtwho/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/lock.py -------------------------------------------------------------------------------- /virtwho/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/log.py -------------------------------------------------------------------------------- /virtwho/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/main.py -------------------------------------------------------------------------------- /virtwho/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/manager/__init__.py -------------------------------------------------------------------------------- /virtwho/manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/manager/manager.py -------------------------------------------------------------------------------- /virtwho/manager/satellite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/manager/satellite/__init__.py -------------------------------------------------------------------------------- /virtwho/manager/satellite/satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/manager/satellite/satellite.py -------------------------------------------------------------------------------- /virtwho/manager/subscriptionmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/manager/subscriptionmanager/__init__.py -------------------------------------------------------------------------------- /virtwho/manager/subscriptionmanager/subscriptionmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/manager/subscriptionmanager/subscriptionmanager.py -------------------------------------------------------------------------------- /virtwho/migrate/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | __all__ = [] 4 | -------------------------------------------------------------------------------- /virtwho/migrate/migrateconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/migrate/migrateconfiguration.py -------------------------------------------------------------------------------- /virtwho/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/parser.py -------------------------------------------------------------------------------- /virtwho/password/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/password/__init__.py -------------------------------------------------------------------------------- /virtwho/password/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/password/__main__.py -------------------------------------------------------------------------------- /virtwho/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/util.py -------------------------------------------------------------------------------- /virtwho/version.py: -------------------------------------------------------------------------------- 1 | # The values in this file are populated by setup.py build 2 | __version__ = 'RPM_VERSION' 3 | -------------------------------------------------------------------------------- /virtwho/virt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/ahv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/ahv/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/ahv/ahv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/ahv/ahv.py -------------------------------------------------------------------------------- /virtwho/virt/ahv/ahv_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/ahv/ahv_interface.py -------------------------------------------------------------------------------- /virtwho/virt/esx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/create_minimal_vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/create_minimal_vim.py -------------------------------------------------------------------------------- /virtwho/virt/esx/esx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/esx.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/LICENSE.txt -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/argparser.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/bindings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/bindings/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/bindings/binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/bindings/binding.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/bindings/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/bindings/document.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/bindings/multiref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/bindings/multiref.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/bindings/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/bindings/rpc.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/builder.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/cache.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/client.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/metrics.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/appender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/appender.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/basic.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/core.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/encoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/encoded.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/literal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/literal.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/mx/typer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/mx/typer.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/options.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/plugin.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/properties.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/reader.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/resolver.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/attribute.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/date.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/document.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/element.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/enc.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/parser.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sax/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sax/text.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/servicedefinition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/servicedefinition.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/serviceproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/serviceproxy.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/soaparray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/soaparray.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/store.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/sudsobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/sudsobject.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/transport/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/transport/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/transport/http.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/transport/https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/transport/https.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/transport/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/transport/options.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/umx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/umx/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/umx/attrlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/umx/attrlist.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/umx/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/umx/basic.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/umx/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/umx/core.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/umx/encoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/umx/encoded.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/umx/typed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/umx/typed.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/version.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/wsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/wsdl.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/wsse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/wsse.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/depsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/depsort.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/doctor.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/query.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/schema.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/sxbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/sxbase.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/sxbasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/sxbasic.py -------------------------------------------------------------------------------- /virtwho/virt/esx/suds/xsd/sxbuiltin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/suds/xsd/sxbuiltin.py -------------------------------------------------------------------------------- /virtwho/virt/esx/vimServiceMinimal.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/esx/vimServiceMinimal.wsdl -------------------------------------------------------------------------------- /virtwho/virt/fakevirt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/fakevirt/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/fakevirt/fakevirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/fakevirt/fakevirt.py -------------------------------------------------------------------------------- /virtwho/virt/hyperv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/hyperv/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/hyperv/hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/hyperv/hyperv.py -------------------------------------------------------------------------------- /virtwho/virt/kubevirt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/kubevirt/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/kubevirt/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/kubevirt/client.py -------------------------------------------------------------------------------- /virtwho/virt/kubevirt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/kubevirt/config.py -------------------------------------------------------------------------------- /virtwho/virt/kubevirt/kubevirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/kubevirt/kubevirt.py -------------------------------------------------------------------------------- /virtwho/virt/libvirtd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/libvirtd/__init__.py -------------------------------------------------------------------------------- /virtwho/virt/libvirtd/libvirtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/libvirtd/libvirtd.py -------------------------------------------------------------------------------- /virtwho/virt/virt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlepin/virt-who/HEAD/virtwho/virt/virt.py --------------------------------------------------------------------------------