├── .github ├── release.yml └── workflows │ ├── pr.yaml │ ├── python-client-gen.yml │ └── release.yml ├── .gitignore ├── .markdownlint.yml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .vscode └── extensions.json ├── ADR.md ├── CONTRIBUTING.md ├── DO_OPENAPI_COMMIT_SHA.txt ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── client_gen_config.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── index.rst │ ├── modules.rst │ ├── pydo.aio.operations.rst │ ├── pydo.aio.rst │ ├── pydo.operations.rst │ └── pydo.rst ├── examples ├── customize_client_settings │ ├── add_http_logger.py │ ├── custom_endpoint.py │ ├── custom_request_timeout.py │ └── custom_user_agent.py └── poc_droplets_volumes_sshkeys.py ├── package.json ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── scripts ├── bumpversion.sh ├── openapi_changelist.sh ├── pr_body.md_tmpl └── tag.sh ├── src └── pydo │ ├── __init__.py │ ├── _client.py │ ├── _configuration.py │ ├── _patch.py │ ├── _serialization.py │ ├── _version.py │ ├── aio │ ├── __init__.py │ ├── _client.py │ ├── _configuration.py │ ├── _patch.py │ └── operations │ │ ├── __init__.py │ │ ├── _operations.py │ │ └── _patch.py │ ├── custom_policies.py │ ├── exceptions.py │ ├── operations │ ├── __init__.py │ ├── _operations.py │ └── _patch.py │ └── py.typed └── tests ├── __init__.py ├── integration ├── __init__.py ├── conftest.py ├── defaults.py ├── shared.py ├── test_actions.py ├── test_app.py ├── test_app_deployment.py ├── test_billing.py ├── test_block_storage.py ├── test_cdn.py ├── test_container_registry.py ├── test_databases.py ├── test_domains.py ├── test_droplets.py ├── test_firewalls.py ├── test_images.py ├── test_kubernetes.py ├── test_load_balancers.py ├── test_monitoring.py ├── test_one_clicks.py ├── test_projects.py ├── test_regions.py ├── test_reserved_ips.py ├── test_sizes.py ├── test_snapshots.py ├── test_ssh_keys.py ├── test_tags.py └── test_vpcs.py └── mocked ├── __init__.py ├── conftest.py ├── data └── kubernetes_data.py ├── test_account.py ├── test_actions.py ├── test_app.py ├── test_app_deployment.py ├── test_billing.py ├── test_block_storage.py ├── test_cdn.py ├── test_certificates.py ├── test_client_customizations.py ├── test_container_registry.py ├── test_databases.py ├── test_domains.py ├── test_droplets.py ├── test_firewalls.py ├── test_functions.py ├── test_image_actions.py ├── test_images.py ├── test_kubernetes.py ├── test_load_balancers.py ├── test_monitoring.py ├── test_one_click.py ├── test_project.py ├── test_regions.py ├── test_reserved_ips.py ├── test_sizes.py ├── test_snapshots.py ├── test_ssh_keys.py ├── test_tags.py ├── test_uptime.py └── test_vpcs.py /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/python-client-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.github/workflows/python-client-gen.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /ADR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/ADR.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DO_OPENAPI_COMMIT_SHA.txt: -------------------------------------------------------------------------------- 1 | 6f71ecc 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/README.md -------------------------------------------------------------------------------- /client_gen_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/client_gen_config.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/pydo.aio.operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/pydo.aio.operations.rst -------------------------------------------------------------------------------- /docs/source/pydo.aio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/pydo.aio.rst -------------------------------------------------------------------------------- /docs/source/pydo.operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/pydo.operations.rst -------------------------------------------------------------------------------- /docs/source/pydo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/docs/source/pydo.rst -------------------------------------------------------------------------------- /examples/customize_client_settings/add_http_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/examples/customize_client_settings/add_http_logger.py -------------------------------------------------------------------------------- /examples/customize_client_settings/custom_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/examples/customize_client_settings/custom_endpoint.py -------------------------------------------------------------------------------- /examples/customize_client_settings/custom_request_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/examples/customize_client_settings/custom_request_timeout.py -------------------------------------------------------------------------------- /examples/customize_client_settings/custom_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/examples/customize_client_settings/custom_user_agent.py -------------------------------------------------------------------------------- /examples/poc_droplets_volumes_sshkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/examples/poc_droplets_volumes_sshkeys.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/bumpversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/scripts/bumpversion.sh -------------------------------------------------------------------------------- /scripts/openapi_changelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/scripts/openapi_changelist.sh -------------------------------------------------------------------------------- /scripts/pr_body.md_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/scripts/pr_body.md_tmpl -------------------------------------------------------------------------------- /scripts/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/scripts/tag.sh -------------------------------------------------------------------------------- /src/pydo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/__init__.py -------------------------------------------------------------------------------- /src/pydo/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/_client.py -------------------------------------------------------------------------------- /src/pydo/_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/_configuration.py -------------------------------------------------------------------------------- /src/pydo/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/_patch.py -------------------------------------------------------------------------------- /src/pydo/_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/_serialization.py -------------------------------------------------------------------------------- /src/pydo/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/_version.py -------------------------------------------------------------------------------- /src/pydo/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/__init__.py -------------------------------------------------------------------------------- /src/pydo/aio/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/_client.py -------------------------------------------------------------------------------- /src/pydo/aio/_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/_configuration.py -------------------------------------------------------------------------------- /src/pydo/aio/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/_patch.py -------------------------------------------------------------------------------- /src/pydo/aio/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/operations/__init__.py -------------------------------------------------------------------------------- /src/pydo/aio/operations/_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/operations/_operations.py -------------------------------------------------------------------------------- /src/pydo/aio/operations/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/aio/operations/_patch.py -------------------------------------------------------------------------------- /src/pydo/custom_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/custom_policies.py -------------------------------------------------------------------------------- /src/pydo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/exceptions.py -------------------------------------------------------------------------------- /src/pydo/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/operations/__init__.py -------------------------------------------------------------------------------- /src/pydo/operations/_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/operations/_operations.py -------------------------------------------------------------------------------- /src/pydo/operations/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/src/pydo/operations/_patch.py -------------------------------------------------------------------------------- /src/pydo/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/defaults.py -------------------------------------------------------------------------------- /tests/integration/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/shared.py -------------------------------------------------------------------------------- /tests/integration/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_actions.py -------------------------------------------------------------------------------- /tests/integration/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_app.py -------------------------------------------------------------------------------- /tests/integration/test_app_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_app_deployment.py -------------------------------------------------------------------------------- /tests/integration/test_billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_billing.py -------------------------------------------------------------------------------- /tests/integration/test_block_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_block_storage.py -------------------------------------------------------------------------------- /tests/integration/test_cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_cdn.py -------------------------------------------------------------------------------- /tests/integration/test_container_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_container_registry.py -------------------------------------------------------------------------------- /tests/integration/test_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_databases.py -------------------------------------------------------------------------------- /tests/integration/test_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_domains.py -------------------------------------------------------------------------------- /tests/integration/test_droplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_droplets.py -------------------------------------------------------------------------------- /tests/integration/test_firewalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_firewalls.py -------------------------------------------------------------------------------- /tests/integration/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_images.py -------------------------------------------------------------------------------- /tests/integration/test_kubernetes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_kubernetes.py -------------------------------------------------------------------------------- /tests/integration/test_load_balancers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_load_balancers.py -------------------------------------------------------------------------------- /tests/integration/test_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_monitoring.py -------------------------------------------------------------------------------- /tests/integration/test_one_clicks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_one_clicks.py -------------------------------------------------------------------------------- /tests/integration/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_projects.py -------------------------------------------------------------------------------- /tests/integration/test_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_regions.py -------------------------------------------------------------------------------- /tests/integration/test_reserved_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_reserved_ips.py -------------------------------------------------------------------------------- /tests/integration/test_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_sizes.py -------------------------------------------------------------------------------- /tests/integration/test_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_snapshots.py -------------------------------------------------------------------------------- /tests/integration/test_ssh_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_ssh_keys.py -------------------------------------------------------------------------------- /tests/integration/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_tags.py -------------------------------------------------------------------------------- /tests/integration/test_vpcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/integration/test_vpcs.py -------------------------------------------------------------------------------- /tests/mocked/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocked/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/conftest.py -------------------------------------------------------------------------------- /tests/mocked/data/kubernetes_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/data/kubernetes_data.py -------------------------------------------------------------------------------- /tests/mocked/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_account.py -------------------------------------------------------------------------------- /tests/mocked/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_actions.py -------------------------------------------------------------------------------- /tests/mocked/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_app.py -------------------------------------------------------------------------------- /tests/mocked/test_app_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_app_deployment.py -------------------------------------------------------------------------------- /tests/mocked/test_billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_billing.py -------------------------------------------------------------------------------- /tests/mocked/test_block_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_block_storage.py -------------------------------------------------------------------------------- /tests/mocked/test_cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_cdn.py -------------------------------------------------------------------------------- /tests/mocked/test_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_certificates.py -------------------------------------------------------------------------------- /tests/mocked/test_client_customizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_client_customizations.py -------------------------------------------------------------------------------- /tests/mocked/test_container_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_container_registry.py -------------------------------------------------------------------------------- /tests/mocked/test_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_databases.py -------------------------------------------------------------------------------- /tests/mocked/test_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_domains.py -------------------------------------------------------------------------------- /tests/mocked/test_droplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_droplets.py -------------------------------------------------------------------------------- /tests/mocked/test_firewalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_firewalls.py -------------------------------------------------------------------------------- /tests/mocked/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_functions.py -------------------------------------------------------------------------------- /tests/mocked/test_image_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_image_actions.py -------------------------------------------------------------------------------- /tests/mocked/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_images.py -------------------------------------------------------------------------------- /tests/mocked/test_kubernetes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_kubernetes.py -------------------------------------------------------------------------------- /tests/mocked/test_load_balancers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_load_balancers.py -------------------------------------------------------------------------------- /tests/mocked/test_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_monitoring.py -------------------------------------------------------------------------------- /tests/mocked/test_one_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_one_click.py -------------------------------------------------------------------------------- /tests/mocked/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_project.py -------------------------------------------------------------------------------- /tests/mocked/test_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_regions.py -------------------------------------------------------------------------------- /tests/mocked/test_reserved_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_reserved_ips.py -------------------------------------------------------------------------------- /tests/mocked/test_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_sizes.py -------------------------------------------------------------------------------- /tests/mocked/test_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_snapshots.py -------------------------------------------------------------------------------- /tests/mocked/test_ssh_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_ssh_keys.py -------------------------------------------------------------------------------- /tests/mocked/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_tags.py -------------------------------------------------------------------------------- /tests/mocked/test_uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_uptime.py -------------------------------------------------------------------------------- /tests/mocked/test_vpcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/pydo/HEAD/tests/mocked/test_vpcs.py --------------------------------------------------------------------------------