├── .coveragerc ├── .github └── workflows │ ├── ci.yml │ ├── cla-check.yml │ └── stale-cron.yaml ├── LICENSE ├── Makefile ├── README ├── README.md ├── doc.yaml ├── doc ├── client │ ├── events.md │ ├── index.md │ ├── interfaces.md │ ├── networking.md │ ├── nodes.md │ └── other.md ├── development │ ├── adding-an-object.md │ └── releasing.md └── index.md ├── integrate ├── __init__.py ├── __main__.py └── test.py ├── maas ├── __init__.py └── client │ ├── __init__.py │ ├── bones │ ├── __init__.py │ ├── helpers.py │ ├── testing │ │ ├── __init__.py │ │ ├── api20.json │ │ ├── api20.raw.json │ │ ├── api21.json │ │ ├── api21.raw.json │ │ ├── api22.json │ │ ├── api22.raw.json │ │ ├── desc.py │ │ └── server.py │ └── tests │ │ ├── __init__.py │ │ ├── test.py │ │ └── test_helpers.py │ ├── enum.py │ ├── errors.py │ ├── facade.py │ ├── flesh │ ├── __init__.py │ ├── controllers.py │ ├── devices.py │ ├── fabrics.py │ ├── files.py │ ├── machines.py │ ├── nodes.py │ ├── profiles.py │ ├── shell.py │ ├── spaces.py │ ├── subnets.py │ ├── tables.py │ ├── tabular.py │ ├── tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── test.py │ │ ├── test_controllers.py │ │ ├── test_devices.py │ │ ├── test_machines.py │ │ ├── test_nodes.py │ │ ├── test_profiles.py │ │ ├── test_shell.py │ │ └── testing │ │ │ └── __init__.py │ ├── users.py │ └── vlans.py │ ├── testing │ └── __init__.py │ ├── tests │ ├── __init__.py │ ├── test.py │ └── test_facade.py │ ├── utils │ ├── __init__.py │ ├── auth.py │ ├── creds.py │ ├── diff.py │ ├── maas_async.py │ ├── multipart.py │ ├── profiles.py │ ├── testing │ │ └── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── test.py │ │ ├── test_async.py │ │ ├── test_auth.py │ │ ├── test_creds.py │ │ ├── test_diff.py │ │ ├── test_multipart.py │ │ └── test_profiles.py │ └── types.py │ └── viscera │ ├── __init__.py │ ├── account.py │ ├── bcache_cache_sets.py │ ├── bcaches.py │ ├── block_devices.py │ ├── boot_resources.py │ ├── boot_source_selections.py │ ├── boot_sources.py │ ├── controllers.py │ ├── devices.py │ ├── dnsresourcerecords.py │ ├── dnsresources.py │ ├── domains.py │ ├── events.py │ ├── fabrics.py │ ├── files.py │ ├── filesystem_groups.py │ ├── filesystems.py │ ├── interfaces.py │ ├── ip_addresses.py │ ├── ipranges.py │ ├── logical_volumes.py │ ├── maas.py │ ├── machines.py │ ├── nodes.py │ ├── partitions.py │ ├── pods.py │ ├── raids.py │ ├── resource_pools.py │ ├── spaces.py │ ├── sshkeys.py │ ├── static_routes.py │ ├── subnets.py │ ├── tags.py │ ├── testing │ └── __init__.py │ ├── tests │ ├── __init__.py │ ├── test.py │ ├── test_account.py │ ├── test_bcache_cache_sets.py │ ├── test_bcaches.py │ ├── test_block_devices.py │ ├── test_boot_resources.py │ ├── test_boot_source_selections.py │ ├── test_boot_sources.py │ ├── test_controllers.py │ ├── test_devices.py │ ├── test_dnsresourcerecords.py │ ├── test_dnsresources.py │ ├── test_domains.py │ ├── test_events.py │ ├── test_fabrics.py │ ├── test_files.py │ ├── test_interfaces.py │ ├── test_ip_addresses.py │ ├── test_ipranges.py │ ├── test_logical_volumes.py │ ├── test_maas.py │ ├── test_machines.py │ ├── test_nodes.py │ ├── test_pods.py │ ├── test_resource_pools.py │ ├── test_spaces.py │ ├── test_sshkeys.py │ ├── test_static_routes.py │ ├── test_subnets.py │ ├── test_tags.py │ ├── test_users.py │ ├── test_version.py │ ├── test_vlans.py │ └── test_zones.py │ ├── users.py │ ├── version.py │ ├── vlans.py │ ├── volume_groups.py │ └── zones.py ├── scripts ├── check-imports └── prettify-api-desc-doc ├── setup.py ├── snap └── snapcraft.yaml └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cla-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/.github/workflows/cla-check.yml -------------------------------------------------------------------------------- /.github/workflows/stale-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/.github/workflows/stale-cron.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc.yaml -------------------------------------------------------------------------------- /doc/client/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/client/events.md -------------------------------------------------------------------------------- /doc/client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/client/index.md -------------------------------------------------------------------------------- /doc/client/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/client/interfaces.md -------------------------------------------------------------------------------- /doc/client/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/client/networking.md -------------------------------------------------------------------------------- /doc/client/nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/client/nodes.md -------------------------------------------------------------------------------- /doc/client/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/client/other.md -------------------------------------------------------------------------------- /doc/development/adding-an-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/development/adding-an-object.md -------------------------------------------------------------------------------- /doc/development/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/development/releasing.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/doc/index.md -------------------------------------------------------------------------------- /integrate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrate/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/integrate/__main__.py -------------------------------------------------------------------------------- /integrate/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/integrate/test.py -------------------------------------------------------------------------------- /maas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/__init__.py -------------------------------------------------------------------------------- /maas/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/__init__.py -------------------------------------------------------------------------------- /maas/client/bones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/__init__.py -------------------------------------------------------------------------------- /maas/client/bones/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/helpers.py -------------------------------------------------------------------------------- /maas/client/bones/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/__init__.py -------------------------------------------------------------------------------- /maas/client/bones/testing/api20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/api20.json -------------------------------------------------------------------------------- /maas/client/bones/testing/api20.raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/api20.raw.json -------------------------------------------------------------------------------- /maas/client/bones/testing/api21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/api21.json -------------------------------------------------------------------------------- /maas/client/bones/testing/api21.raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/api21.raw.json -------------------------------------------------------------------------------- /maas/client/bones/testing/api22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/api22.json -------------------------------------------------------------------------------- /maas/client/bones/testing/api22.raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/api22.raw.json -------------------------------------------------------------------------------- /maas/client/bones/testing/desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/desc.py -------------------------------------------------------------------------------- /maas/client/bones/testing/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/testing/server.py -------------------------------------------------------------------------------- /maas/client/bones/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maas/client/bones/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/tests/test.py -------------------------------------------------------------------------------- /maas/client/bones/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/bones/tests/test_helpers.py -------------------------------------------------------------------------------- /maas/client/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/enum.py -------------------------------------------------------------------------------- /maas/client/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/errors.py -------------------------------------------------------------------------------- /maas/client/facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/facade.py -------------------------------------------------------------------------------- /maas/client/flesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/__init__.py -------------------------------------------------------------------------------- /maas/client/flesh/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/controllers.py -------------------------------------------------------------------------------- /maas/client/flesh/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/devices.py -------------------------------------------------------------------------------- /maas/client/flesh/fabrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/fabrics.py -------------------------------------------------------------------------------- /maas/client/flesh/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/files.py -------------------------------------------------------------------------------- /maas/client/flesh/machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/machines.py -------------------------------------------------------------------------------- /maas/client/flesh/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/nodes.py -------------------------------------------------------------------------------- /maas/client/flesh/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/profiles.py -------------------------------------------------------------------------------- /maas/client/flesh/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/shell.py -------------------------------------------------------------------------------- /maas/client/flesh/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/spaces.py -------------------------------------------------------------------------------- /maas/client/flesh/subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/subnets.py -------------------------------------------------------------------------------- /maas/client/flesh/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tables.py -------------------------------------------------------------------------------- /maas/client/flesh/tabular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tabular.py -------------------------------------------------------------------------------- /maas/client/flesh/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tags.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maas/client/flesh/tests/test.py: -------------------------------------------------------------------------------- 1 | """Tests for `maas.client.flesh`.""" 2 | 3 | __all__ = [] 4 | -------------------------------------------------------------------------------- /maas/client/flesh/tests/test_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/test_controllers.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/test_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/test_devices.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/test_machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/test_machines.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/test_nodes.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/test_profiles.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/test_shell.py -------------------------------------------------------------------------------- /maas/client/flesh/tests/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/tests/testing/__init__.py -------------------------------------------------------------------------------- /maas/client/flesh/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/users.py -------------------------------------------------------------------------------- /maas/client/flesh/vlans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/flesh/vlans.py -------------------------------------------------------------------------------- /maas/client/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/testing/__init__.py -------------------------------------------------------------------------------- /maas/client/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maas/client/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/tests/test.py -------------------------------------------------------------------------------- /maas/client/tests/test_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/tests/test_facade.py -------------------------------------------------------------------------------- /maas/client/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/__init__.py -------------------------------------------------------------------------------- /maas/client/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/auth.py -------------------------------------------------------------------------------- /maas/client/utils/creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/creds.py -------------------------------------------------------------------------------- /maas/client/utils/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/diff.py -------------------------------------------------------------------------------- /maas/client/utils/maas_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/maas_async.py -------------------------------------------------------------------------------- /maas/client/utils/multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/multipart.py -------------------------------------------------------------------------------- /maas/client/utils/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/profiles.py -------------------------------------------------------------------------------- /maas/client/utils/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/testing/__init__.py -------------------------------------------------------------------------------- /maas/client/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maas/client/utils/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test.py -------------------------------------------------------------------------------- /maas/client/utils/tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test_async.py -------------------------------------------------------------------------------- /maas/client/utils/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test_auth.py -------------------------------------------------------------------------------- /maas/client/utils/tests/test_creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test_creds.py -------------------------------------------------------------------------------- /maas/client/utils/tests/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test_diff.py -------------------------------------------------------------------------------- /maas/client/utils/tests/test_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test_multipart.py -------------------------------------------------------------------------------- /maas/client/utils/tests/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/tests/test_profiles.py -------------------------------------------------------------------------------- /maas/client/utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/utils/types.py -------------------------------------------------------------------------------- /maas/client/viscera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/__init__.py -------------------------------------------------------------------------------- /maas/client/viscera/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/account.py -------------------------------------------------------------------------------- /maas/client/viscera/bcache_cache_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/bcache_cache_sets.py -------------------------------------------------------------------------------- /maas/client/viscera/bcaches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/bcaches.py -------------------------------------------------------------------------------- /maas/client/viscera/block_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/block_devices.py -------------------------------------------------------------------------------- /maas/client/viscera/boot_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/boot_resources.py -------------------------------------------------------------------------------- /maas/client/viscera/boot_source_selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/boot_source_selections.py -------------------------------------------------------------------------------- /maas/client/viscera/boot_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/boot_sources.py -------------------------------------------------------------------------------- /maas/client/viscera/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/controllers.py -------------------------------------------------------------------------------- /maas/client/viscera/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/devices.py -------------------------------------------------------------------------------- /maas/client/viscera/dnsresourcerecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/dnsresourcerecords.py -------------------------------------------------------------------------------- /maas/client/viscera/dnsresources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/dnsresources.py -------------------------------------------------------------------------------- /maas/client/viscera/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/domains.py -------------------------------------------------------------------------------- /maas/client/viscera/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/events.py -------------------------------------------------------------------------------- /maas/client/viscera/fabrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/fabrics.py -------------------------------------------------------------------------------- /maas/client/viscera/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/files.py -------------------------------------------------------------------------------- /maas/client/viscera/filesystem_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/filesystem_groups.py -------------------------------------------------------------------------------- /maas/client/viscera/filesystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/filesystems.py -------------------------------------------------------------------------------- /maas/client/viscera/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/interfaces.py -------------------------------------------------------------------------------- /maas/client/viscera/ip_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/ip_addresses.py -------------------------------------------------------------------------------- /maas/client/viscera/ipranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/ipranges.py -------------------------------------------------------------------------------- /maas/client/viscera/logical_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/logical_volumes.py -------------------------------------------------------------------------------- /maas/client/viscera/maas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/maas.py -------------------------------------------------------------------------------- /maas/client/viscera/machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/machines.py -------------------------------------------------------------------------------- /maas/client/viscera/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/nodes.py -------------------------------------------------------------------------------- /maas/client/viscera/partitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/partitions.py -------------------------------------------------------------------------------- /maas/client/viscera/pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/pods.py -------------------------------------------------------------------------------- /maas/client/viscera/raids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/raids.py -------------------------------------------------------------------------------- /maas/client/viscera/resource_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/resource_pools.py -------------------------------------------------------------------------------- /maas/client/viscera/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/spaces.py -------------------------------------------------------------------------------- /maas/client/viscera/sshkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/sshkeys.py -------------------------------------------------------------------------------- /maas/client/viscera/static_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/static_routes.py -------------------------------------------------------------------------------- /maas/client/viscera/subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/subnets.py -------------------------------------------------------------------------------- /maas/client/viscera/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tags.py -------------------------------------------------------------------------------- /maas/client/viscera/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/testing/__init__.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maas/client/viscera/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_account.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_bcache_cache_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_bcache_cache_sets.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_bcaches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_bcaches.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_block_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_block_devices.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_boot_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_boot_resources.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_boot_source_selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_boot_source_selections.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_boot_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_boot_sources.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_controllers.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_devices.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_dnsresourcerecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_dnsresourcerecords.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_dnsresources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_dnsresources.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_domains.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_events.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_fabrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_fabrics.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_files.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_interfaces.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_ip_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_ip_addresses.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_ipranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_ipranges.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_logical_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_logical_volumes.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_maas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_maas.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_machines.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_nodes.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_pods.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_resource_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_resource_pools.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_spaces.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_sshkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_sshkeys.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_static_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_static_routes.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_subnets.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_tags.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_users.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_version.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_vlans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_vlans.py -------------------------------------------------------------------------------- /maas/client/viscera/tests/test_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/tests/test_zones.py -------------------------------------------------------------------------------- /maas/client/viscera/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/users.py -------------------------------------------------------------------------------- /maas/client/viscera/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/version.py -------------------------------------------------------------------------------- /maas/client/viscera/vlans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/vlans.py -------------------------------------------------------------------------------- /maas/client/viscera/volume_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/volume_groups.py -------------------------------------------------------------------------------- /maas/client/viscera/zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/maas/client/viscera/zones.py -------------------------------------------------------------------------------- /scripts/check-imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/scripts/check-imports -------------------------------------------------------------------------------- /scripts/prettify-api-desc-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/scripts/prettify-api-desc-doc -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/setup.py -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/python-libmaas/HEAD/tox.ini --------------------------------------------------------------------------------