├── .gitignore
├── Automation
├── .gitignore
├── TemplateStrings
│ ├── am.yaml
│ ├── ar.yaml
│ ├── az.yaml
│ ├── be.yaml
│ ├── bn.yaml
│ ├── bo.yaml
│ ├── de.yaml
│ ├── el.yaml
│ ├── en.yaml
│ ├── es.yaml
│ ├── fa.yaml
│ ├── fa_AF.yaml
│ ├── fi.yaml
│ ├── fr.yaml
│ ├── ha.yaml
│ ├── hi.yaml
│ ├── hr.yaml
│ ├── hu.yaml
│ ├── id.yaml
│ ├── it.yaml
│ ├── kk.yaml
│ ├── km.yaml
│ ├── ko.yaml
│ ├── ky.yaml
│ ├── my.yaml
│ ├── nb.yaml
│ ├── nl.yaml
│ ├── om.yaml
│ ├── pt_BR.yaml
│ ├── pt_PT.yaml
│ ├── ru.yaml
│ ├── sn.yaml
│ ├── sw.yaml
│ ├── tg.yaml
│ ├── th.yaml
│ ├── ti.yaml
│ ├── tk.yaml
│ ├── tr.yaml
│ ├── ug@Latn.yaml
│ ├── uk.yaml
│ ├── ur.yaml
│ ├── uz@Cyrl.yaml
│ ├── uz@Latn.yaml
│ ├── vi.yaml
│ ├── zh.yaml
│ └── zh_TW.yaml
├── Tools
│ ├── upx.exe
│ └── upx307w.zip
├── VPS247
│ ├── __init__.py
│ └── api.py
├── debian
│ ├── bookworm.source
│ ├── bullseye.source
│ ├── buster.source
│ ├── jessie.source
│ └── trixie.source
├── digitalocean_v1
│ ├── DigitalOceanAPI.py
│ └── __init__.py
├── digitalocean_v2
│ ├── .gitignore
│ ├── .travis.yml
│ ├── DESCRIPTION.rst
│ ├── Dockerfile
│ ├── LICENSE.txt
│ ├── README.md
│ ├── __init__.py
│ ├── digitalocean
│ │ ├── Account.py
│ │ ├── Action.py
│ │ ├── Certificate.py
│ │ ├── Domain.py
│ │ ├── Droplet.py
│ │ ├── Firewall.py
│ │ ├── FloatingIP.py
│ │ ├── Image.py
│ │ ├── Kernel.py
│ │ ├── LoadBalancer.py
│ │ ├── Manager.py
│ │ ├── Metadata.py
│ │ ├── Record.py
│ │ ├── Region.py
│ │ ├── SSHKey.py
│ │ ├── Size.py
│ │ ├── Snapshot.py
│ │ ├── Tag.py
│ │ ├── Volume.py
│ │ ├── __init__.py
│ │ ├── baseapi.py
│ │ └── tests
│ │ │ ├── BaseTest.py
│ │ │ ├── __init__.py
│ │ │ ├── data
│ │ │ ├── account
│ │ │ │ └── account.json
│ │ │ ├── actions
│ │ │ │ ├── create_completed.json
│ │ │ │ ├── ipv6_completed.json
│ │ │ │ └── multi.json
│ │ │ ├── certificate
│ │ │ │ ├── custom.json
│ │ │ │ ├── lets_encrpyt.json
│ │ │ │ └── list.json
│ │ │ ├── domains
│ │ │ │ ├── all.json
│ │ │ │ ├── create.json
│ │ │ │ ├── create_caa_record.json
│ │ │ │ ├── create_record.json
│ │ │ │ ├── create_srv_record.json
│ │ │ │ ├── records.json
│ │ │ │ └── single.json
│ │ │ ├── droplet_actions
│ │ │ │ ├── change_kernel.json
│ │ │ │ ├── create.json
│ │ │ │ ├── create_multiple.json
│ │ │ │ ├── disable_backups.json
│ │ │ │ ├── enable_backups.json
│ │ │ │ ├── enable_ipv6.json
│ │ │ │ ├── enable_private_networking.json
│ │ │ │ ├── password_reset.json
│ │ │ │ ├── power_cycle.json
│ │ │ │ ├── power_off.json
│ │ │ │ ├── power_on.json
│ │ │ │ ├── reboot.json
│ │ │ │ ├── rebuild.json
│ │ │ │ ├── rename.json
│ │ │ │ ├── resize.json
│ │ │ │ ├── restore.json
│ │ │ │ ├── shutdown.json
│ │ │ │ └── snapshot.json
│ │ │ ├── droplets
│ │ │ │ ├── all.json
│ │ │ │ ├── bytag.json
│ │ │ │ └── single.json
│ │ │ ├── errors
│ │ │ │ └── unauthorized.json
│ │ │ ├── firewalls
│ │ │ │ ├── all.json
│ │ │ │ ├── bytag.json
│ │ │ │ ├── droplets.json
│ │ │ │ ├── single.json
│ │ │ │ └── tags.json
│ │ │ ├── floatingip
│ │ │ │ ├── assign.json
│ │ │ │ ├── list.json
│ │ │ │ ├── single.json
│ │ │ │ └── unassign.json
│ │ │ ├── images
│ │ │ │ ├── all.json
│ │ │ │ ├── app.json
│ │ │ │ ├── create.json
│ │ │ │ ├── distro.json
│ │ │ │ ├── private.json
│ │ │ │ ├── rename.json
│ │ │ │ ├── single.json
│ │ │ │ ├── slug.json
│ │ │ │ └── transfer.json
│ │ │ ├── kernels
│ │ │ │ ├── list.json
│ │ │ │ ├── page_one.json
│ │ │ │ └── page_two.json
│ │ │ ├── keys
│ │ │ │ ├── all.json
│ │ │ │ └── newly_posted.json
│ │ │ ├── loadbalancer
│ │ │ │ ├── all.json
│ │ │ │ ├── save.json
│ │ │ │ ├── single.json
│ │ │ │ └── single_tag.json
│ │ │ ├── regions
│ │ │ │ └── all.json
│ │ │ ├── sizes
│ │ │ │ └── all.json
│ │ │ ├── snapshots
│ │ │ │ ├── all.json
│ │ │ │ ├── droplets.json
│ │ │ │ ├── single.json
│ │ │ │ └── volumes.json
│ │ │ ├── tags
│ │ │ │ ├── all.json
│ │ │ │ ├── single.json
│ │ │ │ └── updatetag.json
│ │ │ └── volumes
│ │ │ │ ├── all.json
│ │ │ │ ├── attach.json
│ │ │ │ ├── detach.json
│ │ │ │ ├── resize.json
│ │ │ │ ├── single.json
│ │ │ │ ├── single_with_tags.json
│ │ │ │ ├── snapshot.json
│ │ │ │ └── snapshots.json
│ │ │ ├── test_action.py
│ │ │ ├── test_baseapi.py
│ │ │ ├── test_certificate.py
│ │ │ ├── test_domain.py
│ │ │ ├── test_droplet.py
│ │ │ ├── test_firewall.py
│ │ │ ├── test_floatingip.py
│ │ │ ├── test_image.py
│ │ │ ├── test_load_balancer.py
│ │ │ ├── test_manager.py
│ │ │ ├── test_snapshot.py
│ │ │ ├── test_tag.py
│ │ │ └── test_volume.py
│ ├── docs
│ │ ├── Makefile
│ │ ├── conf.py
│ │ ├── digitalocean.rst
│ │ └── index.rst
│ ├── requirements.txt
│ └── setup.py
├── host_reports
│ ├── README.md
│ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ └── main.css
│ ├── favicon.ico
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── host-graph.html
│ ├── img
│ │ └── spinner.gif
│ ├── index.html
│ ├── js
│ │ ├── main.js
│ │ ├── plugins.js
│ │ └── vendor
│ │ │ ├── bluebird.js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── dygraph-combined.js
│ │ │ ├── jquery-1.10.1.min.js
│ │ │ ├── jquery-2.1.0.min.js
│ │ │ ├── modernizr-2.6.2-respond-1.1.0.min.js
│ │ │ ├── regression.js
│ │ │ └── underscore.js
│ └── webserver.sh
├── keygenerator
├── keygenerator.exe
├── keygenerator.go
├── libcloud
│ ├── .asf.yaml
│ ├── .codecov.yml
│ ├── .dockerignore
│ ├── .editorconfig
│ ├── .flake8
│ ├── .github
│ │ ├── ISSUE_TEMPLATE
│ │ │ ├── bug_report.md
│ │ │ ├── feature_request.md
│ │ │ └── support_request.md
│ │ ├── PULL_REQUEST_TEMPLATE.md
│ │ ├── actions
│ │ │ ├── README.md
│ │ │ └── gh-action-pip-audit
│ │ │ │ ├── .github
│ │ │ │ ├── ISSUE_TEMPLATE
│ │ │ │ │ ├── bug_report.yml
│ │ │ │ │ ├── config.yml
│ │ │ │ │ └── feature_request.yml
│ │ │ │ └── workflows
│ │ │ │ │ ├── ci.yml
│ │ │ │ │ ├── selftest.yml
│ │ │ │ │ └── semgrep.yml
│ │ │ │ ├── .gitignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── action.py
│ │ │ │ ├── action.yml
│ │ │ │ ├── dev-requirements.txt
│ │ │ │ ├── requirements.txt
│ │ │ │ ├── setup
│ │ │ │ ├── setup.bash
│ │ │ │ └── venv.bash
│ │ │ │ ├── templates
│ │ │ │ └── pip-audit.md
│ │ │ │ └── test
│ │ │ │ ├── empty.txt
│ │ │ │ ├── pyproject
│ │ │ │ └── pyproject.toml
│ │ │ │ └── vulnerable.txt
│ │ ├── dependabot.yml
│ │ ├── stale.yml
│ │ └── workflows
│ │ │ ├── codeql-analysis.yml
│ │ │ ├── depsreview.yaml
│ │ │ ├── install_test.yml
│ │ │ ├── integration-tests.yml
│ │ │ ├── main.yml
│ │ │ ├── publish_dev_artifact.yml
│ │ │ └── publish_pricing_to_s3.yml
│ ├── .gitignore
│ ├── .ratignore
│ ├── .readthedocs.yml
│ ├── CHANGES.rst
│ ├── CONTRIBUTING.rst
│ ├── LICENSE
│ ├── MANIFEST.in
│ ├── NOTICE
│ ├── README.rst
│ ├── cacerts
│ │ └── ca-bundle.crt
│ ├── contrib
│ │ ├── Dockerfile
│ │ ├── __init__.py
│ │ ├── apply-patch.ps1
│ │ ├── generate_contributor_list.py
│ │ ├── generate_provider_feature_matrix_table.py
│ │ ├── generate_provider_logos_collage_image.py
│ │ ├── pre-commit.sh
│ │ ├── run_tests.sh
│ │ ├── scrape-azure-prices.py
│ │ ├── scrape-ec2-prices.py
│ │ ├── scrape-ec2-sizes.py
│ │ ├── scrape-gce-prices.py
│ │ ├── trigger_rtd_build.py
│ │ ├── update_google_prices.py
│ │ ├── update_vultr_fixtures.sh
│ │ ├── upload-pricing-data-to-s3.py
│ │ ├── utils.py
│ │ └── utils_test.py
│ ├── demos
│ │ ├── __init__.py
│ │ ├── compute_demo.py
│ │ ├── example_aliyun_ecs.py
│ │ ├── example_aliyun_oss.py
│ │ ├── example_aliyun_slb.py
│ │ ├── example_openstack.py
│ │ ├── gce_demo.py
│ │ └── secrets.py-dist
│ ├── dist
│ │ ├── deploy.sh
│ │ ├── hash.py
│ │ ├── release.sh
│ │ ├── sign.sh
│ │ └── verify_checksums.sh
│ ├── doap_libcloud.rdf
│ ├── docs
│ │ ├── .gitignore
│ │ ├── Makefile
│ │ ├── _static
│ │ │ ├── .gitignore
│ │ │ └── images
│ │ │ │ ├── libcloud_logo.png
│ │ │ │ ├── misc
│ │ │ │ ├── azure_blobs_manage_access_keys_1.png
│ │ │ │ ├── azure_blobs_manage_access_keys_2.png
│ │ │ │ ├── azure_upload_certificate_file.png
│ │ │ │ ├── gce
│ │ │ │ │ ├── create_service_account.png
│ │ │ │ │ ├── iam_and_roles.png
│ │ │ │ │ ├── new_project.png
│ │ │ │ │ ├── project_dashboard.png
│ │ │ │ │ └── view_service_accounts.png
│ │ │ │ └── hp_cloud_console_projects.jpg
│ │ │ │ ├── provider_logos
│ │ │ │ ├── NOTICE
│ │ │ │ ├── abiquo.png
│ │ │ │ ├── aws.png
│ │ │ │ ├── azure.jpg
│ │ │ │ ├── backblaze.png
│ │ │ │ ├── brightbox.png
│ │ │ │ ├── bsnl.png
│ │ │ │ ├── cloudflare.png
│ │ │ │ ├── cloudframes.png
│ │ │ │ ├── cloudscale.png
│ │ │ │ ├── cloudsigma.png
│ │ │ │ ├── cloudstack.png
│ │ │ │ ├── cloudwatt.png
│ │ │ │ ├── digitalocean.png
│ │ │ │ ├── dimensiondata.png
│ │ │ │ ├── dnsimple.png
│ │ │ │ ├── docker.png
│ │ │ │ ├── dreamhost.png
│ │ │ │ ├── elastichosts.png
│ │ │ │ ├── equinixmetal.png
│ │ │ │ ├── eucalyptus.png
│ │ │ │ ├── exoscale.png
│ │ │ │ ├── gandi.png
│ │ │ │ ├── gcp.png
│ │ │ │ ├── godaddy.png
│ │ │ │ ├── gogrid.png
│ │ │ │ ├── gridscale.png
│ │ │ │ ├── hpcloud.png
│ │ │ │ ├── ikoula.png
│ │ │ │ ├── indosat.png
│ │ │ │ ├── internetsolutions.png
│ │ │ │ ├── joyent.png
│ │ │ │ ├── kamatera.png
│ │ │ │ ├── ktucloud.png
│ │ │ │ ├── kubernetes.png
│ │ │ │ ├── libvirt.png
│ │ │ │ ├── linode.png
│ │ │ │ ├── maxihost.png
│ │ │ │ ├── med-one.png
│ │ │ │ ├── minio.png
│ │ │ │ ├── nephoscale.png
│ │ │ │ ├── nimbus.io.png
│ │ │ │ ├── ninefold.png
│ │ │ │ ├── ntt.png
│ │ │ │ ├── ntta.png
│ │ │ │ ├── onapp.png
│ │ │ │ ├── opennebula.png
│ │ │ │ ├── openstack.png
│ │ │ │ ├── opsource.png
│ │ │ │ ├── outscale.jpg
│ │ │ │ ├── ovh.png
│ │ │ │ ├── packet.png
│ │ │ │ ├── pcextreme.png
│ │ │ │ ├── pointdns.png
│ │ │ │ ├── profitbricks.png
│ │ │ │ ├── rackspace.png
│ │ │ │ ├── rancher.png
│ │ │ │ ├── rcodezero.png
│ │ │ │ ├── scaleway.png
│ │ │ │ ├── scaleway.svg
│ │ │ │ ├── softlayer.png
│ │ │ │ ├── terremark.png
│ │ │ │ ├── triton.png
│ │ │ │ ├── upcloud.png
│ │ │ │ ├── vcl.png
│ │ │ │ ├── vmware.png
│ │ │ │ ├── vmware_vsphere.png
│ │ │ │ ├── vpsnet.png
│ │ │ │ ├── vultr.png
│ │ │ │ ├── zerigo.png
│ │ │ │ └── zonomi.png
│ │ │ │ ├── pypi_files_page.png
│ │ │ │ └── supported_providers.png
│ │ ├── _templates
│ │ │ └── layout.html
│ │ ├── api_docs.rst
│ │ ├── backup
│ │ │ ├── _supported_methods.rst
│ │ │ ├── _supported_providers.rst
│ │ │ ├── api.rst
│ │ │ ├── drivers
│ │ │ │ ├── dimensiondata.rst
│ │ │ │ └── index.rst
│ │ │ ├── examples.rst
│ │ │ ├── index.rst
│ │ │ └── supported_providers.rst
│ │ ├── changelog.rst
│ │ ├── committer_guide.rst
│ │ ├── compute
│ │ │ ├── _supported_methods_block_storage.rst
│ │ │ ├── _supported_methods_image_management.rst
│ │ │ ├── _supported_methods_key_pair_management.rst
│ │ │ ├── _supported_methods_main.rst
│ │ │ ├── _supported_providers.rst
│ │ │ ├── api.rst
│ │ │ ├── deployment.rst
│ │ │ ├── drivers
│ │ │ │ ├── aliyun_ecs.rst
│ │ │ │ ├── auroracompute.rst
│ │ │ │ ├── azure.rst
│ │ │ │ ├── azure_arm.rst
│ │ │ │ ├── cloudframes.rst
│ │ │ │ ├── cloudscale.rst
│ │ │ │ ├── cloudsigma.rst
│ │ │ │ ├── cloudstack.rst
│ │ │ │ ├── digital_ocean.rst
│ │ │ │ ├── dimensiondata.rst
│ │ │ │ ├── ec2.rst
│ │ │ │ ├── equinixmetal.rst
│ │ │ │ ├── eucalyptust.rst
│ │ │ │ ├── exoscale.rst
│ │ │ │ ├── gandi.rst
│ │ │ │ ├── gce.rst
│ │ │ │ ├── gridscale.rst
│ │ │ │ ├── hpcloud.rst
│ │ │ │ ├── ibm_sce.rst
│ │ │ │ ├── ikoula.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── internetsolutions.rst
│ │ │ │ ├── kamatera.rst
│ │ │ │ ├── libvirt.rst
│ │ │ │ ├── maxihost.rst
│ │ │ │ ├── nimbus.rst
│ │ │ │ ├── ntta.rst
│ │ │ │ ├── nttcis.rst
│ │ │ │ ├── onapp.rst
│ │ │ │ ├── openstack.rst
│ │ │ │ ├── outscale.rst
│ │ │ │ ├── outscale_inc.rst
│ │ │ │ ├── outscale_sas.rst
│ │ │ │ ├── ovh.rst
│ │ │ │ ├── rackspace.rst
│ │ │ │ ├── scaleway.rst
│ │ │ │ ├── upcloud.rst
│ │ │ │ ├── vcloud.rst
│ │ │ │ ├── vsphere.rst
│ │ │ │ └── vultr.rst
│ │ │ ├── examples.rst
│ │ │ ├── index.rst
│ │ │ ├── key_pair_management.rst
│ │ │ ├── pricing.rst
│ │ │ └── supported_providers.rst
│ │ ├── conf.py
│ │ ├── container
│ │ │ ├── _supported_methods.rst
│ │ │ ├── _supported_providers.rst
│ │ │ ├── api.rst
│ │ │ ├── drivers
│ │ │ │ ├── docker.rst
│ │ │ │ ├── ecs.rst
│ │ │ │ ├── gke.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── kubernetes.rst
│ │ │ │ └── rancher.rst
│ │ │ ├── examples.rst
│ │ │ ├── index.rst
│ │ │ ├── supported_providers.rst
│ │ │ └── utilities.rst
│ │ ├── copyright.rst
│ │ ├── developer_information.rst
│ │ ├── development.rst
│ │ ├── dns
│ │ │ ├── _supported_methods.rst
│ │ │ ├── _supported_providers.rst
│ │ │ ├── api.rst
│ │ │ ├── drivers
│ │ │ │ ├── auroradns.rst
│ │ │ │ ├── buddyns.rst
│ │ │ │ ├── cloudflare.rst
│ │ │ │ ├── digital_ocean.rst
│ │ │ │ ├── dnsimple.rst
│ │ │ │ ├── durabledns.rst
│ │ │ │ ├── godaddy.rst
│ │ │ │ ├── google.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── liquidweb.rst
│ │ │ │ ├── luadns.rst
│ │ │ │ ├── nfsn.rst
│ │ │ │ ├── onapp.rst
│ │ │ │ ├── pointdns.rst
│ │ │ │ ├── powerdns.rst
│ │ │ │ ├── rcodezero.rst
│ │ │ │ ├── vultr.rst
│ │ │ │ ├── worldwidedns.rst
│ │ │ │ └── zonomi.rst
│ │ │ ├── examples.rst
│ │ │ ├── index.rst
│ │ │ └── supported_providers.rst
│ │ ├── examples
│ │ │ ├── __init__.py
│ │ │ ├── backup
│ │ │ │ ├── __init__.py
│ │ │ │ └── create_backup_from_node.py
│ │ │ ├── compute
│ │ │ │ ├── __init__.py
│ │ │ │ ├── auroracompute
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── create_node.py
│ │ │ │ │ ├── instantiate_driver.py
│ │ │ │ │ └── instantiate_driver_region.py
│ │ │ │ ├── azure
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate.py
│ │ │ │ ├── azure_arm
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate.py
│ │ │ │ ├── bootstrapping_puppet_on_node.py
│ │ │ │ ├── cloudframes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── auth_kwargs.py
│ │ │ │ │ ├── auth_url.py
│ │ │ │ │ └── functionality.py
│ │ │ │ ├── cloudscale
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── cloudscale_compute_simple.py
│ │ │ │ ├── cloudsigma
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── attach_firewall_policy.py
│ │ │ │ │ ├── check_avail_groups.py
│ │ │ │ │ ├── connect_to_api_1_0.py
│ │ │ │ │ ├── connect_to_api_2_0.py
│ │ │ │ │ ├── create_node_ex_avoid.py
│ │ │ │ │ ├── create_server_custom_size.py
│ │ │ │ │ ├── create_server_using_installation_cd.py
│ │ │ │ │ ├── create_server_with_metadata.py
│ │ │ │ │ ├── create_server_with_vlan.py
│ │ │ │ │ ├── create_vlan_subscription.py
│ │ │ │ │ ├── get_account_balance.py
│ │ │ │ │ ├── list_sizes_images_drives.py
│ │ │ │ │ ├── open_vnc_tunnel.py
│ │ │ │ │ └── tag_server.py
│ │ │ │ ├── cloudstack
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── create_cloudstack_node_keypair_secgroup.py
│ │ │ │ │ ├── create_node_advanced_zone.py
│ │ │ │ │ ├── deploy_node_with_keypair_security_group.py
│ │ │ │ │ ├── instantiate_driver_host_path.py
│ │ │ │ │ ├── instantiate_driver_insecure_port.py
│ │ │ │ │ ├── instantiate_driver_url.py
│ │ │ │ │ ├── port_forwarding_management.py
│ │ │ │ │ ├── security_groups_management.py
│ │ │ │ │ ├── ssh_keypairs_management_exoscale.py
│ │ │ │ │ ├── start_interactive_shell_exoscale.py
│ │ │ │ │ ├── start_interactive_shell_ikoula.py
│ │ │ │ │ └── turn_off_ssl_verification.py
│ │ │ │ ├── create_ec2_node.py
│ │ │ │ ├── create_ec2_node_and_associate_elastic_ip.py
│ │ │ │ ├── create_ec2_node_custom_ami.py
│ │ │ │ ├── create_ec2_node_iam.py
│ │ │ │ ├── create_ec2_node_keypair_and_to_secgroup.py
│ │ │ │ ├── create_ec2_node_manual_instantiation.py
│ │ │ │ ├── create_ibm_sce_windows_node.py
│ │ │ │ ├── create_key_pair.py
│ │ │ │ ├── create_node.py
│ │ │ │ ├── deployment_single_step_install_public_key.py
│ │ │ │ ├── digitalocean
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── create_api_v2.0.py
│ │ │ │ │ └── instantiate_api_v2.0.py
│ │ │ │ ├── dimensiondata
│ │ │ │ │ ├── Nodes_Create_mcp2_Uncustomised.py
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── ec2
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── create_general_purpose_ssd_volume.py
│ │ │ │ │ ├── create_provisioned_iops_volume.py
│ │ │ │ │ └── temporary_credentials.py
│ │ │ │ ├── ecs
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── ex_list_security_groups.py
│ │ │ │ │ ├── list_images.py
│ │ │ │ │ ├── list_locations.py
│ │ │ │ │ ├── list_sizes.py
│ │ │ │ │ ├── manage_nodes.py
│ │ │ │ │ └── manage_volumes_and_snapshots.py
│ │ │ │ ├── equinixmetal
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_api_v1.0.py
│ │ │ │ ├── example_compute.py
│ │ │ │ ├── gandi
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── create_node.py
│ │ │ │ ├── gce
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── deploy_node.py
│ │ │ │ │ ├── gce_datacenter.py
│ │ │ │ │ ├── gce_installed_application.py
│ │ │ │ │ ├── gce_internal_auth.py
│ │ │ │ │ ├── gce_service_account.py
│ │ │ │ │ ├── gce_service_account_infile.py
│ │ │ │ │ └── gce_service_account_scopes.py
│ │ │ │ ├── gridscale
│ │ │ │ │ ├── create_node.py
│ │ │ │ │ ├── deploy_node.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── import_key_pair_from_file.py
│ │ │ │ ├── import_key_pair_from_string.py
│ │ │ │ ├── internetsolutions
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── kamatera
│ │ │ │ │ ├── create_node.py
│ │ │ │ │ ├── instantiate_driver.py
│ │ │ │ │ └── node_operations.py
│ │ │ │ ├── libvirt
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── connect_qemu_kvm.py
│ │ │ │ │ └── connect_virtualbox.py
│ │ │ │ ├── list_nodes.py
│ │ │ │ ├── list_nodes_across_multiple_providers.py
│ │ │ │ ├── ntta
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── nttcis
│ │ │ │ │ ├── Firewall_Create_Complex_Firewall_Rule.py
│ │ │ │ │ ├── Firewall_Create_Simple_Rule.py
│ │ │ │ │ ├── Nodes_Create_mcp2_Customized.py
│ │ │ │ │ ├── Nodes_Create_mcp2_Uncustomised.py
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── onapp
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── functionality.py
│ │ │ │ ├── openstack
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── auth_cache.py
│ │ │ │ │ ├── cloud_init.py
│ │ │ │ │ ├── custom_service_catalog_selection_args.py
│ │ │ │ │ ├── force_auth_token.py
│ │ │ │ │ ├── force_base_url.py
│ │ │ │ │ ├── hpcloud.py
│ │ │ │ │ ├── hpcloud_native.py
│ │ │ │ │ ├── simple_auth.py
│ │ │ │ │ └── tenant_name.py
│ │ │ │ ├── openstack_floating_ips.py
│ │ │ │ ├── openstack_simple.py
│ │ │ │ ├── outscale
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── instantiate.py
│ │ │ │ │ └── list_nodes.py
│ │ │ │ ├── ovh
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── attach_volume.py
│ │ │ │ │ └── create_node.py
│ │ │ │ ├── pricing.py
│ │ │ │ ├── rackspace
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── instantiate_first_gen.py
│ │ │ │ │ ├── instantiate_next_gen.py
│ │ │ │ │ └── performance_flavors.py
│ │ │ │ ├── register_3rd_party_driver.py
│ │ │ │ ├── scaleway
│ │ │ │ │ ├── create_node.py
│ │ │ │ │ ├── list_nodes.py
│ │ │ │ │ └── list_volumes.py
│ │ │ │ ├── trystack.py
│ │ │ │ ├── vmware_vcloud_1.5.py
│ │ │ │ └── vultr
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── vultr_compute_simple.py
│ │ │ ├── container
│ │ │ │ ├── __init__.py
│ │ │ │ ├── docker
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── deploy_container.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── docker_hub.py
│ │ │ │ ├── ecs
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── container_registry.py
│ │ │ │ │ ├── deploy_container.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── gke
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── install_and_deploy.py
│ │ │ │ ├── joyent
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── kubernetes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── docker_hub.py
│ │ │ │ │ ├── instantiate_driver.py
│ │ │ │ │ ├── instantiate_driver_minikube_basic_auth.py
│ │ │ │ │ └── instantiate_driver_minikube_cert_auth.py
│ │ │ │ ├── lxd
│ │ │ │ │ └── example_lxd.py
│ │ │ │ ├── rancher
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── deploy_container.py
│ │ │ │ │ ├── deploy_service.py
│ │ │ │ │ ├── deploy_stack.py
│ │ │ │ │ ├── instantiate_driver.py
│ │ │ │ │ └── search_containers.py
│ │ │ │ └── working_with_clusters.py
│ │ │ ├── dns
│ │ │ │ ├── __init__.py
│ │ │ │ ├── auroradns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── enable_disable_record.py
│ │ │ │ │ ├── health_checks.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── buddyns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── cloudflare
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── instantiate_driver.py
│ │ │ │ │ └── instantiate_driver_token.py
│ │ │ │ ├── create_a_record_for_all_rackspace_nodes.py
│ │ │ │ ├── create_record_caa_record_type.py
│ │ │ │ ├── create_record_custom_ttl.py
│ │ │ │ ├── create_record_with_priority.py
│ │ │ │ ├── digitalocean
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── dnsimple
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── durabledns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── export_zone_to_bind_format.py
│ │ │ │ ├── export_zone_to_bind_format_file.py
│ │ │ │ ├── godaddy
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── adding_records.py
│ │ │ │ │ ├── instantiate_driver.py
│ │ │ │ │ ├── listing_records.py
│ │ │ │ │ ├── listing_zones.py
│ │ │ │ │ ├── pricing_domain.py
│ │ │ │ │ ├── purchasing_domain.py
│ │ │ │ │ └── updating_records.py
│ │ │ │ ├── google
│ │ │ │ │ ├── dns_installed_application.py
│ │ │ │ │ ├── dns_internal_auth.py
│ │ │ │ │ ├── dns_service_account.py
│ │ │ │ │ └── dns_service_account_infile.py
│ │ │ │ ├── liquidweb
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── list_zone_records.py
│ │ │ │ ├── list_zone_records_manual_instantiation.py
│ │ │ │ ├── luadns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── nfsn
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── onapp
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── pointdns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── powerdns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── rcodezero
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── vultr
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ ├── worldwidedns
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ │ └── zonomi
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── instantiate_driver.py
│ │ │ ├── http_proxy
│ │ │ │ ├── __init__.py
│ │ │ │ ├── constructor_argument.py
│ │ │ │ ├── https_proxy.py
│ │ │ │ └── set_http_proxy_method.py
│ │ │ ├── loadbalancer
│ │ │ │ ├── __init__.py
│ │ │ │ ├── create_lb_wait_for_ready.py
│ │ │ │ ├── elb
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── complete_tut.py
│ │ │ │ │ ├── create_lb_connection_for_aws.py
│ │ │ │ │ ├── create_lb_policy.py
│ │ │ │ │ ├── create_load_balancer.py
│ │ │ │ │ ├── ex_create_balancer_listeners.py
│ │ │ │ │ ├── ex_delete_balancer_policy.py
│ │ │ │ │ ├── ex_list_balancer_policies.py
│ │ │ │ │ ├── ex_list_balancer_policy_types.py
│ │ │ │ │ ├── ex_set_balancer_policies_backend_server.py
│ │ │ │ │ ├── ex_set_balancer_policies_listener.py
│ │ │ │ │ └── list_load_balancer.py
│ │ │ │ ├── gce
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── gce_authentication.py
│ │ │ │ │ ├── gce_driver.py
│ │ │ │ │ └── gce_service_account_infile.py
│ │ │ │ └── nttcis
│ │ │ │ │ ├── LoadBalancer_create_members.py
│ │ │ │ │ ├── Load_balancer_add_pool_mon.py
│ │ │ │ │ └── __init__.py
│ │ │ ├── misc
│ │ │ │ ├── __init__.py
│ │ │ │ └── twisted_create_node.py
│ │ │ └── storage
│ │ │ │ ├── __init__.py
│ │ │ │ ├── auroraobjects
│ │ │ │ ├── __init__.py
│ │ │ │ └── instantiate.py
│ │ │ │ ├── azure
│ │ │ │ ├── __init__.py
│ │ │ │ ├── instantiate.py
│ │ │ │ ├── instantiate_azure_ad.py
│ │ │ │ ├── instantiate_azurite.py
│ │ │ │ └── instantiate_gov.py
│ │ │ │ ├── backblaze_b2
│ │ │ │ ├── __init__.py
│ │ │ │ └── instantiate.py
│ │ │ │ ├── concurrent_file_download_using_gevent.py
│ │ │ │ ├── create_directory_backup_stream_to_cf.py
│ │ │ │ ├── digitalocean_spaces
│ │ │ │ ├── __init__.py
│ │ │ │ ├── instantiate.py
│ │ │ │ ├── upload_object_acls.py
│ │ │ │ └── v4sig.py
│ │ │ │ ├── minio
│ │ │ │ └── docker_example.py
│ │ │ │ ├── partial_object_download.py
│ │ │ │ ├── publish_static_website_on_cf.py
│ │ │ │ ├── s3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── multipart_large_file_upload.py
│ │ │ │ └── upload_object_acls.py
│ │ │ │ ├── scaleway
│ │ │ │ └── upload_example.py
│ │ │ │ ├── swift
│ │ │ │ ├── __init__.py
│ │ │ │ ├── connect_to_rackspace_cloudfiles.py
│ │ │ │ └── connect_to_swift.py
│ │ │ │ └── upload_with_metadata.py
│ │ ├── faq.rst
│ │ ├── getting_started.rst
│ │ ├── index.rst
│ │ ├── loadbalancer
│ │ │ ├── _supported_methods.rst
│ │ │ ├── _supported_providers.rst
│ │ │ ├── api.rst
│ │ │ ├── drivers
│ │ │ │ ├── dimensiondata.rst
│ │ │ │ ├── elb.rst
│ │ │ │ ├── gce.rst
│ │ │ │ ├── index.rst
│ │ │ │ └── nttcis.rst
│ │ │ ├── examples.rst
│ │ │ ├── index.rst
│ │ │ └── supported_providers.rst
│ │ ├── make.bat
│ │ ├── other
│ │ │ ├── changes_in_2_0.rst
│ │ │ ├── hacktoberfest.txt
│ │ │ ├── registering-a-third-party-driver.rst
│ │ │ ├── ssl-certificate-validation.rst
│ │ │ ├── using-http-proxy.rst
│ │ │ ├── using-libcloud-in-multithreaded-and-async-environments.rst
│ │ │ └── working-with-oo-apis.rst
│ │ ├── security.rst
│ │ ├── storage
│ │ │ ├── _supported_methods.rst
│ │ │ ├── _supported_methods_cdn.rst
│ │ │ ├── _supported_methods_main.rst
│ │ │ ├── _supported_providers.rst
│ │ │ ├── api.rst
│ │ │ ├── drivers
│ │ │ │ ├── auroraobjects.rst
│ │ │ │ ├── azure_blobs.rst
│ │ │ │ ├── backblaze_b2.rst
│ │ │ │ ├── digitalocean_spaces.rst
│ │ │ │ ├── google_storage.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── minio.rst
│ │ │ │ ├── openstack_swift.rst
│ │ │ │ ├── s3.rst
│ │ │ │ └── scaleway.rst
│ │ │ ├── examples.rst
│ │ │ ├── index.rst
│ │ │ └── supported_providers.rst
│ │ ├── supported_providers.rst
│ │ ├── supported_python_versions.rst
│ │ ├── testing.rst
│ │ ├── third_party_drivers.rst
│ │ ├── troubleshooting.rst
│ │ └── upgrade_notes.rst
│ ├── example_compute.py
│ ├── example_container.py
│ ├── example_dns.py
│ ├── example_loadbalancer.py
│ ├── example_storage.py
│ ├── integration
│ │ ├── __init__.py
│ │ ├── compute
│ │ │ ├── README.rst
│ │ │ ├── __init__.py
│ │ │ ├── __main__.py
│ │ │ ├── api
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── data.py
│ │ │ │ ├── routes.py
│ │ │ │ └── util.py
│ │ │ ├── config.py
│ │ │ ├── driver
│ │ │ │ ├── __init__.py
│ │ │ │ └── test.py
│ │ │ └── requirements.txt
│ │ └── storage
│ │ │ ├── README.rst
│ │ │ ├── __init__.py
│ │ │ ├── __main__.py
│ │ │ ├── base.py
│ │ │ ├── requirements.txt
│ │ │ ├── test_azure_blobs.py
│ │ │ ├── test_minio.py
│ │ │ └── test_s3.py
│ ├── libcloud
│ │ ├── __init__.py
│ │ ├── backup
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── drivers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── dimensiondata.py
│ │ │ │ ├── dummy.py
│ │ │ │ ├── ebs.py
│ │ │ │ └── gce.py
│ │ │ ├── providers.py
│ │ │ └── types.py
│ │ ├── base.py
│ │ ├── common
│ │ │ ├── __init__.py
│ │ │ ├── abiquo.py
│ │ │ ├── aliyun.py
│ │ │ ├── aws.py
│ │ │ ├── azure.py
│ │ │ ├── azure_arm.py
│ │ │ ├── base.py
│ │ │ ├── brightbox.py
│ │ │ ├── buddyns.py
│ │ │ ├── cloudsigma.py
│ │ │ ├── cloudstack.py
│ │ │ ├── digitalocean.py
│ │ │ ├── dimensiondata.py
│ │ │ ├── dnsimple.py
│ │ │ ├── dnspod.py
│ │ │ ├── durabledns.py
│ │ │ ├── exceptions.py
│ │ │ ├── gandi.py
│ │ │ ├── gandi_live.py
│ │ │ ├── gig_g8.py
│ │ │ ├── google.py
│ │ │ ├── gridscale.py
│ │ │ ├── kubernetes.py
│ │ │ ├── linode.py
│ │ │ ├── liquidweb.py
│ │ │ ├── luadns.py
│ │ │ ├── maxihost.py
│ │ │ ├── nfsn.py
│ │ │ ├── nsone.py
│ │ │ ├── nttcis.py
│ │ │ ├── onapp.py
│ │ │ ├── openstack.py
│ │ │ ├── openstack_identity.py
│ │ │ ├── osc.py
│ │ │ ├── ovh.py
│ │ │ ├── pointdns.py
│ │ │ ├── providers.py
│ │ │ ├── rackspace.py
│ │ │ ├── types.py
│ │ │ ├── upcloud.py
│ │ │ ├── vultr.py
│ │ │ ├── worldwidedns.py
│ │ │ ├── xmlrpc.py
│ │ │ └── zonomi.py
│ │ ├── compute
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── constants
│ │ │ │ ├── __init__.py
│ │ │ │ ├── ec2_instance_types.py
│ │ │ │ ├── ec2_region_details_complete.py
│ │ │ │ └── ec2_region_details_partial.py
│ │ │ ├── deployment.py
│ │ │ ├── deprecated.py
│ │ │ ├── drivers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── abiquo.py
│ │ │ │ ├── auroracompute.py
│ │ │ │ ├── azure.py
│ │ │ │ ├── azure_arm.py
│ │ │ │ ├── brightbox.py
│ │ │ │ ├── cloudscale.py
│ │ │ │ ├── cloudsigma.py
│ │ │ │ ├── cloudstack.py
│ │ │ │ ├── digitalocean.py
│ │ │ │ ├── dimensiondata.py
│ │ │ │ ├── dummy.py
│ │ │ │ ├── ec2.py
│ │ │ │ ├── ecs.py
│ │ │ │ ├── equinixmetal.py
│ │ │ │ ├── exoscale.py
│ │ │ │ ├── gandi.py
│ │ │ │ ├── gce.py
│ │ │ │ ├── gig_g8.py
│ │ │ │ ├── gridscale.py
│ │ │ │ ├── ikoula.py
│ │ │ │ ├── internetsolutions.py
│ │ │ │ ├── kamatera.py
│ │ │ │ ├── ktucloud.py
│ │ │ │ ├── kubevirt.py
│ │ │ │ ├── libvirt_driver.py
│ │ │ │ ├── linode.py
│ │ │ │ ├── maxihost.py
│ │ │ │ ├── ntta.py
│ │ │ │ ├── nttcis.py
│ │ │ │ ├── onapp.py
│ │ │ │ ├── opennebula.py
│ │ │ │ ├── openstack.py
│ │ │ │ ├── outscale.py
│ │ │ │ ├── ovh.py
│ │ │ │ ├── rackspace.py
│ │ │ │ ├── rimuhosting.py
│ │ │ │ ├── scaleway.py
│ │ │ │ ├── upcloud.py
│ │ │ │ ├── vcl.py
│ │ │ │ ├── vcloud.py
│ │ │ │ ├── vpsnet.py
│ │ │ │ ├── vsphere.py
│ │ │ │ └── vultr.py
│ │ │ ├── providers.py
│ │ │ ├── ssh.py
│ │ │ └── types.py
│ │ ├── container
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── drivers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── docker.py
│ │ │ │ ├── dummy.py
│ │ │ │ ├── ecs.py
│ │ │ │ ├── gke.py
│ │ │ │ ├── kubernetes.py
│ │ │ │ ├── lxd.py
│ │ │ │ └── rancher.py
│ │ │ ├── providers.py
│ │ │ ├── types.py
│ │ │ └── utils
│ │ │ │ ├── __init__.py
│ │ │ │ └── docker.py
│ │ ├── data
│ │ │ └── pricing.json
│ │ ├── dns
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── drivers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── auroradns.py
│ │ │ │ ├── buddyns.py
│ │ │ │ ├── cloudflare.py
│ │ │ │ ├── digitalocean.py
│ │ │ │ ├── dnsimple.py
│ │ │ │ ├── dnspod.py
│ │ │ │ ├── dummy.py
│ │ │ │ ├── durabledns.py
│ │ │ │ ├── gandi.py
│ │ │ │ ├── gandi_live.py
│ │ │ │ ├── godaddy.py
│ │ │ │ ├── google.py
│ │ │ │ ├── linode.py
│ │ │ │ ├── liquidweb.py
│ │ │ │ ├── luadns.py
│ │ │ │ ├── nfsn.py
│ │ │ │ ├── nsone.py
│ │ │ │ ├── onapp.py
│ │ │ │ ├── pointdns.py
│ │ │ │ ├── powerdns.py
│ │ │ │ ├── rackspace.py
│ │ │ │ ├── rcodezero.py
│ │ │ │ ├── route53.py
│ │ │ │ ├── vultr.py
│ │ │ │ ├── worldwidedns.py
│ │ │ │ ├── zerigo.py
│ │ │ │ └── zonomi.py
│ │ │ ├── providers.py
│ │ │ └── types.py
│ │ ├── http.py
│ │ ├── loadbalancer
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── drivers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── alb.py
│ │ │ │ ├── brightbox.py
│ │ │ │ ├── cloudstack.py
│ │ │ │ ├── dimensiondata.py
│ │ │ │ ├── elb.py
│ │ │ │ ├── gce.py
│ │ │ │ ├── ninefold.py
│ │ │ │ ├── nttcis.py
│ │ │ │ ├── rackspace.py
│ │ │ │ └── slb.py
│ │ │ ├── providers.py
│ │ │ └── types.py
│ │ ├── pricing.py
│ │ ├── py.typed
│ │ ├── security.py
│ │ ├── storage
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── drivers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── atmos.py
│ │ │ │ ├── auroraobjects.py
│ │ │ │ ├── azure_blobs.py
│ │ │ │ ├── backblaze_b2.py
│ │ │ │ ├── cloudfiles.py
│ │ │ │ ├── digitalocean_spaces.py
│ │ │ │ ├── dummy.py
│ │ │ │ ├── google_storage.py
│ │ │ │ ├── ktucloud.py
│ │ │ │ ├── local.py
│ │ │ │ ├── minio.py
│ │ │ │ ├── nimbus.py
│ │ │ │ ├── ninefold.py
│ │ │ │ ├── oss.py
│ │ │ │ ├── ovh.py
│ │ │ │ ├── rgw.py
│ │ │ │ ├── s3.py
│ │ │ │ └── scaleway.py
│ │ │ ├── providers.py
│ │ │ └── types.py
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── backup
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixtures
│ │ │ │ │ └── dimensiondata
│ │ │ │ │ │ ├── _backup_DISABLE.xml
│ │ │ │ │ │ ├── _backup_ENABLE.xml
│ │ │ │ │ │ ├── _backup_EXISTS.xml
│ │ │ │ │ │ ├── _backup_INFO.xml
│ │ │ │ │ │ ├── _backup_INFO_DISABLED.xml
│ │ │ │ │ │ ├── _backup_INFO_NOCLIENT.xml
│ │ │ │ │ │ ├── _backup_INFO_NOJOB.xml
│ │ │ │ │ │ ├── _backup_client_30b1ff76_c76d_4d7c_b39d_3b72be0384c8_cancelJob.xml
│ │ │ │ │ │ ├── _backup_client_30b1ff76_c76d_4d7c_b39d_3b72be0384c8_cancelJob_FAIL.xml
│ │ │ │ │ │ ├── _backup_client_SUCCESS_PUT.xml
│ │ │ │ │ │ ├── _backup_client_schedulePolicy.xml
│ │ │ │ │ │ ├── _backup_client_storagePolicy.xml
│ │ │ │ │ │ ├── _backup_client_type.xml
│ │ │ │ │ │ ├── _backup_modify.xml
│ │ │ │ │ │ ├── _remove_backup_client.xml
│ │ │ │ │ │ ├── _remove_backup_client_FAIL.xml
│ │ │ │ │ │ ├── oec_0_9_myaccount.xml
│ │ │ │ │ │ ├── server_server.xml
│ │ │ │ │ │ ├── server_server_NOBACKUP.xml
│ │ │ │ │ │ ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│ │ │ │ │ │ └── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87_DEFAULT.xml
│ │ │ │ ├── test_dimensiondata_v2_3.py
│ │ │ │ └── test_dimensiondata_v2_4.py
│ │ │ ├── benchmarks
│ │ │ │ ├── test_list_objects_filtering_performance.py
│ │ │ │ └── test_read_in_chunks.py
│ │ │ ├── common
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── digitalocean
│ │ │ │ │ │ ├── _v1_events_12345670.json
│ │ │ │ │ │ ├── _v1_events_12345670_UNAUTHORIZED.json
│ │ │ │ │ │ ├── _v2_account.json
│ │ │ │ │ │ ├── _v2_account_UNAUTHORIZED.json
│ │ │ │ │ │ ├── _v2_actions.json
│ │ │ │ │ │ ├── _v2_actions_12345670.json
│ │ │ │ │ │ ├── _v2_actions_page_1.json
│ │ │ │ │ │ └── _v2_actions_page_2.json
│ │ │ │ │ └── google
│ │ │ │ │ │ ├── pkey.json
│ │ │ │ │ │ ├── pkey.pem
│ │ │ │ │ │ └── pkey_invalid.json
│ │ │ │ ├── test_aliyun.py
│ │ │ │ ├── test_aws.py
│ │ │ │ ├── test_azure.py
│ │ │ │ ├── test_base.py
│ │ │ │ ├── test_base_driver.py
│ │ │ │ ├── test_cloudstack.py
│ │ │ │ ├── test_digitalocean_v2.py
│ │ │ │ ├── test_gandi.py
│ │ │ │ ├── test_gandi_live.py
│ │ │ │ ├── test_google.py
│ │ │ │ ├── test_kubernetes.py
│ │ │ │ ├── test_nfsn.py
│ │ │ │ ├── test_openstack.py
│ │ │ │ ├── test_openstack_identity.py
│ │ │ │ ├── test_osc.py
│ │ │ │ ├── test_ovh.py
│ │ │ │ ├── test_retry_limit.py
│ │ │ │ ├── test_types.py
│ │ │ │ └── test_upcloud.py
│ │ │ ├── compute
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── abiquo
│ │ │ │ │ │ ├── dcs.xml
│ │ │ │ │ │ ├── ent_1.xml
│ │ │ │ │ │ ├── ent_1_dcrep_2.xml
│ │ │ │ │ │ ├── ent_1_dcrep_2_template_11.xml
│ │ │ │ │ │ ├── ent_1_dcrep_2_templates.xml
│ │ │ │ │ │ ├── ent_1_dcreps.xml
│ │ │ │ │ │ ├── login.xml
│ │ │ │ │ │ ├── not_found_error.xml
│ │ │ │ │ │ ├── privilege_errors.html
│ │ │ │ │ │ ├── unauthorized_user.html
│ │ │ │ │ │ ├── vdc_4.xml
│ │ │ │ │ │ ├── vdc_4_vapp_5.xml
│ │ │ │ │ │ ├── vdc_4_vapp_5_needs_sync.xml
│ │ │ │ │ │ ├── vdc_4_vapp_5_vm_3_not_allocated.xml
│ │ │ │ │ │ ├── vdc_4_vapp_5_vms.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_undeploy.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_undeploy_task.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_undeploy_task_failed.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_allocated.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_deploy.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_deploy_task.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_deploy_task_failed.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_deployed.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_nics.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_reset.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_reset_task.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_undeploy.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_undeploy_task.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_3_undeploy_task_failed.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vm_creation_ok.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vms.xml
│ │ │ │ │ │ ├── vdc_4_vapp_6_vms_allocated.xml
│ │ │ │ │ │ ├── vdc_4_vapp_creation_ok.xml
│ │ │ │ │ │ ├── vdc_4_vapps.xml
│ │ │ │ │ │ └── vdcs.xml
│ │ │ │ │ ├── azure
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_locations.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_operations_acc33f6756cda6fd96826394fce4c9f3.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest01.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest01_deployments_dc03_roleinstances_dc13.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest01_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest02_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest03.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest03_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest04.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_oddkinz1_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_oddkinz2_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_oddkinz5_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdc1234.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc2.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc2_deployments.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc2_deploymentslots_Production.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc_deployments.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_images.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_storageservices_dss123.xml
│ │ │ │ │ │ ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_vmimages.xml
│ │ │ │ │ │ └── libcloud.pem
│ │ │ │ │ ├── azure_arm
│ │ │ │ │ │ ├── _77777777_7777_7777_7777_777777777777_oauth2_token.json
│ │ │ │ │ │ ├── _77777777_7777_7777_7777_777777777777_oauth2_token_PAGINATION_INFINITE_LOOP.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Commerce_RateCard.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_disks.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_disks_1.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_disks_PAGINATION_INFINITE_LOOP.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_locations_eastus_vmSizes.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_snapshots.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_virtualMachines.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_virtualMachines_1.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Compute_virtualMachines_PAGINATION_INFINITE_LOOP.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Network_networkInterfaces.json
│ │ │ │ │ │ ├── _subscriptions_99999999_providers_Microsoft_Network_virtualnetworks.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_disks_test_disk_1.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_disks_test_node_disk_1.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_snapshots_test_snap_1.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_virtualMachines_test_node_1.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_virtualMachines_test_node_1_InstanceView.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_virtualMachines_test_node_1_resize.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_virtualMachines_test_node_2_InstanceView.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Network_networkInterfaces_test_node_1_nic.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Network_networkInterfaces_test_node_2_nic.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_111111_providers_Microsoft_Compute_disks.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_111111_providers_Microsoft_Compute_snapshots.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_REVIZOR_providers_Microsoft_Network_networkInterfaces_test_nic.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_REVIZOR_providers_Microsoft_Network_publicIPAddresses_test_public_ip.json
│ │ │ │ │ │ ├── _subscriptions_99999999_resourceGroups_REVIZOR_providers_Microsoft_Network_virtualNetworks_test_network_CheckIPAddressAvailability.json
│ │ │ │ │ │ └── _subscriptions_subid_resourceGroups_rg1_providers_Microsoft_Network_publicIPAddresses_test_ip.json
│ │ │ │ │ ├── brightbox
│ │ │ │ │ │ ├── create_cloud_ip.json
│ │ │ │ │ │ ├── create_server.json
│ │ │ │ │ │ ├── create_server_gb1_a.json
│ │ │ │ │ │ ├── create_server_gb1_b.json
│ │ │ │ │ │ ├── list_cloud_ips.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_server_types.json
│ │ │ │ │ │ ├── list_servers.json
│ │ │ │ │ │ ├── list_zones.json
│ │ │ │ │ │ └── token.json
│ │ │ │ │ ├── cloudscale
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ └── list_sizes.json
│ │ │ │ │ ├── cloudsigma
│ │ │ │ │ │ ├── drives_clone.txt
│ │ │ │ │ │ ├── drives_info.txt
│ │ │ │ │ │ ├── drives_single_info.txt
│ │ │ │ │ │ ├── drives_standard_info.txt
│ │ │ │ │ │ ├── resources_ip_create.txt
│ │ │ │ │ │ ├── resources_ip_list.txt
│ │ │ │ │ │ ├── servers_create.txt
│ │ │ │ │ │ ├── servers_info.txt
│ │ │ │ │ │ └── servers_set.txt
│ │ │ │ │ ├── cloudsigma_2_0
│ │ │ │ │ │ ├── balance.json
│ │ │ │ │ │ ├── capabilities.json
│ │ │ │ │ │ ├── create_subscription.json
│ │ │ │ │ │ ├── currentusage.json
│ │ │ │ │ │ ├── drives_avail_groups.json
│ │ │ │ │ │ ├── drives_clone.json
│ │ │ │ │ │ ├── drives_create.json
│ │ │ │ │ │ ├── drives_detail.json
│ │ │ │ │ │ ├── drives_get.json
│ │ │ │ │ │ ├── drives_resize.json
│ │ │ │ │ │ ├── fwpolicies_create_no_rules.json
│ │ │ │ │ │ ├── fwpolicies_create_with_rules.json
│ │ │ │ │ │ ├── fwpolicies_detail.json
│ │ │ │ │ │ ├── keypairs_get.json
│ │ │ │ │ │ ├── keypairs_import.json
│ │ │ │ │ │ ├── keypairs_list.json
│ │ │ │ │ │ ├── libdrives.json
│ │ │ │ │ │ ├── pricing.json
│ │ │ │ │ │ ├── servers_attach_policy.json
│ │ │ │ │ │ ├── servers_avail_groups.json
│ │ │ │ │ │ ├── servers_clone.json
│ │ │ │ │ │ ├── servers_close_vnc.json
│ │ │ │ │ │ ├── servers_create.json
│ │ │ │ │ │ ├── servers_create_with_vlan.json
│ │ │ │ │ │ ├── servers_detail_all_stopped.json
│ │ │ │ │ │ ├── servers_detail_mixed_state.json
│ │ │ │ │ │ ├── servers_get.json
│ │ │ │ │ │ ├── servers_open_vnc.json
│ │ │ │ │ │ ├── start_already_started.json
│ │ │ │ │ │ ├── start_success.json
│ │ │ │ │ │ ├── stop_already_stopped.json
│ │ │ │ │ │ ├── stop_success.json
│ │ │ │ │ │ ├── subscriptions.json
│ │ │ │ │ │ ├── tags_create.json
│ │ │ │ │ │ ├── tags_create_with_resources.json
│ │ │ │ │ │ ├── tags_detail.json
│ │ │ │ │ │ ├── tags_get.json
│ │ │ │ │ │ ├── tags_update.json
│ │ │ │ │ │ └── unknown_error.json
│ │ │ │ │ ├── cloudstack
│ │ │ │ │ │ ├── addNicToVirtualMachine_default.json
│ │ │ │ │ │ ├── associateIpAddress_default.json
│ │ │ │ │ │ ├── attachVolume_default.json
│ │ │ │ │ │ ├── authorizeSecurityGroupIngress_default.json
│ │ │ │ │ │ ├── createAffinityGroup_default.json
│ │ │ │ │ │ ├── createEgressFirewallRule_default.json
│ │ │ │ │ │ ├── createFirewallRule_default.json
│ │ │ │ │ │ ├── createFirewallRule_firewallicmp.json
│ │ │ │ │ │ ├── createNetworkACLList_default.json
│ │ │ │ │ │ ├── createNetworkACL_default.json
│ │ │ │ │ │ ├── createNetwork_default.json
│ │ │ │ │ │ ├── createPortForwardingRule_default.json
│ │ │ │ │ │ ├── createSSHKeyPair_default.json
│ │ │ │ │ │ ├── createSecurityGroup_default.json
│ │ │ │ │ │ ├── createSnapshot_default.json
│ │ │ │ │ │ ├── createTags_default.json
│ │ │ │ │ │ ├── createTemplate_default.json
│ │ │ │ │ │ ├── createVPC_default.json
│ │ │ │ │ │ ├── createVolume_default.json
│ │ │ │ │ │ ├── createVolume_withcustomdisksize.json
│ │ │ │ │ │ ├── createVolume_withvolumetype.json
│ │ │ │ │ │ ├── createVpnConnection_default.json
│ │ │ │ │ │ ├── createVpnCustomerGateway_default.json
│ │ │ │ │ │ ├── createVpnGateway_default.json
│ │ │ │ │ │ ├── deleteAffinityGroup_default.json
│ │ │ │ │ │ ├── deleteEgressFirewallRule_default.json
│ │ │ │ │ │ ├── deleteFirewallRule_default.json
│ │ │ │ │ │ ├── deleteNetwork_default.json
│ │ │ │ │ │ ├── deletePortForwardingRule_default.json
│ │ │ │ │ │ ├── deleteSSHKeyPair_default.json
│ │ │ │ │ │ ├── deleteSecurityGroup_default.json
│ │ │ │ │ │ ├── deleteSnapshot_default.json
│ │ │ │ │ │ ├── deleteTags_default.json
│ │ │ │ │ │ ├── deleteVPC_default.json
│ │ │ │ │ │ ├── deleteVolume_default.json
│ │ │ │ │ │ ├── deleteVpnConnection_default.json
│ │ │ │ │ │ ├── deleteVpnCustomerGateway_default.json
│ │ │ │ │ │ ├── deleteVpnGateway_default.json
│ │ │ │ │ │ ├── deployVirtualMachine_default.json
│ │ │ │ │ │ ├── deployVirtualMachine_deployfail.json
│ │ │ │ │ │ ├── deployVirtualMachine_deployfail2.json
│ │ │ │ │ │ ├── deployVirtualMachine_deployip.json
│ │ │ │ │ │ ├── deployVirtualMachine_deploykeyname.json
│ │ │ │ │ │ ├── deployVirtualMachine_deploynetworks.json
│ │ │ │ │ │ ├── deployVirtualMachine_deployproject.json
│ │ │ │ │ │ ├── deployVirtualMachine_deploysecuritygroup.json
│ │ │ │ │ │ ├── deployVirtualMachine_rootdisksize.json
│ │ │ │ │ │ ├── deployVirtualMachine_stoppedvm.json
│ │ │ │ │ │ ├── destroyVirtualMachine_default.json
│ │ │ │ │ │ ├── detachVolume_default.json
│ │ │ │ │ │ ├── disassociateIpAddress_default.json
│ │ │ │ │ │ ├── dummy_rsa.pub
│ │ │ │ │ │ ├── listAffinityGroupTypes_default.json
│ │ │ │ │ │ ├── listAffinityGroups_default.json
│ │ │ │ │ │ ├── listDiskOfferings_default.json
│ │ │ │ │ │ ├── listDiskOfferings_withcustomdisksize.json
│ │ │ │ │ │ ├── listDiskOfferings_withvolumetype.json
│ │ │ │ │ │ ├── listEgressFirewallRules_default.json
│ │ │ │ │ │ ├── listFirewallRules_default.json
│ │ │ │ │ │ ├── listFirewallRules_firewallicmp.json
│ │ │ │ │ │ ├── listIpForwardingRules_default.json
│ │ │ │ │ │ ├── listNetworkACLLists_default.json
│ │ │ │ │ │ ├── listNetworkACLs_default.json
│ │ │ │ │ │ ├── listNetworkOfferings_default.json
│ │ │ │ │ │ ├── listNetworks_default.json
│ │ │ │ │ │ ├── listNetworks_deployfail.json
│ │ │ │ │ │ ├── listNetworks_deployfail2.json
│ │ │ │ │ │ ├── listNetworks_deployip.json
│ │ │ │ │ │ ├── listNetworks_deploynetworks.json
│ │ │ │ │ │ ├── listNetworks_rootdisksize.json
│ │ │ │ │ │ ├── listNetworks_stoppedvm.json
│ │ │ │ │ │ ├── listNics_default.json
│ │ │ │ │ │ ├── listOsTypes_default.json
│ │ │ │ │ │ ├── listPortForwardingRules_default.json
│ │ │ │ │ │ ├── listProjects_default.json
│ │ │ │ │ │ ├── listPublicIpAddresses_default.json
│ │ │ │ │ │ ├── listPublicIpAddresses_firewallicmp.json
│ │ │ │ │ │ ├── listResourceLimits_default.json
│ │ │ │ │ │ ├── listRouters_default.json
│ │ │ │ │ │ ├── listSSHKeyPairs_default.json
│ │ │ │ │ │ ├── listSSHKeyPairs_get_one.json
│ │ │ │ │ │ ├── listSSHKeyPairs_get_one_doesnt_exist.json
│ │ │ │ │ │ ├── listSSHKeyPairs_no_keys.json
│ │ │ │ │ │ ├── listSecurityGroups_default.json
│ │ │ │ │ │ ├── listSecurityGroups_no_groups.json
│ │ │ │ │ │ ├── listServiceOfferings_default.json
│ │ │ │ │ │ ├── listServiceOfferings_deployip.json
│ │ │ │ │ │ ├── listServiceOfferings_deploynetworks.json
│ │ │ │ │ │ ├── listServiceOfferings_rootdisksize.json
│ │ │ │ │ │ ├── listServiceOfferings_stoppedvm.json
│ │ │ │ │ │ ├── listSnapshots_default.json
│ │ │ │ │ │ ├── listTemplates_default.json
│ │ │ │ │ │ ├── listTemplates_deployip.json
│ │ │ │ │ │ ├── listTemplates_deploynetworks.json
│ │ │ │ │ │ ├── listTemplates_notemplates.json
│ │ │ │ │ │ ├── listTemplates_rootdisksize.json
│ │ │ │ │ │ ├── listTemplates_stoppedvm.json
│ │ │ │ │ │ ├── listVPCOfferings_default.json
│ │ │ │ │ │ ├── listVPCs_default.json
│ │ │ │ │ │ ├── listVirtualMachines_default.json
│ │ │ │ │ │ ├── listVirtualMachines_noipaddress.json
│ │ │ │ │ │ ├── listVolumes_default.json
│ │ │ │ │ │ ├── listVolumes_rootdisksize.json
│ │ │ │ │ │ ├── listVpnConnections_default.json
│ │ │ │ │ │ ├── listVpnCustomerGateways_default.json
│ │ │ │ │ │ ├── listVpnGateways_default.json
│ │ │ │ │ │ ├── listZones_default.json
│ │ │ │ │ │ ├── listZones_deployfail.json
│ │ │ │ │ │ ├── listZones_deployfail2.json
│ │ │ │ │ │ ├── listZones_deployip.json
│ │ │ │ │ │ ├── listZones_deploynetworks.json
│ │ │ │ │ │ ├── listZones_rootdisksize.json
│ │ │ │ │ │ ├── listZones_stoppedvm.json
│ │ │ │ │ │ ├── listZones_withcustomdisksize.json
│ │ │ │ │ │ ├── listZones_withvolumetype.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11111.json
│ │ │ │ │ │ ├── queryAsyncJobResult_111112.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11112.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11113.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11114.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11115.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11116.json
│ │ │ │ │ │ ├── queryAsyncJobResult_11117.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1149341.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1149342.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1149343.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1149366.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1300001.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1300002.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1300003.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1300004.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1300005.json
│ │ │ │ │ │ ├── queryAsyncJobResult_1300006.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17164.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17165.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17166.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17177.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17188.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17199.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17200.json
│ │ │ │ │ │ ├── queryAsyncJobResult_88776.json
│ │ │ │ │ │ ├── queryAsyncJobResult_88777.json
│ │ │ │ │ │ ├── queryAsyncJobResult_addnictovm.json
│ │ │ │ │ │ ├── queryAsyncJobResult_attachvolumejob.json
│ │ │ │ │ │ ├── queryAsyncJobResult_createVpnConnection.json
│ │ │ │ │ │ ├── queryAsyncJobResult_createVpnCustomerGateway.json
│ │ │ │ │ │ ├── queryAsyncJobResult_createVpnGateway.json
│ │ │ │ │ │ ├── queryAsyncJobResult_createtagsjob.json
│ │ │ │ │ │ ├── queryAsyncJobResult_createvolumejob.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deleteNetwork.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deleteVPC.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deleteVpnConnection.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deleteVpnCustomerGateway.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deleteVpnGateway.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deletetagsjob.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deployrootdisksize.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deployvmstopped.json
│ │ │ │ │ │ ├── queryAsyncJobResult_deployvmwithid.json
│ │ │ │ │ │ ├── queryAsyncJobResult_detachvolumejob.json
│ │ │ │ │ │ ├── queryAsyncJobResult_removenic.json
│ │ │ │ │ │ ├── rebootVirtualMachine_default.json
│ │ │ │ │ │ ├── registerSSHKeyPair_default.json
│ │ │ │ │ │ ├── registerSSHKeyPair_error.json
│ │ │ │ │ │ ├── removeNicFromVirtualMachine_default.json
│ │ │ │ │ │ ├── restoreVirtualMachine_default.json
│ │ │ │ │ │ ├── scaleVirtualMachine_default.json
│ │ │ │ │ │ ├── startVirtualMachine_default.json
│ │ │ │ │ │ ├── stopVirtualMachine_default.json
│ │ │ │ │ │ └── updateVMAffinityGroup_default.json
│ │ │ │ │ ├── digitalocean
│ │ │ │ │ │ ├── create_image.json
│ │ │ │ │ │ ├── create_key_pair.json
│ │ │ │ │ │ ├── error.json
│ │ │ │ │ │ ├── ex_power_on_node.json
│ │ │ │ │ │ ├── ex_shutdown_node.json
│ │ │ │ │ │ ├── get_image.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ └── list_nodes_page_1.json
│ │ │ │ │ ├── digitalocean_v2
│ │ │ │ │ │ ├── attach_floating_ip.json
│ │ │ │ │ │ ├── attach_volume.json
│ │ │ │ │ │ ├── create_floating_ip.json
│ │ │ │ │ │ ├── create_image.json
│ │ │ │ │ │ ├── create_key_pair.json
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── create_volume.json
│ │ │ │ │ │ ├── create_volume_snapshot.json
│ │ │ │ │ │ ├── detach_floating_ip.json
│ │ │ │ │ │ ├── detach_volume.json
│ │ │ │ │ │ ├── error.json
│ │ │ │ │ │ ├── error_invalid_image.json
│ │ │ │ │ │ ├── ex_change_kernel.json
│ │ │ │ │ │ ├── ex_enable_ipv6.json
│ │ │ │ │ │ ├── ex_hard_reboot.json
│ │ │ │ │ │ ├── ex_power_on_node.json
│ │ │ │ │ │ ├── ex_rebuild_node.json
│ │ │ │ │ │ ├── ex_rename_node.json
│ │ │ │ │ │ ├── ex_resize_node.json
│ │ │ │ │ │ ├── ex_shutdown_node.json
│ │ │ │ │ │ ├── get_image.json
│ │ │ │ │ │ ├── list_floating_ips.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ ├── list_locations.json
│ │ │ │ │ │ ├── list_node.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── list_nodes_empty.json
│ │ │ │ │ │ ├── list_nodes_page_1.json
│ │ │ │ │ │ ├── list_sizes.json
│ │ │ │ │ │ ├── list_volume_snapshots.json
│ │ │ │ │ │ ├── list_volumes.json
│ │ │ │ │ │ ├── list_volumes_empty.json
│ │ │ │ │ │ └── reboot_node.json
│ │ │ │ │ ├── dimensiondata
│ │ │ │ │ │ ├── 2.4
│ │ │ │ │ │ │ ├── change_nic_networkadapter_response.xml
│ │ │ │ │ │ │ ├── deploy_customised_server.xml
│ │ │ │ │ │ │ ├── exchange_nic_vlans_response.xml
│ │ │ │ │ │ │ ├── image_customerImage.xml
│ │ │ │ │ │ │ ├── image_customerImage_2ffa36c8_1848_49eb_b4fa_9d908775f68c.xml
│ │ │ │ │ │ │ ├── image_customerImage_5234e5c7_01de_4411_8b6e_baeb8d91cf5d.xml
│ │ │ │ │ │ │ ├── image_osImage.xml
│ │ │ │ │ │ │ ├── image_osImage_6b4fb0c7_a57b_4f58_b59c_9958f94f971a.xml
│ │ │ │ │ │ │ ├── image_osImage_c14b1a46_2428_44c1_9c1a_b20e6418d08c.xml
│ │ │ │ │ │ │ ├── import_image_response.xml
│ │ │ │ │ │ │ ├── server_GetServer.xml
│ │ │ │ │ │ │ ├── server_cleanServer.xml
│ │ │ │ │ │ │ ├── server_clone_response.xml
│ │ │ │ │ │ │ ├── server_server.xml
│ │ │ │ │ │ │ ├── server_server_NA3.xml
│ │ │ │ │ │ │ ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│ │ │ │ │ │ │ └── server_server_paginated.xml
│ │ │ │ │ │ ├── _oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server.xml
│ │ │ │ │ │ ├── audit_log.csv
│ │ │ │ │ │ ├── detailed_usage_report.csv
│ │ │ │ │ │ ├── image_customerImage.xml
│ │ │ │ │ │ ├── image_customerImage_2ffa36c8_1848_49eb_b4fa_9d908775f68c.xml
│ │ │ │ │ │ ├── image_customerImage_5234e5c7_01de_4411_8b6e_baeb8d91cf5d.xml
│ │ │ │ │ │ ├── image_customerImage_BAD_REQUEST.xml
│ │ │ │ │ │ ├── image_osImage.xml
│ │ │ │ │ │ ├── image_osImage_6b4fb0c7_a57b_4f58_b59c_9958f94f971a.xml
│ │ │ │ │ │ ├── image_osImage_BAD_REQUEST.xml
│ │ │ │ │ │ ├── image_osImage_c14b1a46_2428_44c1_9c1a_b20e6418d08c.xml
│ │ │ │ │ │ ├── infrastructure_datacenter.xml
│ │ │ │ │ │ ├── infrastructure_datacenter_NA9.xml
│ │ │ │ │ │ ├── ip_address_list_create.xml
│ │ │ │ │ │ ├── ip_address_list_delete.xml
│ │ │ │ │ │ ├── ip_address_list_edit.xml
│ │ │ │ │ │ ├── ip_address_lists.xml
│ │ │ │ │ │ ├── ip_address_lists_FILTERBYNAME.xml
│ │ │ │ │ │ ├── network_addPublicIpBlock.xml
│ │ │ │ │ │ ├── network_createFirewallRule.xml
│ │ │ │ │ │ ├── network_createNatRule.xml
│ │ │ │ │ │ ├── network_deleteFirewallRule.xml
│ │ │ │ │ │ ├── network_deleteNatRule.xml
│ │ │ │ │ │ ├── network_deleteNetworkDomain.xml
│ │ │ │ │ │ ├── network_deleteVlan.xml
│ │ │ │ │ │ ├── network_deployNetworkDomain.xml
│ │ │ │ │ │ ├── network_deployVlan.xml
│ │ │ │ │ │ ├── network_editFirewallRule.xml
│ │ │ │ │ │ ├── network_editNetworkDomain.xml
│ │ │ │ │ │ ├── network_editVlan.xml
│ │ │ │ │ │ ├── network_expandVlan.xml
│ │ │ │ │ │ ├── network_firewallRule.xml
│ │ │ │ │ │ ├── network_firewallRule_d0a20f59_77b9_4f28_a63b_e58496b73a6c.xml
│ │ │ │ │ │ ├── network_natRule.xml
│ │ │ │ │ │ ├── network_natRule_2187a636_7ebb_49a1_a2ff_5d617f496dce.xml
│ │ │ │ │ │ ├── network_networkDomain.xml
│ │ │ │ │ │ ├── network_networkDomain_8cdfd607_f429_4df6_9352_162cfc0891be.xml
│ │ │ │ │ │ ├── network_publicIpBlock.xml
│ │ │ │ │ │ ├── network_publicIpBlock_4487241a_f0ca_11e3_9315_d4bed9b167ba.xml
│ │ │ │ │ │ ├── network_publicIpBlock_9945dc4a_bdce_11e4_8c14_b8ca3a5d9ef8.xml
│ │ │ │ │ │ ├── network_removePublicIpBlock.xml
│ │ │ │ │ │ ├── network_vlan.xml
│ │ │ │ │ │ ├── network_vlan_0e56433f_d808_4669_821d_812769517ff8.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_create.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_create_FAIL.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_delete.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_delete_FAIL.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_datacenter.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_networkWithLocation.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_network_4bba37be_506f_11e3_b29c_001517c4643e.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_delete.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_delete_INPROGRESS.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_poweroff.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_poweroff_INPROGRESS.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_restart.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_restart_INPROGRESS.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_shutdown.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_shutdown_INPROGRESS.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_start.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_start_INPROGRESS.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_deployed.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_e75ead52_692f_4314_8725_c8a4f4d13a87_POST.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_e75ead52_692f_4314_8725_c8a4f4d13a87_disk_1.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_e75ead52_692f_4314_8725_c8a4f4d13a87_disk_1_changeSize.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_e75ead52_692f_4314_8725_c8a4f4d13a87_disk_1_changeSpeed.xml
│ │ │ │ │ │ ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_pendingDeploy.xml
│ │ │ │ │ │ ├── oec_0_9_base_image.xml
│ │ │ │ │ │ ├── oec_0_9_base_imageWithDiskSpeed.xml
│ │ │ │ │ │ ├── oec_0_9_myaccount.xml
│ │ │ │ │ │ ├── port_list_create.xml
│ │ │ │ │ │ ├── port_list_delete.xml
│ │ │ │ │ │ ├── port_list_edit.xml
│ │ │ │ │ │ ├── port_list_get.xml
│ │ │ │ │ │ ├── port_list_lists.xml
│ │ │ │ │ │ ├── report_usageMonitoring.xml
│ │ │ │ │ │ ├── server_GetServer.xml
│ │ │ │ │ │ ├── server_addDisk.xml
│ │ │ │ │ │ ├── server_addNic.xml
│ │ │ │ │ │ ├── server_antiAffinityRule_list.xml
│ │ │ │ │ │ ├── server_antiAffinityRule_list_PAGINATED.xml
│ │ │ │ │ │ ├── server_changeServerMonitoringPlan.xml
│ │ │ │ │ │ ├── server_cleanServer.xml
│ │ │ │ │ │ ├── server_deleteServer.xml
│ │ │ │ │ │ ├── server_deleteServer_RESOURCEBUSY.xml
│ │ │ │ │ │ ├── server_deployServer.xml
│ │ │ │ │ │ ├── server_disableServerMonitoring.xml
│ │ │ │ │ │ ├── server_enableServerMonitoring.xml
│ │ │ │ │ │ ├── server_powerOffServer.xml
│ │ │ │ │ │ ├── server_powerOffServer_INPROGRESS.xml
│ │ │ │ │ │ ├── server_rebootServer.xml
│ │ │ │ │ │ ├── server_rebootServer_RESOURCEBUSY.xml
│ │ │ │ │ │ ├── server_reconfigureServer.xml
│ │ │ │ │ │ ├── server_removeDisk.xml
│ │ │ │ │ │ ├── server_removeNic.xml
│ │ │ │ │ │ ├── server_resetServer.xml
│ │ │ │ │ │ ├── server_server.xml
│ │ │ │ │ │ ├── server_server_NA3.xml
│ │ │ │ │ │ ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│ │ │ │ │ │ ├── server_server_paginated.xml
│ │ │ │ │ │ ├── server_server_paginated_empty.xml
│ │ │ │ │ │ ├── server_shutdownServer.xml
│ │ │ │ │ │ ├── server_shutdownServer_INPROGRESS.xml
│ │ │ │ │ │ ├── server_startServer.xml
│ │ │ │ │ │ ├── server_startServer_INPROGRESS.xml
│ │ │ │ │ │ ├── server_updateVmwareTools.xml
│ │ │ │ │ │ ├── summary_usage_report.csv
│ │ │ │ │ │ ├── tag_applyTags.xml
│ │ │ │ │ │ ├── tag_applyTags_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_createTagKey.xml
│ │ │ │ │ │ ├── tag_createTagKey_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_deleteTagKey.xml
│ │ │ │ │ │ ├── tag_deleteTagKey_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_editTagKey.xml
│ │ │ │ │ │ ├── tag_editTagKey_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_removeTag.xml
│ │ │ │ │ │ ├── tag_removeTag_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_tagKey_5ab77f5f_5aa9_426f_8459_4eab34e03d54.xml
│ │ │ │ │ │ ├── tag_tagKey_5ab77f5f_5aa9_426f_8459_4eab34e03d54_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_tagKey_list.xml
│ │ │ │ │ │ ├── tag_tagKey_list_SINGLE.xml
│ │ │ │ │ │ └── tag_tag_list.xml
│ │ │ │ │ ├── ec2
│ │ │ │ │ │ ├── allocate_address.xml
│ │ │ │ │ │ ├── allocate_vpc_address.xml
│ │ │ │ │ │ ├── associate_address.xml
│ │ │ │ │ │ ├── associate_vpc_address.xml
│ │ │ │ │ │ ├── attach_internet_gateway.xml
│ │ │ │ │ │ ├── attach_network_interface.xml
│ │ │ │ │ │ ├── attach_volume.xml
│ │ │ │ │ │ ├── authorize_security_group_egress.xml
│ │ │ │ │ │ ├── authorize_security_group_ingress.xml
│ │ │ │ │ │ ├── copy_image.xml
│ │ │ │ │ │ ├── create_encrypted_volume.xml
│ │ │ │ │ │ ├── create_image.xml
│ │ │ │ │ │ ├── create_internet_gateway.xml
│ │ │ │ │ │ ├── create_key_pair.xml
│ │ │ │ │ │ ├── create_network_interface.xml
│ │ │ │ │ │ ├── create_placement_groups.xml
│ │ │ │ │ │ ├── create_security_group.xml
│ │ │ │ │ │ ├── create_snapshot.xml
│ │ │ │ │ │ ├── create_subnet.xml
│ │ │ │ │ │ ├── create_tags.xml
│ │ │ │ │ │ ├── create_volume.xml
│ │ │ │ │ │ ├── create_vpc.xml
│ │ │ │ │ │ ├── delete_internet_gateway.xml
│ │ │ │ │ │ ├── delete_key_pair.xml
│ │ │ │ │ │ ├── delete_network_interface.xml
│ │ │ │ │ │ ├── delete_placement_groups.xml
│ │ │ │ │ │ ├── delete_security_group.xml
│ │ │ │ │ │ ├── delete_snapshot.xml
│ │ │ │ │ │ ├── delete_subnet.xml
│ │ │ │ │ │ ├── delete_tags.xml
│ │ │ │ │ │ ├── delete_volume.xml
│ │ │ │ │ │ ├── delete_vpc.xml
│ │ │ │ │ │ ├── deregister_image.xml
│ │ │ │ │ │ ├── describe_account_attributes.xml
│ │ │ │ │ │ ├── describe_addresses.xml
│ │ │ │ │ │ ├── describe_addresses_all.xml
│ │ │ │ │ │ ├── describe_addresses_multi.xml
│ │ │ │ │ │ ├── describe_addresses_single.xml
│ │ │ │ │ │ ├── describe_availability_zones.xml
│ │ │ │ │ │ ├── describe_images.xml
│ │ │ │ │ │ ├── describe_images_ex_imageids.xml
│ │ │ │ │ │ ├── describe_import_snapshot_tasks.xml
│ │ │ │ │ │ ├── describe_import_snapshot_tasks_active.xml
│ │ │ │ │ │ ├── describe_instance_types.xml
│ │ │ │ │ │ ├── describe_instances.xml
│ │ │ │ │ │ ├── describe_internet_gateways.xml
│ │ │ │ │ │ ├── describe_key_pairs.xml
│ │ │ │ │ │ ├── describe_key_pairs_doesnt_exist.xml
│ │ │ │ │ │ ├── describe_network_interfaces.xml
│ │ │ │ │ │ ├── describe_placement_groups.xml
│ │ │ │ │ │ ├── describe_reserved_instances.xml
│ │ │ │ │ │ ├── describe_security_groups.xml
│ │ │ │ │ │ ├── describe_snapshots.xml
│ │ │ │ │ │ ├── describe_subnets.xml
│ │ │ │ │ │ ├── describe_tags.xml
│ │ │ │ │ │ ├── describe_volumes.xml
│ │ │ │ │ │ ├── describe_volumes_modifications.xml
│ │ │ │ │ │ ├── describe_vpcs.xml
│ │ │ │ │ │ ├── detach_internet_gateway.xml
│ │ │ │ │ │ ├── detach_network_interface.xml
│ │ │ │ │ │ ├── detach_volume.xml
│ │ │ │ │ │ ├── disassociate_address.xml
│ │ │ │ │ │ ├── get_console_output.xml
│ │ │ │ │ │ ├── import_key_pair.xml
│ │ │ │ │ │ ├── import_snapshot.xml
│ │ │ │ │ │ ├── modify_image_attribute.xml
│ │ │ │ │ │ ├── modify_instance_attribute.xml
│ │ │ │ │ │ ├── modify_snapshot_attribute.xml
│ │ │ │ │ │ ├── modify_subnet_attribute.xml
│ │ │ │ │ │ ├── modify_volume.xml
│ │ │ │ │ │ ├── reboot_instances.xml
│ │ │ │ │ │ ├── register_image.xml
│ │ │ │ │ │ ├── release_address.xml
│ │ │ │ │ │ ├── revoke_security_group_egress.xml
│ │ │ │ │ │ ├── revoke_security_group_ingress.xml
│ │ │ │ │ │ ├── run_instances.xml
│ │ │ │ │ │ ├── run_instances_iam_profile.xml
│ │ │ │ │ │ ├── run_instances_idem.xml
│ │ │ │ │ │ ├── run_instances_idem_mismatch.xml
│ │ │ │ │ │ ├── run_instances_spot.xml
│ │ │ │ │ │ ├── run_instances_with_subnet_and_security_group.xml
│ │ │ │ │ │ ├── start_instances.xml
│ │ │ │ │ │ ├── stop_instances.xml
│ │ │ │ │ │ └── terminate_instances.xml
│ │ │ │ │ ├── ecp
│ │ │ │ │ │ ├── htemplate_list.json
│ │ │ │ │ │ ├── network_list.json
│ │ │ │ │ │ ├── ptemplate_list.json
│ │ │ │ │ │ ├── vm_1_action_delete.json
│ │ │ │ │ │ ├── vm_1_action_start.json
│ │ │ │ │ │ ├── vm_1_action_stop.json
│ │ │ │ │ │ ├── vm_1_get.json
│ │ │ │ │ │ ├── vm_list.json
│ │ │ │ │ │ └── vm_put.json
│ │ │ │ │ ├── ecs
│ │ │ │ │ │ ├── attach_disk.xml
│ │ │ │ │ │ ├── copy_image.xml
│ │ │ │ │ │ ├── create_disk.xml
│ │ │ │ │ │ ├── create_image.xml
│ │ │ │ │ │ ├── create_instance.xml
│ │ │ │ │ │ ├── create_node_describe_instances.xml
│ │ │ │ │ │ ├── create_public_ip.xml
│ │ │ │ │ │ ├── create_security_group.xml
│ │ │ │ │ │ ├── create_snapshot.xml
│ │ │ │ │ │ ├── create_volume_describe_disks.xml
│ │ │ │ │ │ ├── delete_disk.xml
│ │ │ │ │ │ ├── delete_image.xml
│ │ │ │ │ │ ├── delete_instance.xml
│ │ │ │ │ │ ├── delete_security_group_by_id.xml
│ │ │ │ │ │ ├── delete_snapshot.xml
│ │ │ │ │ │ ├── describe_disks.xml
│ │ │ │ │ │ ├── describe_images.xml
│ │ │ │ │ │ ├── describe_instance_types.xml
│ │ │ │ │ │ ├── describe_instances.xml
│ │ │ │ │ │ ├── describe_regions.xml
│ │ │ │ │ │ ├── describe_security_group_attributes.xml
│ │ │ │ │ │ ├── describe_security_groups.xml
│ │ │ │ │ │ ├── describe_snapshots.xml
│ │ │ │ │ │ ├── describe_zones.xml
│ │ │ │ │ │ ├── destroy_node_describe_instances.xml
│ │ │ │ │ │ ├── destroy_volume_describe_disks.xml
│ │ │ │ │ │ ├── detach_disk.xml
│ │ │ │ │ │ ├── detach_volume_describe_disks.xml
│ │ │ │ │ │ ├── get_image_describe_images.xml
│ │ │ │ │ │ ├── join_security_group_by_id.xml
│ │ │ │ │ │ ├── leave_security_group_by_id.xml
│ │ │ │ │ │ ├── modify_security_group_by_id.xml
│ │ │ │ │ │ ├── pages_describe_images.xml
│ │ │ │ │ │ ├── pages_describe_images_page2.xml
│ │ │ │ │ │ ├── reboot_instance.xml
│ │ │ │ │ │ ├── reboot_node_describe_instances.xml
│ │ │ │ │ │ ├── start_instance.xml
│ │ │ │ │ │ ├── stop_instance.xml
│ │ │ │ │ │ └── stop_node_describe_instances.xml
│ │ │ │ │ ├── elastichosts
│ │ │ │ │ │ ├── drives_create.json
│ │ │ │ │ │ ├── drives_info.json
│ │ │ │ │ │ ├── offline_servers_info.json
│ │ │ │ │ │ ├── servers_create.json
│ │ │ │ │ │ └── servers_info.json
│ │ │ │ │ ├── equinixmetal
│ │ │ │ │ │ ├── associate_ip.json
│ │ │ │ │ │ ├── attach_volume.json
│ │ │ │ │ │ ├── bgp_config_project_1.json
│ │ │ │ │ │ ├── bgp_config_project_2.json
│ │ │ │ │ │ ├── bgp_config_project_3.json
│ │ │ │ │ │ ├── bgp_session_create.json
│ │ │ │ │ │ ├── bgp_session_get.json
│ │ │ │ │ │ ├── bgp_sessions.json
│ │ │ │ │ │ ├── create_volume.json
│ │ │ │ │ │ ├── device_create.json
│ │ │ │ │ │ ├── device_events.json
│ │ │ │ │ │ ├── devices.json
│ │ │ │ │ │ ├── devices_for_project.json
│ │ │ │ │ │ ├── facilities.json
│ │ │ │ │ │ ├── ip_address.json
│ │ │ │ │ │ ├── ip_assignments.json
│ │ │ │ │ │ ├── node_bandwidth.json
│ │ │ │ │ │ ├── operatingsystems.json
│ │ │ │ │ │ ├── plans.json
│ │ │ │ │ │ ├── project_events.json
│ │ │ │ │ │ ├── project_ips.json
│ │ │ │ │ │ ├── projects.json
│ │ │ │ │ │ ├── reserve_ip.json
│ │ │ │ │ │ ├── sshkey_create.json
│ │ │ │ │ │ ├── sshkeys.json
│ │ │ │ │ │ └── volumes.json
│ │ │ │ │ ├── fcu
│ │ │ │ │ │ ├── ex_describe_instance_types.xml
│ │ │ │ │ │ ├── ex_describe_product_types.xml
│ │ │ │ │ │ ├── ex_describe_quotas.xml
│ │ │ │ │ │ ├── ex_get_product_type.xml
│ │ │ │ │ │ └── ex_modify_instance_keypair.xml
│ │ │ │ │ ├── gandi
│ │ │ │ │ │ ├── account_info.xml
│ │ │ │ │ │ ├── account_info_rating.xml
│ │ │ │ │ │ ├── datacenter_list.xml
│ │ │ │ │ │ ├── disk_attach.xml
│ │ │ │ │ │ ├── disk_create.xml
│ │ │ │ │ │ ├── disk_create_from.xml
│ │ │ │ │ │ ├── disk_delete.xml
│ │ │ │ │ │ ├── disk_detach.xml
│ │ │ │ │ │ ├── disk_info.xml
│ │ │ │ │ │ ├── disk_list.xml
│ │ │ │ │ │ ├── disk_update.xml
│ │ │ │ │ │ ├── iface_attach.xml
│ │ │ │ │ │ ├── iface_detach.xml
│ │ │ │ │ │ ├── iface_list.xml
│ │ │ │ │ │ ├── image_list_dc0.xml
│ │ │ │ │ │ ├── ip_list.xml
│ │ │ │ │ │ ├── operation_info.xml
│ │ │ │ │ │ ├── ssh_delete.xml
│ │ │ │ │ │ ├── ssh_info.xml
│ │ │ │ │ │ ├── ssh_list.xml
│ │ │ │ │ │ ├── vm_create_from.xml
│ │ │ │ │ │ ├── vm_delete.xml
│ │ │ │ │ │ ├── vm_info.xml
│ │ │ │ │ │ ├── vm_list.xml
│ │ │ │ │ │ ├── vm_reboot.xml
│ │ │ │ │ │ └── vm_stop.xml
│ │ │ │ │ ├── gce
│ │ │ │ │ │ ├── _zones_us_central1_a_instanceGroupManagers_myinstancegroup_listManagedInstances.json
│ │ │ │ │ │ ├── aggregated_addresses.json
│ │ │ │ │ │ ├── aggregated_autoscalers.json
│ │ │ │ │ │ ├── aggregated_disks.json
│ │ │ │ │ │ ├── aggregated_disktypes.json
│ │ │ │ │ │ ├── aggregated_forwardingRules.json
│ │ │ │ │ │ ├── aggregated_instanceGroupManagers.json
│ │ │ │ │ │ ├── aggregated_instances.json
│ │ │ │ │ │ ├── aggregated_machineTypes.json
│ │ │ │ │ │ ├── aggregated_subnetworks.json
│ │ │ │ │ │ ├── aggregated_targetInstances.json
│ │ │ │ │ │ ├── aggregated_targetPools.json
│ │ │ │ │ │ ├── generic_disk.json
│ │ │ │ │ │ ├── global_addresses.json
│ │ │ │ │ │ ├── global_addresses_lcaddressglobal.json
│ │ │ │ │ │ ├── global_addresses_lcaddressglobal_delete.json
│ │ │ │ │ │ ├── global_addresses_post.json
│ │ │ │ │ │ ├── global_backendServices-empty.json
│ │ │ │ │ │ ├── global_backendServices-web-service.json
│ │ │ │ │ │ ├── global_backendServices_no_backends.json
│ │ │ │ │ │ ├── global_backendServices_post.json
│ │ │ │ │ │ ├── global_backendServices_web_service.json
│ │ │ │ │ │ ├── global_backendServices_web_service_delete.json
│ │ │ │ │ │ ├── global_custom_image_setLabels_post.json
│ │ │ │ │ │ ├── global_firewalls.json
│ │ │ │ │ │ ├── global_firewalls_lcfirewall-deny.json
│ │ │ │ │ │ ├── global_firewalls_lcfirewall-egress.json
│ │ │ │ │ │ ├── global_firewalls_lcfirewall.json
│ │ │ │ │ │ ├── global_firewalls_lcfirewall_delete.json
│ │ │ │ │ │ ├── global_firewalls_lcfirewall_put.json
│ │ │ │ │ │ ├── global_firewalls_post.json
│ │ │ │ │ │ ├── global_forwardingRules.json
│ │ │ │ │ │ ├── global_forwardingRules_http_rule.json
│ │ │ │ │ │ ├── global_forwardingRules_http_rule_delete.json
│ │ │ │ │ │ ├── global_forwardingRules_post.json
│ │ │ │ │ │ ├── global_httpHealthChecks.json
│ │ │ │ │ │ ├── global_httpHealthChecks_basic-check.json
│ │ │ │ │ │ ├── global_httpHealthChecks_lchealthcheck.json
│ │ │ │ │ │ ├── global_httpHealthChecks_lchealthcheck_delete.json
│ │ │ │ │ │ ├── global_httpHealthChecks_lchealthcheck_put.json
│ │ │ │ │ │ ├── global_httpHealthChecks_libcloud-lb-demo-healthcheck.json
│ │ │ │ │ │ ├── global_httpHealthChecks_post.json
│ │ │ │ │ │ ├── global_images.json
│ │ │ │ │ │ ├── global_images_debian_7_wheezy_v20131014_deprecate.json
│ │ │ │ │ │ ├── global_images_debian_7_wheezy_v20131120_delete.json
│ │ │ │ │ │ ├── global_images_family_notfound.json
│ │ │ │ │ │ ├── global_images_paged.json
│ │ │ │ │ │ ├── global_images_post.json
│ │ │ │ │ │ ├── global_instanceTemplates.json
│ │ │ │ │ │ ├── global_instanceTemplates_insert.json
│ │ │ │ │ │ ├── global_instanceTemplates_my_instance_template1.json
│ │ │ │ │ │ ├── global_instanceTemplates_my_instance_template_shared_network.json
│ │ │ │ │ │ ├── global_networks.json
│ │ │ │ │ │ ├── global_networks_cf.json
│ │ │ │ │ │ ├── global_networks_custom_network.json
│ │ │ │ │ │ ├── global_networks_default.json
│ │ │ │ │ │ ├── global_networks_lcnetwork.json
│ │ │ │ │ │ ├── global_networks_lcnetwork_delete.json
│ │ │ │ │ │ ├── global_networks_libcloud-demo-europe-network.json
│ │ │ │ │ │ ├── global_networks_libcloud-demo-network.json
│ │ │ │ │ │ ├── global_networks_post.json
│ │ │ │ │ │ ├── global_operations_operation_setImageLabels_post.json
│ │ │ │ │ │ ├── global_routes.json
│ │ │ │ │ │ ├── global_routes_lcdemoroute.json
│ │ │ │ │ │ ├── global_routes_lcdemoroute_delete.json
│ │ │ │ │ │ ├── global_routes_post.json
│ │ │ │ │ │ ├── global_snapshots.json
│ │ │ │ │ │ ├── global_snapshots_lcsnapshot.json
│ │ │ │ │ │ ├── global_snapshots_lcsnapshot_delete.json
│ │ │ │ │ │ ├── global_targetHttpProxies.json
│ │ │ │ │ │ ├── global_targetHttpProxies_post.json
│ │ │ │ │ │ ├── global_targetHttpProxies_web_proxy.json
│ │ │ │ │ │ ├── global_targetHttpProxies_web_proxy_delete.json
│ │ │ │ │ │ ├── global_urlMaps.json
│ │ │ │ │ │ ├── global_urlMaps_post.json
│ │ │ │ │ │ ├── global_urlMaps_web_map.json
│ │ │ │ │ │ ├── global_urlMaps_web_map_delete.json
│ │ │ │ │ │ ├── operations_operation_global_addresses_lcaddressglobal_delete.json
│ │ │ │ │ │ ├── operations_operation_global_addresses_post.json
│ │ │ │ │ │ ├── operations_operation_global_backendServices_post.json
│ │ │ │ │ │ ├── operations_operation_global_backendServices_web_service_delete.json
│ │ │ │ │ │ ├── operations_operation_global_firewalls_lcfirewall_delete.json
│ │ │ │ │ │ ├── operations_operation_global_firewalls_lcfirewall_put.json
│ │ │ │ │ │ ├── operations_operation_global_firewalls_post.json
│ │ │ │ │ │ ├── operations_operation_global_forwardingRules_http_rule_delete.json
│ │ │ │ │ │ ├── operations_operation_global_forwardingRules_post.json
│ │ │ │ │ │ ├── operations_operation_global_httpHealthChecks_lchealthcheck_delete.json
│ │ │ │ │ │ ├── operations_operation_global_httpHealthChecks_lchealthcheck_put.json
│ │ │ │ │ │ ├── operations_operation_global_httpHealthChecks_post.json
│ │ │ │ │ │ ├── operations_operation_global_image_post.json
│ │ │ │ │ │ ├── operations_operation_global_images_debian7_delete.json
│ │ │ │ │ │ ├── operations_operation_global_instanceTemplates_insert.json
│ │ │ │ │ │ ├── operations_operation_global_networks_lcnetwork_delete.json
│ │ │ │ │ │ ├── operations_operation_global_networks_post.json
│ │ │ │ │ │ ├── operations_operation_global_routes_lcdemoroute_delete.json
│ │ │ │ │ │ ├── operations_operation_global_routes_post.json
│ │ │ │ │ │ ├── operations_operation_global_snapshots_lcsnapshot_delete.json
│ │ │ │ │ │ ├── operations_operation_global_targetHttpProxies_post.json
│ │ │ │ │ │ ├── operations_operation_global_targetHttpProxies_web_proxy_delete.json
│ │ │ │ │ │ ├── operations_operation_global_urlMaps_post.json
│ │ │ │ │ │ ├── operations_operation_global_urlMaps_web_map_delete.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_addresses_lcaddress_delete.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_addresses_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_forwardingRules_lcforwardingrule_delete.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_forwardingRules_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_subnetworks_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_lb_pool_setBackup_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_lctargetpool_addHealthCheck_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_lctargetpool_addInstance_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_lctargetpool_delete.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_lctargetpool_removeHealthCheck_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_lctargetpool_removeInstance_post.json
│ │ │ │ │ │ ├── operations_operation_regions_us-central1_targetPools_post.json
│ │ │ │ │ │ ├── operations_operation_setCommonInstanceMetadata.json
│ │ │ │ │ │ ├── operations_operation_setUsageExportBucket.json
│ │ │ │ │ │ ├── operations_operation_zones_europe-west1-a_instances_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_disks_lcdisk_createSnapshot_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_disks_lcdisk_delete.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_disks_lcdisk_resize_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_disks_lcdisk_setLabels_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_disks_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_lcnode-000_delete.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_lcnode-001_delete.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node-name_attachDisk_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node-name_delete.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node-name_detachDisk_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node-name_reset_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node-name_setTags_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node_name_addAccessConfig_done.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node_name_addAccessConfig_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node_name_deleteAccessConfig_done.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_node_name_deleteAccessConfig_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_instances_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_targetInstances_lctargetinstance_delete.json
│ │ │ │ │ │ ├── operations_operation_zones_us-central1-a_targetInstances_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_instanceGroups_insert.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_instanceGroups_myname_addInstances.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_instanceGroups_myname_delete.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_instanceGroups_myname_removeInstances.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_instanceGroups_myname_setNamedPorts.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_node_name_setLabels_post.json
│ │ │ │ │ │ ├── operations_operation_zones_us_central1_a_node_name_setMetadata_post.json
│ │ │ │ │ │ ├── project.json
│ │ │ │ │ │ ├── projects_centos-cloud_global_images.json
│ │ │ │ │ │ ├── projects_coreos-cloud_global_images.json
│ │ │ │ │ │ ├── projects_coreos-cloud_global_images_family_coreos_beta.json
│ │ │ │ │ │ ├── projects_coreos-cloud_global_images_family_coreos_stable.json
│ │ │ │ │ │ ├── projects_coreos-cloud_global_licenses_coreos_stable.json
│ │ │ │ │ │ ├── projects_cos-cloud_global_images.json
│ │ │ │ │ │ ├── projects_debian-cloud_global_images.json
│ │ │ │ │ │ ├── projects_opensuse-cloud_global_images.json
│ │ │ │ │ │ ├── projects_other_name_global_networks_cf.json
│ │ │ │ │ │ ├── projects_other_name_global_networks_lcnetwork.json
│ │ │ │ │ │ ├── projects_other_name_global_networks_shared_network_for_mig.json
│ │ │ │ │ │ ├── projects_other_name_regions_us-central1.json
│ │ │ │ │ │ ├── projects_other_name_regions_us-central1_subnetworks_cf_972cf02e6ad49114.json
│ │ │ │ │ │ ├── projects_other_name_regions_us-central1_subnetworks_shared_subnetwork_for_mig.json
│ │ │ │ │ │ ├── projects_rhel-cloud_global_images.json
│ │ │ │ │ │ ├── projects_rhel-cloud_global_licenses_rhel_server.json
│ │ │ │ │ │ ├── projects_suse-byos-cloud_global_images.json
│ │ │ │ │ │ ├── projects_suse-cloud_global_images.json
│ │ │ │ │ │ ├── projects_suse-cloud_global_licenses_sles_11.json
│ │ │ │ │ │ ├── projects_suse-cloud_global_licenses_sles_12.json
│ │ │ │ │ │ ├── projects_suse-sap-cloud_global_images.json
│ │ │ │ │ │ ├── projects_ubuntu-os-cloud_global_images.json
│ │ │ │ │ │ ├── projects_windows-cloud_global_images.json
│ │ │ │ │ │ ├── projects_windows-cloud_global_licenses_windows_server_2008_r2_dc.json
│ │ │ │ │ │ ├── projects_windows-sql-cloud_global_images.json
│ │ │ │ │ │ ├── regions-paged-1.json
│ │ │ │ │ │ ├── regions-paged-2.json
│ │ │ │ │ │ ├── regions.json
│ │ │ │ │ │ ├── regions_asia-east1.json
│ │ │ │ │ │ ├── regions_europe-west1.json
│ │ │ │ │ │ ├── regions_us-central1.json
│ │ │ │ │ │ ├── regions_us-central1_addresses.json
│ │ │ │ │ │ ├── regions_us-central1_addresses_lcaddress.json
│ │ │ │ │ │ ├── regions_us-central1_addresses_lcaddress_delete.json
│ │ │ │ │ │ ├── regions_us-central1_addresses_lcaddressinternal.json
│ │ │ │ │ │ ├── regions_us-central1_addresses_post.json
│ │ │ │ │ │ ├── regions_us-central1_addresses_testaddress.json
│ │ │ │ │ │ ├── regions_us-central1_forwardingRules.json
│ │ │ │ │ │ ├── regions_us-central1_forwardingRules_lcforwardingrule.json
│ │ │ │ │ │ ├── regions_us-central1_forwardingRules_lcforwardingrule_delete.json
│ │ │ │ │ │ ├── regions_us-central1_forwardingRules_libcloud-lb-demo-lb.json
│ │ │ │ │ │ ├── regions_us-central1_forwardingRules_post.json
│ │ │ │ │ │ ├── regions_us-central1_subnetworks.json
│ │ │ │ │ │ ├── regions_us-central1_subnetworks_cf_972cf02e6ad49112.json
│ │ │ │ │ │ ├── regions_us-central1_subnetworks_post.json
│ │ │ │ │ │ ├── regions_us-central1_subnetworks_subnet_1.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_backup_pool.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lb_pool.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lb_pool_getHealth.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lb_pool_setBackup_post.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool_addHealthCheck_post.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool_addInstance_post.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool_delete.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool_removeHealthCheck_post.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool_removeInstance_post.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_lctargetpool_sticky.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_libcloud-lb-demo-lb-tp.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_post.json
│ │ │ │ │ │ ├── regions_us-central1_targetPools_www-pool.json
│ │ │ │ │ │ ├── regions_us-east1.json
│ │ │ │ │ │ ├── regions_us-east1_subnetworks_cf_972cf02e6ad49113.json
│ │ │ │ │ │ ├── setCommonInstanceMetadata_post.json
│ │ │ │ │ │ ├── setUsageExportBucket_post.json
│ │ │ │ │ │ ├── zones.json
│ │ │ │ │ │ ├── zones_asia-east1-b.json
│ │ │ │ │ │ ├── zones_europe-west1-a_diskTypes_pd_standard.json
│ │ │ │ │ │ ├── zones_europe-west1-a_instances.json
│ │ │ │ │ │ ├── zones_europe-west1-a_instances_post.json
│ │ │ │ │ │ ├── zones_europe-west1-a_machineTypes_n1-standard-1.json
│ │ │ │ │ │ ├── zones_us-central1-a.json
│ │ │ │ │ │ ├── zones_us-central1-a_diskTypes.json
│ │ │ │ │ │ ├── zones_us-central1-a_diskTypes_pd_ssd.json
│ │ │ │ │ │ ├── zones_us-central1-a_diskTypes_pd_standard.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks_lcdisk.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks_lcdisk_createSnapshot_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks_lcdisk_delete.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks_lcdisk_resize_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks_lcdisk_setLabel_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_disks_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_disktypes_pd-ssd.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroupManagers.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroupManagers_insert.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroupManagers_myinstancegroup.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroupManagers_myinstancegroup_shared_network.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroup_myinstancegroup.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroup_myinstancegroup2.json
│ │ │ │ │ │ ├── zones_us-central1-a_instanceGroup_myinstancegroup_shared_network.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_lcnode-000.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_lcnode-000_delete.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_lcnode-001.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_lcnode-001_delete.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node-name.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node-name_attachDisk_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node-name_delete.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node-name_detachDisk_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node-name_reset_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node-name_setTags_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_node_name_getSerialOutput.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_instances_sn-node-name.json
│ │ │ │ │ │ ├── zones_us-central1-a_machineTypes.json
│ │ │ │ │ │ ├── zones_us-central1-a_machineTypes_n1-standard-1.json
│ │ │ │ │ │ ├── zones_us-central1-a_operations_operation_zones_us-central1-a_instanceGroupManagers_insert_post.json
│ │ │ │ │ │ ├── zones_us-central1-a_targetInstances.json
│ │ │ │ │ │ ├── zones_us-central1-a_targetInstances_lctargetinstance.json
│ │ │ │ │ │ ├── zones_us-central1-a_targetInstances_lctargetinstance_delete.json
│ │ │ │ │ │ ├── zones_us-central1-a_targetInstances_post.json
│ │ │ │ │ │ ├── zones_us-central1-b_instanceGroupManagers_myinstancegroup.json
│ │ │ │ │ │ ├── zones_us-central1-b_instanceGroup_myinstancegroup.json
│ │ │ │ │ │ ├── zones_us-central1-b_instances_libcloud-lb-demo-www-000.json
│ │ │ │ │ │ ├── zones_us-central1-b_instances_libcloud-lb-demo-www-001.json
│ │ │ │ │ │ ├── zones_us-central1-b_instances_libcloud-lb-demo-www-002.json
│ │ │ │ │ │ ├── zones_us-central1-b_instances_libcloud-lb-nopubip-001.json
│ │ │ │ │ │ ├── zones_us-east1-b.json
│ │ │ │ │ │ ├── zones_us-east1-b_instanceGroupManagers.json
│ │ │ │ │ │ ├── zones_us-east1-b_instanceGroup_myinstancegroup.json
│ │ │ │ │ │ ├── zones_us_central1_a_acceleratorTypes_nvidia_tesla_k80.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_insert.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_myname.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_myname_addInstances.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_myname_delete.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_myname_listInstances.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_myname_removeInstances.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_myname_setNamedPorts.json
│ │ │ │ │ │ ├── zones_us_central1_a_instanceGroups_zone_attribute_not_present.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_custom_node.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_node_name_setDiskAutoDelete.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_node_name_setLabels_post.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_node_name_setMachineType.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_node_name_setMetadata_post.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_node_name_stop.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_stopped_node.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_stopped_node_setMachineType.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_stopped_node_start.json
│ │ │ │ │ │ ├── zones_us_central1_a_instances_stopped_node_stop.json
│ │ │ │ │ │ ├── zones_us_central1_a_operations_operation_setMachineType.json
│ │ │ │ │ │ ├── zones_us_central1_a_operations_operation_setMachineType_notstopped.json
│ │ │ │ │ │ ├── zones_us_central1_a_operations_operation_startnode.json
│ │ │ │ │ │ ├── zones_us_central1_a_operations_operation_stopnode.json
│ │ │ │ │ │ └── zones_us_central1_a_operations_operation_volume_auto_delete.json
│ │ │ │ │ ├── gig_g8
│ │ │ │ │ │ ├── POST_cloudspaces_create.json
│ │ │ │ │ │ ├── POST_cloudspaces_delete.json
│ │ │ │ │ │ ├── POST_cloudspaces_get.json
│ │ │ │ │ │ ├── POST_cloudspaces_list.json
│ │ │ │ │ │ ├── POST_disks_create.json
│ │ │ │ │ │ ├── POST_disks_delete.json
│ │ │ │ │ │ ├── POST_disks_get.json
│ │ │ │ │ │ ├── POST_disks_list.json
│ │ │ │ │ │ ├── POST_images_list.json
│ │ │ │ │ │ ├── POST_locations_list.json
│ │ │ │ │ │ ├── POST_machines_attachDisk.json
│ │ │ │ │ │ ├── POST_machines_create.json
│ │ │ │ │ │ ├── POST_machines_delete.json
│ │ │ │ │ │ ├── POST_machines_detachDisk.json
│ │ │ │ │ │ ├── POST_machines_get.json
│ │ │ │ │ │ ├── POST_machines_list.json
│ │ │ │ │ │ ├── POST_machines_reboot.json
│ │ │ │ │ │ ├── POST_machines_start.json
│ │ │ │ │ │ ├── POST_machines_stop.json
│ │ │ │ │ │ ├── POST_portforwarding_create.json
│ │ │ │ │ │ ├── POST_portforwarding_deleteByPort.json
│ │ │ │ │ │ ├── POST_portforwarding_list.json
│ │ │ │ │ │ ├── POST_sizes_list.json
│ │ │ │ │ │ └── POST_system_usermanager_whoami.json
│ │ │ │ │ ├── gridscale
│ │ │ │ │ │ ├── create_image.json
│ │ │ │ │ │ ├── create_image_dict.json
│ │ │ │ │ │ ├── create_ip.json
│ │ │ │ │ │ ├── create_ip_response_dict.json
│ │ │ │ │ │ ├── create_network.json
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── create_node_dict.json
│ │ │ │ │ │ ├── create_node_response_dict.json
│ │ │ │ │ │ ├── create_volume.json
│ │ │ │ │ │ ├── create_volume_response_dict.json
│ │ │ │ │ │ ├── ex_list_ips.json
│ │ │ │ │ │ ├── ex_list_networks.json
│ │ │ │ │ │ ├── ex_start_node.json
│ │ │ │ │ │ ├── get_image.json
│ │ │ │ │ │ ├── ips_to_node.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ ├── list_locations.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── list_volume_snapshots.json
│ │ │ │ │ │ ├── list_volumes.json
│ │ │ │ │ │ ├── list_volumes_empty.json
│ │ │ │ │ │ ├── network_to_node.json
│ │ │ │ │ │ └── volume_to_node.json
│ │ │ │ │ ├── hostvirtual
│ │ │ │ │ │ ├── cancel_package.json
│ │ │ │ │ │ ├── get_node.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_locations.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── list_packages.json
│ │ │ │ │ │ ├── list_sizes.json
│ │ │ │ │ │ ├── node_reboot.json
│ │ │ │ │ │ ├── node_start.json
│ │ │ │ │ │ ├── node_stop.json
│ │ │ │ │ │ ├── order_package.json
│ │ │ │ │ │ └── unlink_package.json
│ │ │ │ │ ├── kamatera
│ │ │ │ │ │ ├── capabilities_datacenter_EU.json
│ │ │ │ │ │ ├── create_server.json
│ │ │ │ │ │ ├── create_server_sshkey.json
│ │ │ │ │ │ ├── datacenters.json
│ │ │ │ │ │ ├── failed_auth.json
│ │ │ │ │ │ ├── images_datacenter_EU.json
│ │ │ │ │ │ ├── queue_12345-1.json
│ │ │ │ │ │ ├── queue_12345-2.json
│ │ │ │ │ │ ├── queue_12345-3.json
│ │ │ │ │ │ ├── queue_12345-4.json
│ │ │ │ │ │ ├── server_info.json
│ │ │ │ │ │ ├── server_operation.json
│ │ │ │ │ │ ├── servers.json
│ │ │ │ │ │ └── sizes_datacenter_EU.json
│ │ │ │ │ ├── ktucloud
│ │ │ │ │ │ ├── deployVirtualMachine_default.json
│ │ │ │ │ │ ├── deployVirtualMachine_deployfail.json
│ │ │ │ │ │ ├── deployVirtualMachine_deployfail2.json
│ │ │ │ │ │ ├── destroyVirtualMachine_default.json
│ │ │ │ │ │ ├── listAvailableProductTypes_default.json
│ │ │ │ │ │ ├── listAvailableProductTypes_nodisk.json
│ │ │ │ │ │ ├── listAvailableProductTypes_notemplates.json
│ │ │ │ │ │ ├── listIpForwardingRules_default.json
│ │ │ │ │ │ ├── listPortForwardingRules_default.json
│ │ │ │ │ │ ├── listPublicIpAddresses_default.json
│ │ │ │ │ │ ├── listVirtualMachines_default.json
│ │ │ │ │ │ ├── listZones_default.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17164.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17165.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17166.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17177.json
│ │ │ │ │ │ ├── queryAsyncJobResult_attachvolumejob.json
│ │ │ │ │ │ ├── queryAsyncJobResult_createvolumejob.json
│ │ │ │ │ │ └── rebootVirtualMachine_default.json
│ │ │ │ │ ├── kubevirt
│ │ │ │ │ │ ├── _api_v1_namespaces.json
│ │ │ │ │ │ ├── create_vm.json
│ │ │ │ │ │ ├── delete_vmi_testvm.json
│ │ │ │ │ │ ├── get_default_vms.json
│ │ │ │ │ │ ├── get_kube_node_lease_vms.json
│ │ │ │ │ │ ├── get_kube_public_vms.json
│ │ │ │ │ │ ├── get_kube_system_vms.json
│ │ │ │ │ │ ├── get_kubevirt_vms.json
│ │ │ │ │ │ ├── get_pods.json
│ │ │ │ │ │ ├── get_services.json
│ │ │ │ │ │ ├── start_testvm.json
│ │ │ │ │ │ └── stop_testvm.json
│ │ │ │ │ ├── linode
│ │ │ │ │ │ ├── _avail_datacenters.json
│ │ │ │ │ │ ├── _avail_distributions.json
│ │ │ │ │ │ ├── _avail_kernels.json
│ │ │ │ │ │ ├── _avail_linodeplans.json
│ │ │ │ │ │ ├── _batch.json
│ │ │ │ │ │ ├── _linode_disk_list.json
│ │ │ │ │ │ ├── _linode_ip_list.json
│ │ │ │ │ │ └── _linode_list.json
│ │ │ │ │ ├── linode_v4
│ │ │ │ │ │ ├── allocate_private_address.json
│ │ │ │ │ │ ├── attach_volume_to_node.json
│ │ │ │ │ │ ├── clone_volume.json
│ │ │ │ │ │ ├── create_disk.json
│ │ │ │ │ │ ├── create_image.json
│ │ │ │ │ │ ├── create_key_pair.json
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── create_node_no_image.json
│ │ │ │ │ │ ├── create_volume.json
│ │ │ │ │ │ ├── create_volume_unattached.json
│ │ │ │ │ │ ├── ex_get_node.json
│ │ │ │ │ │ ├── ex_get_volume.json
│ │ │ │ │ │ ├── ex_rename_node.json
│ │ │ │ │ │ ├── list_addresses.json
│ │ │ │ │ │ ├── list_addresses_for_node.json
│ │ │ │ │ │ ├── list_disks.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_images_paginated_page_1.json
│ │ │ │ │ │ ├── list_images_paginated_page_2.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ ├── list_locations.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── list_types.json
│ │ │ │ │ │ └── list_volumes.json
│ │ │ │ │ ├── maxihost
│ │ │ │ │ │ ├── images.json
│ │ │ │ │ │ ├── keys.json
│ │ │ │ │ │ ├── node.json
│ │ │ │ │ │ ├── nodes.json
│ │ │ │ │ │ ├── plans.json
│ │ │ │ │ │ └── regions.json
│ │ │ │ │ ├── meta
│ │ │ │ │ │ ├── helloworld.txt
│ │ │ │ │ │ ├── unicode.json
│ │ │ │ │ │ ├── unicode.txt
│ │ │ │ │ │ └── unicode.xml
│ │ │ │ │ ├── misc
│ │ │ │ │ │ ├── test_dsa.key
│ │ │ │ │ │ ├── test_dsa_non_paramiko_recognized_header.key
│ │ │ │ │ │ ├── test_ecdsa.key
│ │ │ │ │ │ ├── test_ecdsa_non_paramiko_recognized_header.key
│ │ │ │ │ │ ├── test_ed25519.key
│ │ │ │ │ │ ├── test_ed25519.pub
│ │ │ │ │ │ ├── test_rsa.key
│ │ │ │ │ │ ├── test_rsa.pub
│ │ │ │ │ │ ├── test_rsa_2048b_pass_foobar.key
│ │ │ │ │ │ ├── test_rsa_2048b_pass_foobar.pub
│ │ │ │ │ │ ├── test_rsa_non_paramiko_recognized_header.key
│ │ │ │ │ │ ├── test_rsa_non_pem_format.key
│ │ │ │ │ │ └── test_rsa_non_pem_format.pub
│ │ │ │ │ ├── nttcis
│ │ │ │ │ │ ├── audit_log.csv
│ │ │ │ │ │ ├── cg_by_src_network_domain.xml
│ │ │ │ │ │ ├── change_disk_size.xml
│ │ │ │ │ │ ├── change_disk_speed.xml
│ │ │ │ │ │ ├── change_nic_networkadapter_response.xml
│ │ │ │ │ │ ├── create_preview_server.xml
│ │ │ │ │ │ ├── datacenter_snapshotWindows.xml
│ │ │ │ │ │ ├── deploy_customised_server.xml
│ │ │ │ │ │ ├── detailed_usage_report.csv
│ │ │ │ │ │ ├── disable_server_snapshot_service.xml
│ │ │ │ │ │ ├── drs_create_cg.xml
│ │ │ │ │ │ ├── drs_delete_consistency_group.xml
│ │ │ │ │ │ ├── drs_expand_journal.xml
│ │ │ │ │ │ ├── drs_fail_create_cg_ineligible.xml
│ │ │ │ │ │ ├── drs_fail_create_cg_not_supported.xml
│ │ │ │ │ │ ├── drs_fail_create_consistency_group.xml
│ │ │ │ │ │ ├── drs_initiate_failover.xml
│ │ │ │ │ │ ├── drs_invalid_status.xml
│ │ │ │ │ │ ├── drs_snap_shots_by_min_max_time.xml
│ │ │ │ │ │ ├── drs_snapshots_by_min.xml
│ │ │ │ │ │ ├── drs_start_failover_preview.xml
│ │ │ │ │ │ ├── drs_stop_failover_preview.xml
│ │ │ │ │ │ ├── enable_snapshot_service.xml
│ │ │ │ │ │ ├── exchange_nic_vlans_response.xml
│ │ │ │ │ │ ├── geographic_regions.xml
│ │ │ │ │ │ ├── get_cg_by_name_or_id.xml
│ │ │ │ │ │ ├── image_customerImage.xml
│ │ │ │ │ │ ├── image_customerImage_2ffa36c8_1848_49eb_b4fa_9d908775f68c.xml
│ │ │ │ │ │ ├── image_customerImage_5234e5c7_01de_4411_8b6e_baeb8d91cf5d.xml
│ │ │ │ │ │ ├── image_osImage.xml
│ │ │ │ │ │ ├── image_osImage_6b4fb0c7_a57b_4f58_b59c_9958f94f971a.xml
│ │ │ │ │ │ ├── image_osImage_BAD_REQUEST.xml
│ │ │ │ │ │ ├── image_osImage_c14b1a46_2428_44c1_9c1a_b20e6418d08c.xml
│ │ │ │ │ │ ├── import_image_response.xml
│ │ │ │ │ │ ├── infrastructure_datacenter.xml
│ │ │ │ │ │ ├── infrastructure_datacenter_NA9.xml
│ │ │ │ │ │ ├── initiate_manual_snapshot.xml
│ │ │ │ │ │ ├── ip_address_list_create.xml
│ │ │ │ │ │ ├── ip_address_list_delete.xml
│ │ │ │ │ │ ├── ip_address_list_edit.xml
│ │ │ │ │ │ ├── ip_address_lists.xml
│ │ │ │ │ │ ├── ip_address_lists_FILTERBYNAME.xml
│ │ │ │ │ │ ├── list_consistency_groups.xml
│ │ │ │ │ │ ├── list_drs_snapshots.xml
│ │ │ │ │ │ ├── list_server_snapshots.xml
│ │ │ │ │ │ ├── manual_snapshot_server.xml
│ │ │ │ │ │ ├── networkWithLocation.xml
│ │ │ │ │ │ ├── network_addPublicIpBlock.xml
│ │ │ │ │ │ ├── network_createFirewallRule.xml
│ │ │ │ │ │ ├── network_createNatRule.xml
│ │ │ │ │ │ ├── network_deleteFirewallRule.xml
│ │ │ │ │ │ ├── network_deleteNatRule.xml
│ │ │ │ │ │ ├── network_deleteNetworkDomain.xml
│ │ │ │ │ │ ├── network_deleteVlan.xml
│ │ │ │ │ │ ├── network_deployNetworkDomain.xml
│ │ │ │ │ │ ├── network_deployVlan.xml
│ │ │ │ │ │ ├── network_editFirewallRule.xml
│ │ │ │ │ │ ├── network_editNetworkDomain.xml
│ │ │ │ │ │ ├── network_editVlan.xml
│ │ │ │ │ │ ├── network_expandVlan.xml
│ │ │ │ │ │ ├── network_firewallRule.xml
│ │ │ │ │ │ ├── network_firewallRule_d0a20f59_77b9_4f28_a63b_e58496b73a6c.xml
│ │ │ │ │ │ ├── network_natRule.xml
│ │ │ │ │ │ ├── network_natRule_2187a636_7ebb_49a1_a2ff_5d617f496dce.xml
│ │ │ │ │ │ ├── network_networkDomain.xml
│ │ │ │ │ │ ├── network_networkDomain_8cdfd607_f429_4df6_9352_162cfc0891be.xml
│ │ │ │ │ │ ├── network_publicIpBlock.xml
│ │ │ │ │ │ ├── network_publicIpBlock_4487241a_f0ca_11e3_9315_d4bed9b167ba.xml
│ │ │ │ │ │ ├── network_publicIpBlock_9945dc4a_bdce_11e4_8c14_b8ca3a5d9ef8.xml
│ │ │ │ │ │ ├── network_removePublicIpBlock.xml
│ │ │ │ │ │ ├── network_vlan.xml
│ │ │ │ │ │ ├── network_vlan_0e56433f_d808_4669_821d_812769517ff8.xml
│ │ │ │ │ │ ├── oec_0_9_myaccount.xml
│ │ │ │ │ │ ├── port_list_create.xml
│ │ │ │ │ │ ├── port_list_delete.xml
│ │ │ │ │ │ ├── port_list_edit.xml
│ │ │ │ │ │ ├── port_list_get.xml
│ │ │ │ │ │ ├── port_list_lists.xml
│ │ │ │ │ │ ├── report_usageMonitoring.xml
│ │ │ │ │ │ ├── server_GetServer.xml
│ │ │ │ │ │ ├── server_addDisk.xml
│ │ │ │ │ │ ├── server_addNic.xml
│ │ │ │ │ │ ├── server_antiAffinityRule_list.xml
│ │ │ │ │ │ ├── server_antiAffinityRule_list_PAGINATED.xml
│ │ │ │ │ │ ├── server_changeServerMonitoringPlan.xml
│ │ │ │ │ │ ├── server_cleanServer.xml
│ │ │ │ │ │ ├── server_clone_response.xml
│ │ │ │ │ │ ├── server_createAntiAffinityRule.xml
│ │ │ │ │ │ ├── server_createAntiAffinityRule_FAIL.xml
│ │ │ │ │ │ ├── server_deleteAntiAffinityRule.xml
│ │ │ │ │ │ ├── server_deleteAntiAffinityRule_FAIL.xml
│ │ │ │ │ │ ├── server_deleteServer.xml
│ │ │ │ │ │ ├── server_deleteServer_RESOURCEBUSY.xml
│ │ │ │ │ │ ├── server_deployServer.xml
│ │ │ │ │ │ ├── server_disableServerMonitoring.xml
│ │ │ │ │ │ ├── server_editServerMetadata.xml
│ │ │ │ │ │ ├── server_enableServerMonitoring.xml
│ │ │ │ │ │ ├── server_powerOffServer.xml
│ │ │ │ │ │ ├── server_powerOffServer_INPROGRESS.xml
│ │ │ │ │ │ ├── server_rebootServer.xml
│ │ │ │ │ │ ├── server_rebootServer_RESOURCEBUSY.xml
│ │ │ │ │ │ ├── server_reconfigureServer.xml
│ │ │ │ │ │ ├── server_removeDisk.xml
│ │ │ │ │ │ ├── server_removeNic.xml
│ │ │ │ │ │ ├── server_resetServer.xml
│ │ │ │ │ │ ├── server_server.xml
│ │ │ │ │ │ ├── server_server_NA3.xml
│ │ │ │ │ │ ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│ │ │ │ │ │ ├── server_server_paginated.xml
│ │ │ │ │ │ ├── server_server_paginated_empty.xml
│ │ │ │ │ │ ├── server_shutdownServer.xml
│ │ │ │ │ │ ├── server_shutdownServer_INPROGRESS.xml
│ │ │ │ │ │ ├── server_startServer.xml
│ │ │ │ │ │ ├── server_startServer_INPROGRESS.xml
│ │ │ │ │ │ ├── server_updateVmwareTools.xml
│ │ │ │ │ │ ├── summary_usage_report.csv
│ │ │ │ │ │ ├── tag_applyTags.xml
│ │ │ │ │ │ ├── tag_applyTags_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_createTagKey.xml
│ │ │ │ │ │ ├── tag_createTagKey_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_deleteTagKey.xml
│ │ │ │ │ │ ├── tag_deleteTagKey_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_editTagKey.xml
│ │ │ │ │ │ ├── tag_editTagKey_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_removeTag.xml
│ │ │ │ │ │ ├── tag_removeTag_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_tagKey_5ab77f5f_5aa9_426f_8459_4eab34e03d54.xml
│ │ │ │ │ │ ├── tag_tagKey_5ab77f5f_5aa9_426f_8459_4eab34e03d54_BADREQUEST.xml
│ │ │ │ │ │ ├── tag_tagKey_list.xml
│ │ │ │ │ │ ├── tag_tagKey_list_SINGLE.xml
│ │ │ │ │ │ └── tag_tag_list.xml
│ │ │ │ │ ├── onapp
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── get_key_pair.json
│ │ │ │ │ │ ├── import_key_pair.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ └── profile.json
│ │ │ │ │ ├── opennebula_1_4
│ │ │ │ │ │ ├── compute_15.xml
│ │ │ │ │ │ ├── compute_25.xml
│ │ │ │ │ │ ├── compute_5.xml
│ │ │ │ │ │ ├── computes.xml
│ │ │ │ │ │ ├── disk_15.xml
│ │ │ │ │ │ ├── disk_5.xml
│ │ │ │ │ │ ├── network_15.xml
│ │ │ │ │ │ ├── network_5.xml
│ │ │ │ │ │ ├── networks.xml
│ │ │ │ │ │ └── storage.xml
│ │ │ │ │ ├── opennebula_2_0
│ │ │ │ │ │ ├── compute_15.xml
│ │ │ │ │ │ ├── compute_25.xml
│ │ │ │ │ │ ├── compute_5.xml
│ │ │ │ │ │ ├── compute_collection.xml
│ │ │ │ │ │ ├── network_15.xml
│ │ │ │ │ │ ├── network_5.xml
│ │ │ │ │ │ ├── network_collection.xml
│ │ │ │ │ │ ├── storage_15.xml
│ │ │ │ │ │ ├── storage_5.xml
│ │ │ │ │ │ └── storage_collection.xml
│ │ │ │ │ ├── opennebula_3_0
│ │ │ │ │ │ ├── network_15.xml
│ │ │ │ │ │ ├── network_5.xml
│ │ │ │ │ │ └── network_collection.xml
│ │ │ │ │ ├── opennebula_3_2
│ │ │ │ │ │ ├── compute_5.xml
│ │ │ │ │ │ └── instance_type_collection.xml
│ │ │ │ │ ├── opennebula_3_6
│ │ │ │ │ │ ├── compute_15.xml
│ │ │ │ │ │ ├── compute_5.xml
│ │ │ │ │ │ ├── disk_10.xml
│ │ │ │ │ │ ├── disk_15.xml
│ │ │ │ │ │ └── storage_5.xml
│ │ │ │ │ ├── opennebula_3_8
│ │ │ │ │ │ ├── instance_type_collection.xml
│ │ │ │ │ │ ├── instance_type_large.xml
│ │ │ │ │ │ ├── instance_type_medium.xml
│ │ │ │ │ │ └── instance_type_small.xml
│ │ │ │ │ ├── openstack
│ │ │ │ │ │ ├── 300_multiple_choices.json
│ │ │ │ │ │ ├── _v1_1__auth.json
│ │ │ │ │ │ ├── _v1_1__auth_mssing_token.json
│ │ │ │ │ │ ├── _v1_1__auth_unauthorized.json
│ │ │ │ │ │ ├── _v2_0__auth.json
│ │ │ │ │ │ ├── _v2_0__auth_deployment.json
│ │ │ │ │ │ ├── _v2_0__auth_lon.json
│ │ │ │ │ │ ├── _v3__auth.json
│ │ │ │ │ │ ├── _v3__auth_unauthorized.json
│ │ │ │ │ │ ├── v1_slug_flavors_detail.xml
│ │ │ │ │ │ ├── v1_slug_images_detail.xml
│ │ │ │ │ │ ├── v1_slug_images_post.xml
│ │ │ │ │ │ ├── v1_slug_limits.xml
│ │ │ │ │ │ ├── v1_slug_servers.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_ipv6.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_missing.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_multiple_nodes.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_no_ip.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_pending.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_same_uuid.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_deployment_success.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_empty.xml
│ │ │ │ │ │ ├── v1_slug_servers_detail_metadata.xml
│ │ │ │ │ │ ├── v1_slug_servers_ips.xml
│ │ │ │ │ │ ├── v1_slug_servers_metadata.xml
│ │ │ │ │ │ ├── v1_slug_servers_no_admin_pass.xml
│ │ │ │ │ │ ├── v1_slug_shared_ip_group.xml
│ │ │ │ │ │ ├── v1_slug_shared_ip_groups.xml
│ │ │ │ │ │ └── v1_slug_shared_ip_groups_detail.xml
│ │ │ │ │ ├── openstack_identity
│ │ │ │ │ │ ├── v2
│ │ │ │ │ │ │ └── v2_0_tenants.json
│ │ │ │ │ │ └── v3
│ │ │ │ │ │ │ ├── v3_create_user.json
│ │ │ │ │ │ │ ├── v3_domains.json
│ │ │ │ │ │ │ ├── v3_domains_default.json
│ │ │ │ │ │ │ ├── v3_domains_default_users_a_roles.json
│ │ │ │ │ │ │ ├── v3_projects.json
│ │ │ │ │ │ │ ├── v3_roles.json
│ │ │ │ │ │ │ ├── v3_users.json
│ │ │ │ │ │ │ ├── v3_users_a.json
│ │ │ │ │ │ │ ├── v3_users_a_projects.json
│ │ │ │ │ │ │ ├── v3_users_b.json
│ │ │ │ │ │ │ ├── v3_users_c.json
│ │ │ │ │ │ │ └── v3_versions.json
│ │ │ │ │ ├── openstack_v1.1
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── _flavor_extra_specs.json
│ │ │ │ │ │ ├── _flavors_7.json
│ │ │ │ │ │ ├── _flavors_detail.json
│ │ │ │ │ │ ├── _floating_ip.json
│ │ │ │ │ │ ├── _floating_ip_pools.json
│ │ │ │ │ │ ├── _floating_ips.json
│ │ │ │ │ │ ├── _images_13.json
│ │ │ │ │ │ ├── _images_4949f9ee_2421_4c81_8b49_13119446008b.json
│ │ │ │ │ │ ├── _images_8af1a54e_a1b2_4df8_b747_4bec97abc799_members.json
│ │ │ │ │ │ ├── _images_9af1a54e_a1b2_4df8_b747_4bec97abc799_members.json
│ │ │ │ │ │ ├── _images_d9a9cd9a_278a_444c_90a6_d24b8c688a63_members.json
│ │ │ │ │ │ ├── _images_d9a9cd9a_278a_444c_90a6_d24b8c688a63_members_016926dff12345e8b10329f24c99745b.json
│ │ │ │ │ │ ├── _images_detail.json
│ │ │ │ │ │ ├── _images_f24a3c1b-d52a-4116-91da-25b3eee8f55d.json
│ │ │ │ │ │ ├── _images_f24a3c1b-d52a-4116-91da-25b3eee8f55e.json
│ │ │ │ │ │ ├── _images_v2.json
│ │ │ │ │ │ ├── _images_v2_invalid_next.json
│ │ │ │ │ │ ├── _images_v2_page2.json
│ │ │ │ │ │ ├── _os_keypairs.json
│ │ │ │ │ │ ├── _os_keypairs_create.json
│ │ │ │ │ │ ├── _os_keypairs_create_import.json
│ │ │ │ │ │ ├── _os_keypairs_get_one.json
│ │ │ │ │ │ ├── _os_keypairs_not_found.json
│ │ │ │ │ │ ├── _os_networks.json
│ │ │ │ │ │ ├── _os_networks_POST.json
│ │ │ │ │ │ ├── _os_quota_sets_aTenantId.json
│ │ │ │ │ │ ├── _os_security_group_rules_create.json
│ │ │ │ │ │ ├── _os_security_groups.json
│ │ │ │ │ │ ├── _os_security_groups_create.json
│ │ │ │ │ │ ├── _os_snapshot.json
│ │ │ │ │ │ ├── _os_snapshot_rackspace.json
│ │ │ │ │ │ ├── _os_snapshots.json
│ │ │ │ │ │ ├── _os_snapshots_create.json
│ │ │ │ │ │ ├── _os_snapshots_create_rackspace.json
│ │ │ │ │ │ ├── _os_snapshots_rackspace.json
│ │ │ │ │ │ ├── _os_volumes.json
│ │ │ │ │ │ ├── _os_volumes_cd76a3a1_c4ce_40f6_9b9f_07a61508938d.json
│ │ │ │ │ │ ├── _os_volumes_create.json
│ │ │ │ │ │ ├── _port_v2.json
│ │ │ │ │ │ ├── _ports_v2.json
│ │ │ │ │ │ ├── _servers.json
│ │ │ │ │ │ ├── _servers_12063_metadata_two_keys.json
│ │ │ │ │ │ ├── _servers_12064.json
│ │ │ │ │ │ ├── _servers_12064247.json
│ │ │ │ │ │ ├── _servers_12064_updated_name_bob.json
│ │ │ │ │ │ ├── _servers_12065_os_volume_attachments.json
│ │ │ │ │ │ ├── _servers_12086_console_output.json
│ │ │ │ │ │ ├── _servers_1c01300f-ef97-4937-8f03-ac676d6234be_os-security-groups.json
│ │ │ │ │ │ ├── _servers_26f7fbee_8ce1_4c28_887a_bfe8e4bb10fe.json
│ │ │ │ │ │ ├── _servers_create.json
│ │ │ │ │ │ ├── _servers_create_disk_config.json
│ │ │ │ │ │ ├── _servers_detail.json
│ │ │ │ │ │ ├── _servers_detail_EMPTY.json
│ │ │ │ │ │ ├── _servers_detail_ERROR_STATE.json
│ │ │ │ │ │ ├── _servers_os_intefaces.json
│ │ │ │ │ │ ├── _servers_pause.json
│ │ │ │ │ │ ├── _servers_resume.json
│ │ │ │ │ │ ├── _servers_suspend.json
│ │ │ │ │ │ ├── _servers_unpause.json
│ │ │ │ │ │ ├── _v2_0__floatingip.json
│ │ │ │ │ │ ├── _v2_0__floatingips.json
│ │ │ │ │ │ ├── _v2_0__floatingips_ip_id.json
│ │ │ │ │ │ ├── _v2_0__floatingips_net_id.json
│ │ │ │ │ │ ├── _v2_0__network.json
│ │ │ │ │ │ ├── _v2_0__network_quota.json
│ │ │ │ │ │ ├── _v2_0__networks.json
│ │ │ │ │ │ ├── _v2_0__networks_POST.json
│ │ │ │ │ │ ├── _v2_0__networks_public.json
│ │ │ │ │ │ ├── _v2_0__os_server_group.json
│ │ │ │ │ │ ├── _v2_0__os_server_groups.json
│ │ │ │ │ │ ├── _v2_0__quota_set.json
│ │ │ │ │ │ ├── _v2_0__router.json
│ │ │ │ │ │ ├── _v2_0__router_interface.json
│ │ │ │ │ │ ├── _v2_0__routers.json
│ │ │ │ │ │ ├── _v2_0__security_group.json
│ │ │ │ │ │ ├── _v2_0__security_group_rule.json
│ │ │ │ │ │ ├── _v2_0__security_groups.json
│ │ │ │ │ │ ├── _v2_0__snapshot.json
│ │ │ │ │ │ ├── _v2_0__snapshots.json
│ │ │ │ │ │ ├── _v2_0__snapshots_paginate_start.json
│ │ │ │ │ │ ├── _v2_0__subnet.json
│ │ │ │ │ │ ├── _v2_0__subnets.json
│ │ │ │ │ │ ├── _v2_0__volume.json
│ │ │ │ │ │ ├── _v2_0__volume_abc6a3a1_c4ce_40f6_9b9f_07a61508938d.json
│ │ │ │ │ │ ├── _v2_0__volumes.json
│ │ │ │ │ │ ├── _v3_0__volume_quota.json
│ │ │ │ │ │ └── delete_floating_ip_167_138_123_111.json
│ │ │ │ │ ├── ovh
│ │ │ │ │ │ ├── auth_time_get.json
│ │ │ │ │ │ ├── flavor_get.json
│ │ │ │ │ │ ├── flavor_get_detail.json
│ │ │ │ │ │ ├── image_get.json
│ │ │ │ │ │ ├── image_get_detail.json
│ │ │ │ │ │ ├── instance_get.json
│ │ │ │ │ │ ├── instance_get_detail.json
│ │ │ │ │ │ ├── instance_post.json
│ │ │ │ │ │ ├── pricing_get.json
│ │ │ │ │ │ ├── region_get.json
│ │ │ │ │ │ ├── ssh_get.json
│ │ │ │ │ │ ├── ssh_get_detail.json
│ │ │ │ │ │ ├── volume_get.json
│ │ │ │ │ │ ├── volume_get_detail.json
│ │ │ │ │ │ ├── volume_snapshot_get.json
│ │ │ │ │ │ └── volume_snapshot_get_details.json
│ │ │ │ │ ├── rimuhosting
│ │ │ │ │ │ ├── r_distributions.json
│ │ │ │ │ │ ├── r_orders.json
│ │ │ │ │ │ ├── r_orders_new_vps.json
│ │ │ │ │ │ ├── r_orders_order_88833465_api_ivan_net_nz_vps.json
│ │ │ │ │ │ ├── r_orders_order_88833465_api_ivan_net_nz_vps_running_state.json
│ │ │ │ │ │ └── r_pricing_plans.json
│ │ │ │ │ ├── scaleway
│ │ │ │ │ │ ├── create_image.json
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── create_volume.json
│ │ │ │ │ │ ├── create_volume_snapshot.json
│ │ │ │ │ │ ├── error.json
│ │ │ │ │ │ ├── error_invalid_image.json
│ │ │ │ │ │ ├── get_image.json
│ │ │ │ │ │ ├── list_availability.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── list_nodes_empty.json
│ │ │ │ │ │ ├── list_sizes.json
│ │ │ │ │ │ ├── list_volume_snapshots.json
│ │ │ │ │ │ ├── list_volumes.json
│ │ │ │ │ │ ├── list_volumes_empty.json
│ │ │ │ │ │ ├── reboot_node.json
│ │ │ │ │ │ ├── token_info.json
│ │ │ │ │ │ └── user_info.json
│ │ │ │ │ ├── terremark
│ │ │ │ │ │ ├── api_v0_8_catalogItem_5.xml
│ │ │ │ │ │ ├── api_v0_8_login.xml
│ │ │ │ │ │ ├── api_v0_8_org_240.xml
│ │ │ │ │ │ ├── api_v0_8_task_10496.xml
│ │ │ │ │ │ ├── api_v0_8_task_11001.xml
│ │ │ │ │ │ ├── api_v0_8_vapp_14031.xml
│ │ │ │ │ │ ├── api_v0_8_vapp_14031_action_deploy.xml
│ │ │ │ │ │ ├── api_v0_8_vapp_14031_get.xml
│ │ │ │ │ │ ├── api_v0_8_vapp_14031_power_action_powerOn.xml
│ │ │ │ │ │ ├── api_v0_8_vapp_14031_power_action_poweroff.xml
│ │ │ │ │ │ ├── api_v0_8_vapp_14031_power_action_reset.xml
│ │ │ │ │ │ ├── api_v0_8_vdc_224.xml
│ │ │ │ │ │ ├── api_v0_8_vdc_224_action_instantiateVAppTemplate.xml
│ │ │ │ │ │ └── api_v0_8_vdc_224_catalog.xml
│ │ │ │ │ ├── upcloud
│ │ │ │ │ │ ├── api_1_2_plan.json
│ │ │ │ │ │ ├── api_1_2_price.json
│ │ │ │ │ │ ├── api_1_2_server.json
│ │ │ │ │ │ ├── api_1_2_server_00893c98-5d5a-4363-b177-88df518a2b60.json
│ │ │ │ │ │ ├── api_1_2_server_00f8c525-7e62-4108-8115-3958df5b43dc.json
│ │ │ │ │ │ ├── api_1_2_server_00f8c525-7e62-4108-8115-3958df5b43dc_restart.json
│ │ │ │ │ │ ├── api_1_2_server_from_cdrom.json
│ │ │ │ │ │ ├── api_1_2_server_from_template.json
│ │ │ │ │ │ ├── api_1_2_storage_cdrom.json
│ │ │ │ │ │ ├── api_1_2_storage_template.json
│ │ │ │ │ │ ├── api_1_2_zone.json
│ │ │ │ │ │ └── api_1_2_zone_failed_auth.json
│ │ │ │ │ ├── vcl
│ │ │ │ │ │ ├── XMLRPCaddRequest.xml
│ │ │ │ │ │ ├── XMLRPCendRequest.xml
│ │ │ │ │ │ ├── XMLRPCextendRequest.xml
│ │ │ │ │ │ ├── XMLRPCgetImages.xml
│ │ │ │ │ │ ├── XMLRPCgetRequestConnectData.xml
│ │ │ │ │ │ ├── XMLRPCgetRequestIds.xml
│ │ │ │ │ │ ├── XMLRPCgetRequestStatus.xml
│ │ │ │ │ │ ├── v3_SoftLayer_Account_getVirtualGuests.xml
│ │ │ │ │ │ └── v3_SoftLayer_Location_Datacenter_getDatacenters.xml
│ │ │ │ │ ├── vcloud_1_5
│ │ │ │ │ │ ├── api_admin_group_b8202c48_7151_4e61_9a6c_155474c7d413.xml
│ │ │ │ │ │ ├── api_catalogItem_3132e037_759b_4627_9056_ca66466fa607.xml
│ │ │ │ │ │ ├── api_catalog_cddb3cb2_3394_4b14_b831_11fbc4028da4.xml
│ │ │ │ │ │ ├── api_network_dca8b667_6c8f_4c3e_be57_7a9425dba4f4.xml
│ │ │ │ │ │ ├── api_org.xml
│ │ │ │ │ │ ├── api_org_96726c78_4ae3_402f_b08b_7a78c6903d2a.xml
│ │ │ │ │ │ ├── api_query_group.xml
│ │ │ │ │ │ ├── api_query_user.xml
│ │ │ │ │ │ ├── api_query_vm.xml
│ │ │ │ │ │ ├── api_sessions.xml
│ │ │ │ │ │ ├── api_task_2518935e_b315_4d8e_9e99_9275f751877c.xml
│ │ │ │ │ │ ├── api_task_b034df55_fe81_4798_bc81_1f0fd0ead450.xml
│ │ │ │ │ │ ├── api_task_deploy.xml
│ │ │ │ │ │ ├── api_task_fab4b26f_4f2e_4d49_ad01_ae9324bbfe48.xml
│ │ │ │ │ │ ├── api_task_fe75d3af_f5a3_44a5_b016_ae0bdadfc32b.xml
│ │ │ │ │ │ ├── api_task_undeploy.xml
│ │ │ │ │ │ ├── api_task_undeploy_error.xml
│ │ │ │ │ │ ├── api_task_undeploy_power_off.xml
│ │ │ │ │ │ ├── api_vApp_undeployTest.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_controlAccess.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_all.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_powerOn.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_reset.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_create_snapshot.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_remove_snapshots.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_revert_snapshot.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6c.xml
│ │ │ │ │ │ ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6d.xml
│ │ │ │ │ │ ├── api_vApp_vapp_access_to_resource_forbidden.xml
│ │ │ │ │ │ ├── api_vApp_vm_test.xml
│ │ │ │ │ │ ├── api_vapp_get_metadata.xml
│ │ │ │ │ │ ├── api_vapp_post_metadata.xml
│ │ │ │ │ │ ├── api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0.xml
│ │ │ │ │ │ ├── api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_cloneVApp.xml
│ │ │ │ │ │ ├── api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_instantiateVAppTemplate.xml
│ │ │ │ │ │ ├── api_vdc_brokenVdc.xml
│ │ │ │ │ │ ├── get_api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_guestCustomizationSection.xml
│ │ │ │ │ │ ├── get_api_vApp_vm_test_virtualHardwareSection_cpu.xml
│ │ │ │ │ │ ├── get_api_vApp_vm_test_virtualHardwareSection_disks.xml
│ │ │ │ │ │ ├── get_api_vApp_vm_test_virtualHardwareSection_memory.xml
│ │ │ │ │ │ ├── put_api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_guestCustomizationSection.xml
│ │ │ │ │ │ ├── put_api_vApp_vm_test_virtualHardwareSection_cpu.xml
│ │ │ │ │ │ ├── put_api_vApp_vm_test_virtualHardwareSection_disks.xml
│ │ │ │ │ │ └── put_api_vApp_vm_test_virtualHardwareSection_memory.xml
│ │ │ │ │ ├── vpsnet
│ │ │ │ │ │ └── _available_clouds_api10json_templates.json
│ │ │ │ │ ├── vsphere
│ │ │ │ │ │ ├── list_clusters.json
│ │ │ │ │ │ ├── list_hosts.json
│ │ │ │ │ │ ├── list_interfaces.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── node_80.json
│ │ │ │ │ │ └── session_token.json
│ │ │ │ │ ├── vultr
│ │ │ │ │ │ ├── create_key_pair.json
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── error_rate_limit.txt
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ ├── list_locations.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ └── list_sizes.json
│ │ │ │ │ └── vultr_v2
│ │ │ │ │ │ ├── create_node.json
│ │ │ │ │ │ ├── create_node_bare_metal.json
│ │ │ │ │ │ ├── create_volume.json
│ │ │ │ │ │ ├── ex_create_network.json
│ │ │ │ │ │ ├── ex_create_snapshot.json
│ │ │ │ │ │ ├── ex_get_network.json
│ │ │ │ │ │ ├── ex_get_node.json
│ │ │ │ │ │ ├── ex_get_snapshot.json
│ │ │ │ │ │ ├── ex_get_volume.json
│ │ │ │ │ │ ├── ex_list_available_sizes_for_location.json
│ │ │ │ │ │ ├── ex_list_bare_metal_nodes.json
│ │ │ │ │ │ ├── ex_list_bare_metal_sizes.json
│ │ │ │ │ │ ├── ex_list_networks.json
│ │ │ │ │ │ ├── ex_list_snapshots.json
│ │ │ │ │ │ ├── ex_resize_node.json
│ │ │ │ │ │ ├── get_key_pair.json
│ │ │ │ │ │ ├── import_key_pair_from_string.json
│ │ │ │ │ │ ├── list_images.json
│ │ │ │ │ │ ├── list_images_paginated_1.json
│ │ │ │ │ │ ├── list_images_paginated_2.json
│ │ │ │ │ │ ├── list_images_paginated_3.json
│ │ │ │ │ │ ├── list_key_pairs.json
│ │ │ │ │ │ ├── list_locations.json
│ │ │ │ │ │ ├── list_nodes.json
│ │ │ │ │ │ ├── list_sizes.json
│ │ │ │ │ │ └── list_volumes.json
│ │ │ │ ├── test_abiquo.py
│ │ │ │ ├── test_auroracompute.py
│ │ │ │ ├── test_azure.py
│ │ │ │ ├── test_azure_arm.py
│ │ │ │ ├── test_base.py
│ │ │ │ ├── test_brightbox.py
│ │ │ │ ├── test_cloudscale.py
│ │ │ │ ├── test_cloudsigma_v1_0.py
│ │ │ │ ├── test_cloudsigma_v2_0.py
│ │ │ │ ├── test_cloudstack.py
│ │ │ │ ├── test_deployment.py
│ │ │ │ ├── test_digitalocean_v2.py
│ │ │ │ ├── test_dimensiondata_v2_3.py
│ │ │ │ ├── test_dimensiondata_v2_4.py
│ │ │ │ ├── test_ec2.py
│ │ │ │ ├── test_ecs.py
│ │ │ │ ├── test_equinixmetal.py
│ │ │ │ ├── test_exoscale.py
│ │ │ │ ├── test_gandi.py
│ │ │ │ ├── test_gce.py
│ │ │ │ ├── test_gig_g8.py
│ │ │ │ ├── test_gridscale.py
│ │ │ │ ├── test_ikoula.py
│ │ │ │ ├── test_internetsolutions.py
│ │ │ │ ├── test_kamatera.py
│ │ │ │ ├── test_ktucloud.py
│ │ │ │ ├── test_kubevirt.py
│ │ │ │ ├── test_libvirt_driver.py
│ │ │ │ ├── test_linode.py
│ │ │ │ ├── test_linode_v4.py
│ │ │ │ ├── test_maxihost.py
│ │ │ │ ├── test_ntta.py
│ │ │ │ ├── test_nttcis.py
│ │ │ │ ├── test_onapp.py
│ │ │ │ ├── test_opennebula.py
│ │ │ │ ├── test_openstack.py
│ │ │ │ ├── test_ovh.py
│ │ │ │ ├── test_rackspace.py
│ │ │ │ ├── test_rimuhosting.py
│ │ │ │ ├── test_scaleway.py
│ │ │ │ ├── test_ssh_client.py
│ │ │ │ ├── test_types.py
│ │ │ │ ├── test_upcloud.py
│ │ │ │ ├── test_vcl.py
│ │ │ │ ├── test_vcloud.py
│ │ │ │ ├── test_vpsnet.py
│ │ │ │ ├── test_vsphere.py
│ │ │ │ ├── test_vultr.py
│ │ │ │ └── test_vultr_v2.py
│ │ │ ├── conftest.py
│ │ │ ├── container
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── docker
│ │ │ │ │ │ ├── linux_124
│ │ │ │ │ │ │ ├── container_a68.json
│ │ │ │ │ │ │ ├── containers.json
│ │ │ │ │ │ │ ├── create_container.json
│ │ │ │ │ │ │ ├── create_image.txt
│ │ │ │ │ │ │ ├── images.json
│ │ │ │ │ │ │ ├── logs.txt
│ │ │ │ │ │ │ ├── search.json
│ │ │ │ │ │ │ └── version.json
│ │ │ │ │ │ └── mac_124
│ │ │ │ │ │ │ ├── containers.json
│ │ │ │ │ │ │ ├── create_container.json
│ │ │ │ │ │ │ ├── create_image.txt
│ │ │ │ │ │ │ ├── search.json
│ │ │ │ │ │ │ └── version.json
│ │ │ │ │ ├── docker_utils
│ │ │ │ │ │ ├── v2_repositories_library_ubuntu.json
│ │ │ │ │ │ ├── v2_repositories_library_ubuntu_tags.json
│ │ │ │ │ │ └── v2_repositories_library_ubuntu_tags_latest.json
│ │ │ │ │ ├── ecs
│ │ │ │ │ │ ├── createcluster.json
│ │ │ │ │ │ ├── createservice.json
│ │ │ │ │ │ ├── deletecluster.json
│ │ │ │ │ │ ├── deleteservice.json
│ │ │ │ │ │ ├── describeclusters.json
│ │ │ │ │ │ ├── describerepositories.json
│ │ │ │ │ │ ├── describeservices.json
│ │ │ │ │ │ ├── describetasks.json
│ │ │ │ │ │ ├── getauthorizationtoken.json
│ │ │ │ │ │ ├── listclusters.json
│ │ │ │ │ │ ├── listimages.json
│ │ │ │ │ │ ├── listservices.json
│ │ │ │ │ │ ├── listtasks.json
│ │ │ │ │ │ ├── registertaskdefinition.json
│ │ │ │ │ │ ├── runtask.json
│ │ │ │ │ │ └── stoptask.json
│ │ │ │ │ ├── gke
│ │ │ │ │ │ ├── zones_us-central1-a_instance_serverconfig.json
│ │ │ │ │ │ └── zones_us-central1-a_list.json
│ │ │ │ │ ├── kubernetes
│ │ │ │ │ │ ├── _api_v1_namespaces.json
│ │ │ │ │ │ ├── _api_v1_namespaces_default.json
│ │ │ │ │ │ ├── _api_v1_namespaces_default_DELETE.json
│ │ │ │ │ │ ├── _api_v1_namespaces_default_pods_POST.json
│ │ │ │ │ │ ├── _api_v1_namespaces_test.json
│ │ │ │ │ │ ├── _api_v1_nodes.json
│ │ │ │ │ │ ├── _api_v1_nodes_127_0_0_1.json
│ │ │ │ │ │ ├── _api_v1_pods.json
│ │ │ │ │ │ ├── _api_v1_services.json
│ │ │ │ │ │ ├── _apis_apps_v1_deployments.json
│ │ │ │ │ │ ├── _apis_metrics_k8s_io_v1beta1_nodes.json
│ │ │ │ │ │ ├── _apis_metrics_k8s_io_v1beta1_pods.json
│ │ │ │ │ │ └── _version.json
│ │ │ │ │ ├── lxd
│ │ │ │ │ │ └── linux_124
│ │ │ │ │ │ │ ├── background_op.json
│ │ │ │ │ │ │ ├── containers.json
│ │ │ │ │ │ │ ├── endpoints_sucess.json
│ │ │ │ │ │ │ ├── first_lxd_container.json
│ │ │ │ │ │ │ ├── image.json
│ │ │ │ │ │ │ ├── images.json
│ │ │ │ │ │ │ ├── no_meta_pool.json
│ │ │ │ │ │ │ ├── operation_1_wait.json
│ │ │ │ │ │ │ ├── second_lxd_container.json
│ │ │ │ │ │ │ ├── storage_pool_1.json
│ │ │ │ │ │ │ ├── storage_pool_2.json
│ │ │ │ │ │ │ ├── storage_pool_delete_fail.json
│ │ │ │ │ │ │ ├── storage_pool_delete_sucess.json
│ │ │ │ │ │ │ ├── storage_pools.json
│ │ │ │ │ │ │ └── version.json
│ │ │ │ │ └── rancher
│ │ │ │ │ │ ├── deploy_container.json
│ │ │ │ │ │ ├── ex_activate_service.json
│ │ │ │ │ │ ├── ex_activate_stack.json
│ │ │ │ │ │ ├── ex_deploy_service.json
│ │ │ │ │ │ ├── ex_deploy_stack.json
│ │ │ │ │ │ ├── ex_destroy_service.json
│ │ │ │ │ │ ├── ex_destroy_stack.json
│ │ │ │ │ │ ├── ex_list_services.json
│ │ │ │ │ │ ├── ex_list_stacks.json
│ │ │ │ │ │ ├── ex_search_containers.json
│ │ │ │ │ │ ├── ex_search_services.json
│ │ │ │ │ │ ├── list_containers.json
│ │ │ │ │ │ ├── start_container.json
│ │ │ │ │ │ └── stop_container.json
│ │ │ │ ├── test_docker.py
│ │ │ │ ├── test_docker_utils.py
│ │ │ │ ├── test_ecs.py
│ │ │ │ ├── test_gke.py
│ │ │ │ ├── test_kubernetes.py
│ │ │ │ ├── test_lxd.py
│ │ │ │ └── test_rancher.py
│ │ │ ├── dns
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── auroradns
│ │ │ │ │ │ ├── zone_create.json
│ │ │ │ │ │ ├── zone_example_com.json
│ │ │ │ │ │ ├── zone_example_com_health_check.json
│ │ │ │ │ │ ├── zone_example_com_health_checks.json
│ │ │ │ │ │ ├── zone_example_com_record_localhost.json
│ │ │ │ │ │ ├── zone_example_com_records.json
│ │ │ │ │ │ └── zone_list.json
│ │ │ │ │ ├── buddyns
│ │ │ │ │ │ ├── create_zone_success.json
│ │ │ │ │ │ ├── delete_zone_success.json
│ │ │ │ │ │ ├── empty_zones_list.json
│ │ │ │ │ │ ├── get_zone_success.json
│ │ │ │ │ │ ├── list_zones.json
│ │ │ │ │ │ ├── zone_already_exists.json
│ │ │ │ │ │ └── zone_does_not_exist.json
│ │ │ │ │ ├── cloudflare
│ │ │ │ │ │ ├── error_with_error_chain.json
│ │ │ │ │ │ ├── memberships_GET.json
│ │ │ │ │ │ ├── record_DELETE.json
│ │ │ │ │ │ ├── record_GET.json
│ │ │ │ │ │ ├── record_GET_400.json
│ │ │ │ │ │ ├── record_GET_404.json
│ │ │ │ │ │ ├── record_PUT.json
│ │ │ │ │ │ ├── records_GET_1.json
│ │ │ │ │ │ ├── records_GET_2.json
│ │ │ │ │ │ ├── records_POST.json
│ │ │ │ │ │ ├── records_POST_sshfp.json
│ │ │ │ │ │ ├── zone_DELETE.json
│ │ │ │ │ │ ├── zone_GET.json
│ │ │ │ │ │ ├── zone_GET_400.json
│ │ │ │ │ │ ├── zone_GET_404.json
│ │ │ │ │ │ ├── zone_PATCH.json
│ │ │ │ │ │ ├── zones_GET.json
│ │ │ │ │ │ └── zones_POST.json
│ │ │ │ │ ├── digitalocean
│ │ │ │ │ │ ├── _v2_domains.json
│ │ │ │ │ │ ├── _v2_domains_CREATE.json
│ │ │ │ │ │ ├── _v2_domains_EMPTY.json
│ │ │ │ │ │ ├── _v2_domains_UNAUTHORIZED.json
│ │ │ │ │ │ ├── _v2_domains_UNPROCESSABLE_ENTITY.json
│ │ │ │ │ │ ├── _v2_domains_testdomain.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_NOT_FOUND.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records_1234560.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records_1234561.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records_1234562.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records_1234564.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records_1234564_NOT_FOUND.json
│ │ │ │ │ │ ├── _v2_domains_testdomain_records_1234564_UPDATE.json
│ │ │ │ │ │ └── _v2_domains_testdomain_records_CREATE.json
│ │ │ │ │ ├── dnsimple
│ │ │ │ │ │ ├── create_domain.json
│ │ │ │ │ │ ├── create_domain_record.json
│ │ │ │ │ │ ├── get_domain.json
│ │ │ │ │ │ ├── get_domain_record.json
│ │ │ │ │ │ ├── list_domain_records.json
│ │ │ │ │ │ ├── list_domains.json
│ │ │ │ │ │ └── update_domain_record.json
│ │ │ │ │ ├── dnspod
│ │ │ │ │ │ ├── create_zone_success.json
│ │ │ │ │ │ ├── delete_record_record_does_not_exist.json
│ │ │ │ │ │ ├── delete_record_success.json
│ │ │ │ │ │ ├── delete_zone_success.json
│ │ │ │ │ │ ├── empty_zones_list.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_zone_success.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ ├── list_zones.json
│ │ │ │ │ │ ├── record_already_exists.json
│ │ │ │ │ │ ├── zone_already_exists.json
│ │ │ │ │ │ └── zone_does_not_exist.json
│ │ │ │ │ ├── durabledns
│ │ │ │ │ │ ├── create_record_NO_EXTRA_PARAMS.xml
│ │ │ │ │ │ ├── create_record_WITH_EXTRA_PARAMS.xml
│ │ │ │ │ │ ├── create_record_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── create_zone.xml
│ │ │ │ │ │ ├── create_zone_ZONE_ALREADY_EXIST.xml
│ │ │ │ │ │ ├── delete_record.xml
│ │ │ │ │ │ ├── delete_record_RECORD_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── delete_record_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── delete_zone.xml
│ │ │ │ │ │ ├── delete_zone_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── get_record.xml
│ │ │ │ │ │ ├── get_record_RECORD_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── get_record_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── get_zone.xml
│ │ │ │ │ │ ├── get_zone_NO_EXTRA_PARAMS.xml
│ │ │ │ │ │ ├── get_zone_UPDATE_ZONE.xml
│ │ │ │ │ │ ├── get_zone_WITH_EXTRA_PARAMS.xml
│ │ │ │ │ │ ├── get_zone_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── list_records.xml
│ │ │ │ │ │ ├── list_records_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── list_zones.xml
│ │ │ │ │ │ ├── update_record.xml
│ │ │ │ │ │ ├── update_record_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ │ ├── update_record_success.xml
│ │ │ │ │ │ ├── update_zone_UPDATE_ZONE.xml
│ │ │ │ │ │ └── update_zone_ZONE_DOES_NOT_EXIST.xml
│ │ │ │ │ ├── gandi
│ │ │ │ │ │ ├── create_record.xml
│ │ │ │ │ │ ├── create_zone.xml
│ │ │ │ │ │ ├── delete_record.xml
│ │ │ │ │ │ ├── delete_record_doesnotexist.xml
│ │ │ │ │ │ ├── delete_zone.xml
│ │ │ │ │ │ ├── delete_zone_fail.xml
│ │ │ │ │ │ ├── get_zone.xml
│ │ │ │ │ │ ├── list_records.xml
│ │ │ │ │ │ ├── list_records_empty.xml
│ │ │ │ │ │ ├── list_zones.xml
│ │ │ │ │ │ ├── new_version.xml
│ │ │ │ │ │ └── zone_doesnt_exist.xml
│ │ │ │ │ ├── gandi_live
│ │ │ │ │ │ ├── create_bad_zone.json
│ │ │ │ │ │ ├── create_domain.json
│ │ │ │ │ │ ├── create_existing_record.json
│ │ │ │ │ │ ├── create_record.json
│ │ │ │ │ │ ├── create_zone.json
│ │ │ │ │ │ ├── get_bad_zone.json
│ │ │ │ │ │ ├── get_mx_record.json
│ │ │ │ │ │ ├── get_nonexistent_record.json
│ │ │ │ │ │ ├── get_nonexistent_zone.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ ├── list_records_bind.txt
│ │ │ │ │ │ ├── list_zones.json
│ │ │ │ │ │ ├── update_bad_record.json
│ │ │ │ │ │ ├── update_gandi_zone.json
│ │ │ │ │ │ ├── update_mx_record.json
│ │ │ │ │ │ └── update_record.json
│ │ │ │ │ ├── godaddy
│ │ │ │ │ │ ├── purchase_request.json
│ │ │ │ │ │ ├── v1_domains.json
│ │ │ │ │ │ ├── v1_domains_agreements.json
│ │ │ │ │ │ ├── v1_domains_aperture_platform_com.json
│ │ │ │ │ │ ├── v1_domains_aperture_platform_com_records.json
│ │ │ │ │ │ ├── v1_domains_aperture_platform_com_records_A_www.json
│ │ │ │ │ │ ├── v1_domains_available.json
│ │ │ │ │ │ ├── v1_domains_purchase.json
│ │ │ │ │ │ ├── v1_domains_purchase_schema_com.json
│ │ │ │ │ │ └── v1_domains_tlds.json
│ │ │ │ │ ├── google
│ │ │ │ │ │ ├── get_zone_does_not_exists.json
│ │ │ │ │ │ ├── managed_zones_1.json
│ │ │ │ │ │ ├── no_record.json
│ │ │ │ │ │ ├── record.json
│ │ │ │ │ │ ├── record_changes.json
│ │ │ │ │ │ ├── records_list.json
│ │ │ │ │ │ ├── zone.json
│ │ │ │ │ │ ├── zone_create.json
│ │ │ │ │ │ └── zone_list.json
│ │ │ │ │ ├── linode
│ │ │ │ │ │ ├── create_domain.json
│ │ │ │ │ │ ├── create_domain_validation_error.json
│ │ │ │ │ │ ├── create_resource.json
│ │ │ │ │ │ ├── delete_domain.json
│ │ │ │ │ │ ├── delete_domain_does_not_exist.json
│ │ │ │ │ │ ├── delete_resource.json
│ │ │ │ │ │ ├── delete_resource_does_not_exist.json
│ │ │ │ │ │ ├── domain_list.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_record_does_not_exist.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── get_zone_does_not_exist.json
│ │ │ │ │ │ ├── resource_list.json
│ │ │ │ │ │ ├── resource_list_does_not_exist.json
│ │ │ │ │ │ ├── update_domain.json
│ │ │ │ │ │ └── update_resource.json
│ │ │ │ │ ├── linode_v4
│ │ │ │ │ │ ├── create_record.json
│ │ │ │ │ │ ├── create_zone.json
│ │ │ │ │ │ ├── get_record_A.json
│ │ │ │ │ │ ├── get_record_MX.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ ├── list_zones.json
│ │ │ │ │ │ ├── update_record.json
│ │ │ │ │ │ └── update_zone.json
│ │ │ │ │ ├── liquidweb
│ │ │ │ │ │ ├── create_zone_success.json
│ │ │ │ │ │ ├── delete_record.json
│ │ │ │ │ │ ├── delete_zone.success.json
│ │ │ │ │ │ ├── delete_zone_success.json
│ │ │ │ │ │ ├── duplicate_record.json
│ │ │ │ │ │ ├── empty_records_list.json
│ │ │ │ │ │ ├── empty_zones_list.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── record_does_not_exist.json
│ │ │ │ │ │ ├── records_list.json
│ │ │ │ │ │ ├── update_record.json
│ │ │ │ │ │ ├── zone_does_not_exist.json
│ │ │ │ │ │ └── zones_list.json
│ │ │ │ │ ├── luadns
│ │ │ │ │ │ ├── create_record_success.json
│ │ │ │ │ │ ├── create_zone_success.json
│ │ │ │ │ │ ├── delete_record_success.json
│ │ │ │ │ │ ├── delete_zone_success.json
│ │ │ │ │ │ ├── empty_records_list.json
│ │ │ │ │ │ ├── empty_zones_list.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── record_does_not_exist.json
│ │ │ │ │ │ ├── records_list.json
│ │ │ │ │ │ ├── zone_already_exists.json
│ │ │ │ │ │ ├── zone_does_not_exist.json
│ │ │ │ │ │ └── zones_list.json
│ │ │ │ │ ├── nfsn
│ │ │ │ │ │ ├── list_one_record.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ ├── list_records_created.json
│ │ │ │ │ │ ├── record_not_removed.json
│ │ │ │ │ │ └── zone_not_found.json
│ │ │ │ │ ├── nsone
│ │ │ │ │ │ ├── create_record_already_exists.json
│ │ │ │ │ │ ├── create_record_success.json
│ │ │ │ │ │ ├── create_record_zone_not_found.json
│ │ │ │ │ │ ├── create_zone_success.json
│ │ │ │ │ │ ├── delete_record_success.json
│ │ │ │ │ │ ├── delete_zone_success.json
│ │ │ │ │ │ ├── empty_zones_list.json
│ │ │ │ │ │ ├── get_record_success.json
│ │ │ │ │ │ ├── get_zone_success.json
│ │ │ │ │ │ ├── list_records_empty.json
│ │ │ │ │ │ ├── list_zones.json
│ │ │ │ │ │ ├── record_does_not_exist.json
│ │ │ │ │ │ ├── zone_already_exists.json
│ │ │ │ │ │ └── zone_does_not_exist.json
│ │ │ │ │ ├── onapp
│ │ │ │ │ │ ├── create_record.json
│ │ │ │ │ │ ├── create_zone.json
│ │ │ │ │ │ ├── dns_zone_not_found.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_record_after_update.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ └── list_zones.json
│ │ │ │ │ ├── pointdns
│ │ │ │ │ │ ├── _zones_1_DELETE.json
│ │ │ │ │ │ ├── _zones_1_ZONE_UPDATE.json
│ │ │ │ │ │ ├── _zones_1_mail_redirects_CREATE.json
│ │ │ │ │ │ ├── _zones_1_mail_redirects_DELETE.json
│ │ │ │ │ │ ├── _zones_1_mail_redirects_GET.json
│ │ │ │ │ │ ├── _zones_1_mail_redirects_LIST.json
│ │ │ │ │ │ ├── _zones_1_mail_redirects_UPDATE.json
│ │ │ │ │ │ ├── _zones_1_records_141_GET.json
│ │ │ │ │ │ ├── _zones_1_records_141_UPDATE.json
│ │ │ │ │ │ ├── _zones_1_records_150_DELETE.json
│ │ │ │ │ │ ├── _zones_1_records_GET.json
│ │ │ │ │ │ ├── _zones_1_redirects_CREATE.json
│ │ │ │ │ │ ├── _zones_1_redirects_DELETE.json
│ │ │ │ │ │ ├── _zones_1_redirects_GET.json
│ │ │ │ │ │ ├── _zones_1_redirects_LIST.json
│ │ │ │ │ │ ├── _zones_1_redirects_UPDATE.json
│ │ │ │ │ │ ├── _zones_CREATE.json
│ │ │ │ │ │ ├── _zones_GET.json
│ │ │ │ │ │ ├── _zones_GET_1.json
│ │ │ │ │ │ ├── _zones_example_com_UPDATE.json
│ │ │ │ │ │ ├── _zones_example_com_records_CREATE.json
│ │ │ │ │ │ ├── error.json
│ │ │ │ │ │ ├── not_found.json
│ │ │ │ │ │ └── redirect_error.json
│ │ │ │ │ ├── powerdns
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ └── list_zones.json
│ │ │ │ │ ├── rackspace
│ │ │ │ │ │ ├── auth_1_1.json
│ │ │ │ │ │ ├── auth_2_0.json
│ │ │ │ │ │ ├── create_ptr_record_success.json
│ │ │ │ │ │ ├── create_record_success.json
│ │ │ │ │ │ ├── create_zone_success.json
│ │ │ │ │ │ ├── create_zone_validation_error.json
│ │ │ │ │ │ ├── delete_ptr_record_success.json
│ │ │ │ │ │ ├── delete_record_success.json
│ │ │ │ │ │ ├── delete_zone_success.json
│ │ │ │ │ │ ├── does_not_exist.json
│ │ │ │ │ │ ├── get_record_success.json
│ │ │ │ │ │ ├── get_zone_success.json
│ │ │ │ │ │ ├── list_ptr_records_success.json
│ │ │ │ │ │ ├── list_records_no_results.json
│ │ │ │ │ │ ├── list_records_success.json
│ │ │ │ │ │ ├── list_zones_no_results.json
│ │ │ │ │ │ ├── list_zones_success.json
│ │ │ │ │ │ ├── unauthorized.json
│ │ │ │ │ │ ├── update_record_success.json
│ │ │ │ │ │ └── update_zone_success.json
│ │ │ │ │ ├── rcodezero
│ │ │ │ │ │ ├── get_zone_details.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ └── list_zones.json
│ │ │ │ │ ├── route53
│ │ │ │ │ │ ├── create_zone.xml
│ │ │ │ │ │ ├── get_zone.xml
│ │ │ │ │ │ ├── invalid_change_batch.xml
│ │ │ │ │ │ ├── list_records.xml
│ │ │ │ │ │ ├── list_zones.xml
│ │ │ │ │ │ ├── record_does_not_exist.xml
│ │ │ │ │ │ └── zone_does_not_exist.xml
│ │ │ │ │ ├── vultr
│ │ │ │ │ │ ├── delete_zone.json
│ │ │ │ │ │ ├── empty_records_list.json
│ │ │ │ │ │ ├── empty_zones_list.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── list_domains.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ └── test_zone.json
│ │ │ │ │ ├── vultr_v2
│ │ │ │ │ │ ├── create_record.json
│ │ │ │ │ │ ├── create_zone.json
│ │ │ │ │ │ ├── get_record.json
│ │ │ │ │ │ ├── get_zone.json
│ │ │ │ │ │ ├── list_records.json
│ │ │ │ │ │ └── list_zones.json
│ │ │ │ │ ├── worldwidedns
│ │ │ │ │ │ ├── _api_dns_modify_asp_CREATE_RECORD_MAX_ENTRIES_WITH_ENTRY
│ │ │ │ │ │ ├── api_dns_list
│ │ │ │ │ │ ├── api_dns_list_domain_asp
│ │ │ │ │ │ ├── api_dns_list_domain_asp_CREATE_RECORD
│ │ │ │ │ │ ├── api_dns_list_domain_asp_CREATE_RECORD_MAX_ENTRIES
│ │ │ │ │ │ ├── api_dns_list_domain_asp_CREATE_SECOND_RECORD
│ │ │ │ │ │ ├── api_dns_list_domain_asp_DELETE_RECORD
│ │ │ │ │ │ ├── api_dns_list_domain_asp_UPDATE_RECORD
│ │ │ │ │ │ └── api_dns_list_domain_asp_UPDATE_ZONE
│ │ │ │ │ ├── zerigo
│ │ │ │ │ │ ├── create_record.xml
│ │ │ │ │ │ ├── create_zone.xml
│ │ │ │ │ │ ├── create_zone_validation_error.xml
│ │ │ │ │ │ ├── get_record.xml
│ │ │ │ │ │ ├── get_zone.xml
│ │ │ │ │ │ ├── list_records.xml
│ │ │ │ │ │ ├── list_records_no_results.xml
│ │ │ │ │ │ ├── list_zones.xml
│ │ │ │ │ │ └── list_zones_no_results.xml
│ │ │ │ │ └── zonomi
│ │ │ │ │ │ ├── converted_to_master.xml
│ │ │ │ │ │ ├── converted_to_slave.xml
│ │ │ │ │ │ ├── couldnt_convert.xml
│ │ │ │ │ │ ├── create_record.xml
│ │ │ │ │ │ ├── create_record_already_exists.xml
│ │ │ │ │ │ ├── create_zone.xml
│ │ │ │ │ │ ├── create_zone_already_exists.xml
│ │ │ │ │ │ ├── delete_record.xml
│ │ │ │ │ │ ├── delete_record_does_not_exist.xml
│ │ │ │ │ │ ├── delete_zone.xml
│ │ │ │ │ │ ├── delete_zone_does_not_exist.xml
│ │ │ │ │ │ ├── empty_zones_list.xml
│ │ │ │ │ │ ├── list_records.xml
│ │ │ │ │ │ └── list_zones.xml
│ │ │ │ ├── test_auroradns.py
│ │ │ │ ├── test_base.py
│ │ │ │ ├── test_buddyns.py
│ │ │ │ ├── test_cloudflare.py
│ │ │ │ ├── test_digitalocean.py
│ │ │ │ ├── test_dnsimple.py
│ │ │ │ ├── test_dnspod.py
│ │ │ │ ├── test_durabledns.py
│ │ │ │ ├── test_gandi.py
│ │ │ │ ├── test_gandi_live.py
│ │ │ │ ├── test_godaddy.py
│ │ │ │ ├── test_google.py
│ │ │ │ ├── test_linode.py
│ │ │ │ ├── test_linode_v4.py
│ │ │ │ ├── test_liquidweb.py
│ │ │ │ ├── test_luadns.py
│ │ │ │ ├── test_nfsn.py
│ │ │ │ ├── test_nsone.py
│ │ │ │ ├── test_onapp.py
│ │ │ │ ├── test_pointdns.py
│ │ │ │ ├── test_powerdns.py
│ │ │ │ ├── test_rackspace.py
│ │ │ │ ├── test_rcodezero.py
│ │ │ │ ├── test_route53.py
│ │ │ │ ├── test_vultr.py
│ │ │ │ ├── test_vultr_v2.py
│ │ │ │ ├── test_worldwidedns.py
│ │ │ │ ├── test_zerigo.py
│ │ │ │ └── test_zonomi.py
│ │ │ ├── file_fixtures.py
│ │ │ ├── loadbalancer
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── alb
│ │ │ │ │ │ ├── create_balancer.xml
│ │ │ │ │ │ ├── create_listener.xml
│ │ │ │ │ │ ├── create_rule.xml
│ │ │ │ │ │ ├── create_target_group.xml
│ │ │ │ │ │ ├── describe_load_balancer_listeters.xml
│ │ │ │ │ │ ├── describe_load_balancer_rules.xml
│ │ │ │ │ │ ├── describe_load_balancer_target_groups.xml
│ │ │ │ │ │ ├── describe_load_balancers.xml
│ │ │ │ │ │ ├── describe_tags.xml
│ │ │ │ │ │ ├── describe_target_health.xml
│ │ │ │ │ │ └── register_targets.xml
│ │ │ │ │ ├── brightbox
│ │ │ │ │ │ ├── load_balancers.json
│ │ │ │ │ │ ├── load_balancers_lba_1235f.json
│ │ │ │ │ │ ├── load_balancers_post.json
│ │ │ │ │ │ └── token.json
│ │ │ │ │ ├── cloudstack
│ │ │ │ │ │ ├── assignToLoadBalancerRule_default.json
│ │ │ │ │ │ ├── associateIpAddress_default.json
│ │ │ │ │ │ ├── createLoadBalancerRule_default.json
│ │ │ │ │ │ ├── deleteLoadBalancerRule_default.json
│ │ │ │ │ │ ├── disassociateIpAddress_default.json
│ │ │ │ │ │ ├── listLoadBalancerRuleInstances_default.json
│ │ │ │ │ │ ├── listLoadBalancerRules_default.json
│ │ │ │ │ │ ├── listZones_default.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17340.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17341.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17342.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17344.json
│ │ │ │ │ │ ├── queryAsyncJobResult_17346.json
│ │ │ │ │ │ └── removeFromLoadBalancerRule_default.json
│ │ │ │ │ ├── dimensiondata
│ │ │ │ │ │ ├── networkDomainVip_addPoolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_createNode.xml
│ │ │ │ │ │ ├── networkDomainVip_createPool.xml
│ │ │ │ │ │ ├── networkDomainVip_createVirtualListener.xml
│ │ │ │ │ │ ├── networkDomainVip_defaultHealthMonitor.xml
│ │ │ │ │ │ ├── networkDomainVip_defaultIrule.xml
│ │ │ │ │ │ ├── networkDomainVip_defaultPersistenceProfile.xml
│ │ │ │ │ │ ├── networkDomainVip_deleteNode.xml
│ │ │ │ │ │ ├── networkDomainVip_deletePool.xml
│ │ │ │ │ │ ├── networkDomainVip_deleteVirtualListener.xml
│ │ │ │ │ │ ├── networkDomainVip_editNode.xml
│ │ │ │ │ │ ├── networkDomainVip_editPool.xml
│ │ │ │ │ │ ├── networkDomainVip_editPoolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_node.xml
│ │ │ │ │ │ ├── networkDomainVip_node_34de6ed6_46a4_4dae_a753_2f8d3840c6f9.xml
│ │ │ │ │ │ ├── networkDomainVip_pool.xml
│ │ │ │ │ │ ├── networkDomainVip_poolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_poolMember_3dd806a2_c2c8_4c0c_9a4f_5219ea9266c0.xml
│ │ │ │ │ │ ├── networkDomainVip_pool_4d360b1f_bc2c_4ab7_9884_1f03ba2768f7.xml
│ │ │ │ │ │ ├── networkDomainVip_removePoolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_virtualListener.xml
│ │ │ │ │ │ ├── networkDomainVip_virtualListener_6115469d_a8bb_445b_bb23_d23b5283f2b9.xml
│ │ │ │ │ │ └── oec_0_9_myaccount.xml
│ │ │ │ │ ├── elb
│ │ │ │ │ │ ├── create_load_balancer.xml
│ │ │ │ │ │ ├── create_load_balancer_policy.xml
│ │ │ │ │ │ ├── deregister_instances_from_load_balancer.xml
│ │ │ │ │ │ ├── describe_load_balancer_policies.xml
│ │ │ │ │ │ ├── describe_load_balancers.xml
│ │ │ │ │ │ ├── describe_load_balancers_policy_types.xml
│ │ │ │ │ │ ├── describe_tags.xml
│ │ │ │ │ │ ├── set_load_balancer_policies_for_backend_server.xml
│ │ │ │ │ │ └── set_load_balancer_policies_of_listener.xml
│ │ │ │ │ ├── nttcis
│ │ │ │ │ │ ├── alice.crt
│ │ │ │ │ │ ├── alice.key
│ │ │ │ │ │ ├── chain.crt
│ │ │ │ │ │ ├── denis.crt
│ │ │ │ │ │ ├── denis.key
│ │ │ │ │ │ ├── get_cert.xml
│ │ │ │ │ │ ├── networkDomainVip_addPoolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_createNode.xml
│ │ │ │ │ │ ├── networkDomainVip_createPool.xml
│ │ │ │ │ │ ├── networkDomainVip_createVirtualListener.xml
│ │ │ │ │ │ ├── networkDomainVip_defaultHealthMonitor.xml
│ │ │ │ │ │ ├── networkDomainVip_defaultIrule.xml
│ │ │ │ │ │ ├── networkDomainVip_defaultPersistenceProfile.xml
│ │ │ │ │ │ ├── networkDomainVip_deleteNode.xml
│ │ │ │ │ │ ├── networkDomainVip_deletePool.xml
│ │ │ │ │ │ ├── networkDomainVip_deleteVirtualListener.xml
│ │ │ │ │ │ ├── networkDomainVip_editNode.xml
│ │ │ │ │ │ ├── networkDomainVip_editPool.xml
│ │ │ │ │ │ ├── networkDomainVip_editPoolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_node.xml
│ │ │ │ │ │ ├── networkDomainVip_node_34de6ed6_46a4_4dae_a753_2f8d3840c6f9.xml
│ │ │ │ │ │ ├── networkDomainVip_pool.xml
│ │ │ │ │ │ ├── networkDomainVip_poolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_poolMember_3dd806a2_c2c8_4c0c_9a4f_5219ea9266c0.xml
│ │ │ │ │ │ ├── networkDomainVip_pool_4d360b1f_bc2c_4ab7_9884_1f03ba2768f7.xml
│ │ │ │ │ │ ├── networkDomainVip_removePoolMember.xml
│ │ │ │ │ │ ├── networkDomainVip_virtualListener.xml
│ │ │ │ │ │ ├── networkDomainVip_virtualListener_6115469d_a8bb_445b_bb23_d23b5283f2b9.xml
│ │ │ │ │ │ └── oec_0_9_myaccount.xml
│ │ │ │ │ ├── rackspace
│ │ │ │ │ │ ├── _v2_0__auth.json
│ │ │ │ │ │ ├── auth_2_0.json
│ │ │ │ │ │ ├── error_page_default.json
│ │ │ │ │ │ ├── v1_0_slug_loadbalancers_8290_usage_current.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_18940_accesslist.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_18940_errorpage.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_18940_ex_public_ips.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_18941_ex_private_ips.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_18945_ex_public_ips.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_3xxx.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8290.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8290_errorpage.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8290_nodes.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8290_nodes_post.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8291.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8292.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_8292_nodes_post.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94692_weighted_round_robin.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94693_weighted_least_connections.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94694_unknown_algorithm.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94695_full_details.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94696_http_health_monitor.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94697_https_health_monitor.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94698_access_list.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94698_with_access_list.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_94700_http_health_monitor_no_body_regex.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_algorithms.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_nodeaddress.json
│ │ │ │ │ │ ├── v1_slug_loadbalancers_post.json
│ │ │ │ │ │ └── v1_slug_loadbalancers_protocols.json
│ │ │ │ │ └── slb
│ │ │ │ │ │ ├── add_backend_servers.xml
│ │ │ │ │ │ ├── create_load_balancer.xml
│ │ │ │ │ │ ├── create_load_balancer_http_listener.xml
│ │ │ │ │ │ ├── delete_load_balancer.xml
│ │ │ │ │ │ ├── delete_server_certificate.xml
│ │ │ │ │ │ ├── describe_load_balancer_attribute.xml
│ │ │ │ │ │ ├── describe_load_balancers.xml
│ │ │ │ │ │ ├── describe_server_certificates.xml
│ │ │ │ │ │ ├── remove_backend_servers.xml
│ │ │ │ │ │ ├── set_server_certificate_name.xml
│ │ │ │ │ │ ├── start_load_balancer_listener.xml
│ │ │ │ │ │ └── upload_server_certificate.xml
│ │ │ │ ├── test_alb.py
│ │ │ │ ├── test_brightbox.py
│ │ │ │ ├── test_cloudstack.py
│ │ │ │ ├── test_dimensiondata_v2_3.py
│ │ │ │ ├── test_dimensiondata_v2_4.py
│ │ │ │ ├── test_elb.py
│ │ │ │ ├── test_gce.py
│ │ │ │ ├── test_ninefold.py
│ │ │ │ ├── test_nttcis.py
│ │ │ │ ├── test_rackspace.py
│ │ │ │ └── test_slb.py
│ │ │ ├── pricing_test.json
│ │ │ ├── secrets.py-dist
│ │ │ ├── storage
│ │ │ │ ├── __init__.py
│ │ │ │ ├── base.py
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── atmos
│ │ │ │ │ │ ├── already_exists.xml
│ │ │ │ │ │ ├── empty_directory_listing.xml
│ │ │ │ │ │ ├── list_containers.xml
│ │ │ │ │ │ ├── not_empty.xml
│ │ │ │ │ │ └── not_found.xml
│ │ │ │ │ ├── azure_blobs
│ │ │ │ │ │ ├── _77777777_7777_7777_7777_777777777777_oauth2_token.json
│ │ │ │ │ │ ├── list_containers_1.xml
│ │ │ │ │ │ ├── list_containers_2.xml
│ │ │ │ │ │ ├── list_containers_empty.xml
│ │ │ │ │ │ ├── list_objects_1.xml
│ │ │ │ │ │ ├── list_objects_2.xml
│ │ │ │ │ │ └── list_objects_empty.xml
│ │ │ │ │ ├── azurite_blobs
│ │ │ │ │ │ ├── list_containers_1.xml
│ │ │ │ │ │ ├── list_containers_2.xml
│ │ │ │ │ │ ├── list_containers_empty.xml
│ │ │ │ │ │ ├── list_objects_1.xml
│ │ │ │ │ │ ├── list_objects_2.xml
│ │ │ │ │ │ └── list_objects_empty.xml
│ │ │ │ │ ├── backblaze_b2
│ │ │ │ │ │ ├── b2_create_bucket.json
│ │ │ │ │ │ ├── b2_delete_bucket.json
│ │ │ │ │ │ ├── b2_delete_file_version.json
│ │ │ │ │ │ ├── b2_get_upload_url.json
│ │ │ │ │ │ ├── b2_hide_file.json
│ │ │ │ │ │ ├── b2_list_buckets.json
│ │ │ │ │ │ ├── b2_list_file_names.json
│ │ │ │ │ │ ├── b2_list_file_versions.json
│ │ │ │ │ │ └── b2_upload_file.json
│ │ │ │ │ ├── cloudfiles
│ │ │ │ │ │ ├── _v2_0__auth.json
│ │ │ │ │ │ ├── list_container_objects.json
│ │ │ │ │ │ ├── list_container_objects_empty.json
│ │ │ │ │ │ ├── list_container_objects_not_exhausted1.json
│ │ │ │ │ │ ├── list_container_objects_not_exhausted2.json
│ │ │ │ │ │ ├── list_containers.json
│ │ │ │ │ │ ├── list_containers_empty.json
│ │ │ │ │ │ └── meta_data.json
│ │ │ │ │ ├── google_storage
│ │ │ │ │ │ ├── get_container.json
│ │ │ │ │ │ ├── get_object.json
│ │ │ │ │ │ ├── list_container_acl.json
│ │ │ │ │ │ ├── list_container_objects.xml
│ │ │ │ │ │ ├── list_container_objects_empty.xml
│ │ │ │ │ │ ├── list_container_objects_not_exhausted1.xml
│ │ │ │ │ │ ├── list_container_objects_not_exhausted2.xml
│ │ │ │ │ │ ├── list_containers.xml
│ │ │ │ │ │ ├── list_containers_empty.xml
│ │ │ │ │ │ └── list_object_acl.json
│ │ │ │ │ ├── oss
│ │ │ │ │ │ ├── complete_multipart_upload.xml
│ │ │ │ │ │ ├── ex_iterate_multipart_uploads_p1.xml
│ │ │ │ │ │ ├── ex_iterate_multipart_uploads_p2.xml
│ │ │ │ │ │ ├── initiate_multipart_upload.xml
│ │ │ │ │ │ ├── list_container_objects.xml
│ │ │ │ │ │ ├── list_container_objects_chinese.xml
│ │ │ │ │ │ ├── list_container_objects_empty.xml
│ │ │ │ │ │ ├── list_container_objects_prefix.xml
│ │ │ │ │ │ ├── list_containers.xml
│ │ │ │ │ │ └── list_containers_empty.xml
│ │ │ │ │ └── s3
│ │ │ │ │ │ ├── complete_multipart.xml
│ │ │ │ │ │ ├── initiate_multipart.xml
│ │ │ │ │ │ ├── list_container_objects.xml
│ │ │ │ │ │ ├── list_container_objects_empty.xml
│ │ │ │ │ │ ├── list_container_objects_not_exhausted1.xml
│ │ │ │ │ │ ├── list_container_objects_not_exhausted2.xml
│ │ │ │ │ │ ├── list_containers.xml
│ │ │ │ │ │ ├── list_containers_empty.xml
│ │ │ │ │ │ ├── list_multipart_1.xml
│ │ │ │ │ │ └── list_multipart_2.xml
│ │ │ │ ├── test_atmos.py
│ │ │ │ ├── test_aurora.py
│ │ │ │ ├── test_azure_blobs.py
│ │ │ │ ├── test_backblaze_b2.py
│ │ │ │ ├── test_base.py
│ │ │ │ ├── test_cloudfiles.py
│ │ │ │ ├── test_digitalocean_spaces.py
│ │ │ │ ├── test_dummy.py
│ │ │ │ ├── test_google_storage.py
│ │ │ │ ├── test_local.py
│ │ │ │ ├── test_minio.py
│ │ │ │ ├── test_ninefold.py
│ │ │ │ ├── test_oss.py
│ │ │ │ ├── test_ovh.py
│ │ │ │ ├── test_rgw.py
│ │ │ │ ├── test_s3.py
│ │ │ │ └── test_scaleway.py
│ │ │ ├── test_connection.py
│ │ │ ├── test_file_fixtures.py
│ │ │ ├── test_http.py
│ │ │ ├── test_init.py
│ │ │ ├── test_logging_connection.py
│ │ │ ├── test_pricing.py
│ │ │ ├── test_response_classes.py
│ │ │ ├── test_types.py
│ │ │ └── test_utils.py
│ │ └── utils
│ │ │ ├── __init__.py
│ │ │ ├── connection.py
│ │ │ ├── decorators.py
│ │ │ ├── escape.py
│ │ │ ├── files.py
│ │ │ ├── iso8601.py
│ │ │ ├── logging.py
│ │ │ ├── loggingconnection.py
│ │ │ ├── misc.py
│ │ │ ├── networking.py
│ │ │ ├── publickey.py
│ │ │ ├── py3.py
│ │ │ ├── retry.py
│ │ │ └── xml.py
│ ├── misc
│ │ └── big_query_queries.txt
│ ├── pylint_plugins
│ │ ├── __init__.py
│ │ └── driver_class.py
│ ├── pyproject.toml
│ ├── requirements-ci.txt
│ ├── requirements-dev.txt
│ ├── requirements-docs.txt
│ ├── requirements-lint.txt
│ ├── requirements-mypy.txt
│ ├── requirements-rtd.txt
│ ├── requirements-tests.txt
│ ├── scripts
│ │ ├── check_asf_license_headers.py
│ │ ├── check_file_names.sh
│ │ ├── dist_install_check.sh
│ │ ├── dist_wheel_install_check.sh
│ │ └── time_imports.sh
│ ├── setup.py
│ └── tox.ini
├── libeay32.dll
├── linode
│ ├── VEpycurl.py
│ ├── __init__.py
│ ├── api.py
│ ├── cloud-cacerts.pem
│ ├── deploy_abunch.py
│ ├── fields.py
│ ├── methodcheck.py
│ ├── oop.py
│ ├── shell.py
│ └── tests.py
├── linode_api4
│ ├── __init__.py
│ ├── common.py
│ ├── errors.py
│ ├── linode_client.py
│ ├── login_client.py
│ ├── objects
│ │ ├── __init__.py
│ │ ├── account.py
│ │ ├── base.py
│ │ ├── dbase.py
│ │ ├── domain.py
│ │ ├── filtering.py
│ │ ├── image.py
│ │ ├── linode.py
│ │ ├── longview.py
│ │ ├── networking.py
│ │ ├── nodebalancer.py
│ │ ├── object_storage.py
│ │ ├── profile.py
│ │ ├── region.py
│ │ ├── support.py
│ │ ├── tag.py
│ │ └── volume.py
│ └── paginated_list.py
├── load.py
├── local_repos_config.py
├── paver
├── paver.exe
├── psi_ansible.py
├── psi_digitalocean.py
├── psi_digitalocean_apiv2.py
├── psi_elastichosts.py
├── psi_ipblacklist.py
├── psi_linode.py
├── psi_linode_api4.py
├── psi_load_job.sh
├── psi_mail_ansible_system_update.mako
├── psi_mail_ansible_template.mako
├── psi_mail_host_stats.mako
├── psi_mail_host_stats.py
├── psi_mail_hosts_load.mako
├── psi_mail_stats.mako
├── psi_mail_stats.py
├── psi_oci.py
├── psi_ops.py
├── psi_ops_additional_parameters.py
├── psi_ops_build_android.py
├── psi_ops_build_windows.py
├── psi_ops_cms.py
├── psi_ops_crypto_tools.py
├── psi_ops_deploy.py
├── psi_ops_discovery.py
├── psi_ops_generate_blacklists.py
├── psi_ops_inproxy.py
├── psi_ops_inproxy_tools.py
├── psi_ops_install.py
├── psi_ops_s3.py
├── psi_ops_test_tunnel_core.py
├── psi_ops_test_windows.py
├── psi_ops_twitter.py
├── psi_process_stats.py
├── psi_process_stats.sql
├── psi_process_stats_mail.mako
├── psi_process_stats_mail.py
├── psi_ramnode.py
├── psi_routes.py
├── psi_scaleway.py
├── psi_ssh.py
├── psi_sync_logs.py
├── psi_templates.py
├── psi_update_stats_dat.py
├── psi_utils.py
├── psi_vps247.py
├── psi_vpsnet.py
├── psi_zenoss_monitoring.py
├── requirements.txt
├── scaleway
│ ├── .gitignore
│ ├── .travis.yml
│ ├── CHANGES.rst
│ ├── LICENSE
│ ├── MAINTAINERS.md
│ ├── MANIFEST.in
│ ├── README.rst
│ ├── __init__.py
│ ├── scaleway
│ │ ├── __init__.py
│ │ ├── apis
│ │ │ ├── __init__.py
│ │ │ ├── api_account.py
│ │ │ ├── api_billing.py
│ │ │ ├── api_compute.py
│ │ │ └── api_metadata.py
│ │ └── tests
│ │ │ ├── __init__.py
│ │ │ └── apis
│ │ │ ├── __init__.py
│ │ │ ├── test_api.py
│ │ │ ├── test_api_account.py
│ │ │ ├── test_api_billing.py
│ │ │ ├── test_api_compute.py
│ │ │ └── test_api_metadata.py
│ ├── setup.cfg
│ └── setup.py
├── server-entry-signer
├── server-entry-signer.exe
├── ssleay32.dll
├── utils.py
└── website_generator.py
├── Data
├── Banners
│ ├── banner1.bmp
│ ├── banner2.bmp
│ └── email.bmp
├── CodeSigning
│ ├── README
│ ├── android.test.keystore
│ ├── test-code-signing-cert.spc
│ ├── test-code-signing-key.pvk
│ └── test-code-signing-package.pfx
└── PsiOps
│ └── psi_ops.dat
├── EmailResponder
├── 20-psiphon-logging.conf
├── 50_scores.cf
├── FeedbackDecryptor
│ ├── FeedbackDecryptorCron
│ ├── README.md
│ ├── autoresponder.py
│ ├── autoresponder.service
│ ├── config.py
│ ├── country_dialing_codes.json
│ ├── cronjob.sh
│ ├── datastore.py
│ ├── datatransformer.py
│ ├── decryptor.py
│ ├── email_validator.py
│ ├── install.sh
│ ├── locale_codes.json
│ ├── logger.py
│ ├── mailformatter.py
│ ├── mailsender.py
│ ├── mailsender.service
│ ├── poetry.lock
│ ├── poetry.toml
│ ├── psi_ops_helpers.py
│ ├── pyproject.toml
│ ├── redactor.py
│ ├── responses
│ │ ├── am.html
│ │ ├── ar.html
│ │ ├── az.html
│ │ ├── be.html
│ │ ├── bn.html
│ │ ├── bo.html
│ │ ├── de.html
│ │ ├── el.html
│ │ ├── es.html
│ │ ├── fa.html
│ │ ├── fa_AF.html
│ │ ├── fi.html
│ │ ├── fr.html
│ │ ├── hi.html
│ │ ├── hr.html
│ │ ├── hu.html
│ │ ├── id.html
│ │ ├── it.html
│ │ ├── kk.html
│ │ ├── km.html
│ │ ├── ko.html
│ │ ├── ky.html
│ │ ├── master.html
│ │ ├── my.html
│ │ ├── nb.html
│ │ ├── nl.html
│ │ ├── om.html
│ │ ├── pt_BR.html
│ │ ├── pt_PT.html
│ │ ├── ru.html
│ │ ├── sn.html
│ │ ├── sw.html
│ │ ├── tg.html
│ │ ├── th.html
│ │ ├── ti.html
│ │ ├── tk.html
│ │ ├── tr.html
│ │ ├── uk.html
│ │ ├── ur.html
│ │ ├── uz@Cyrl.html
│ │ ├── uz@Latn.html
│ │ ├── vi.html
│ │ ├── zh.html
│ │ └── zh_TW.html
│ ├── s3decryptor.py
│ ├── s3decryptor.service
│ ├── sample_conf.json
│ ├── sender.py
│ ├── service_autoresponder.py
│ ├── service_mailsender.py
│ ├── service_s3decryptor.py
│ ├── service_statschecker.py
│ ├── sql_diagnostic_feedback_schema.sql
│ ├── statschecker.py
│ ├── statschecker.service
│ ├── templates
│ │ ├── feedback_response.mako
│ │ ├── stats.mako
│ │ ├── stats_warning.mako
│ │ ├── template_android_1.mako
│ │ ├── template_android_2.mako
│ │ ├── template_android_3.mako
│ │ ├── template_android_4.mako
│ │ ├── template_inproxy_1.mako
│ │ ├── template_ios-app-on-mac_1.mako
│ │ ├── template_ios_1.mako
│ │ ├── template_windows_1.mako
│ │ └── template_windows_2.mako
│ ├── translation.py
│ └── utils.py
├── README.md
├── aws_helpers.py
├── blacklist.py
├── client_tls_policy
├── conf_pull.py
├── create_cron_jobs.py
├── forward
├── get_instance_info.sh
├── header_checks
├── helo_access
├── install.sh
├── log_processor.py
├── logger.py
├── mail_direct.py
├── mail_process.py
├── mail_stats.py
├── main.cf.sample
├── master.cf.sample
├── poetry.lock
├── poetry.toml
├── postfix_queue_check.pl
├── psiphon-log-rotate.conf
├── pyproject.toml
├── sender_access
├── sendmail.py
├── settings.py
└── update_code.sh
├── LICENSE
├── README.md
├── Server
└── psiphond
│ └── psiphond
└── i18n
├── Pipfile
├── Pipfile.lock
└── transifex_pull.py
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/.gitignore
--------------------------------------------------------------------------------
/Automation/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/.gitignore
--------------------------------------------------------------------------------
/Automation/TemplateStrings/am.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/am.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ar.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ar.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/az.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/az.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/be.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/be.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/bn.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/bn.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/bo.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/bo.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/de.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/de.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/el.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/el.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/en.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/en.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/es.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/es.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/fa.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/fa.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/fa_AF.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/fa_AF.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/fi.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/fi.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/fr.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/fr.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ha.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ha.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/hi.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/hi.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/hr.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/hr.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/hu.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/hu.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/id.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/id.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/it.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/it.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/kk.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/kk.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/km.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/km.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ko.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ko.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ky.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ky.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/my.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/my.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/nb.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/nb.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/nl.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/nl.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/om.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/om.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/pt_BR.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/pt_BR.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/pt_PT.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/pt_PT.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ru.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ru.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/sn.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/sn.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/sw.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/sw.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/tg.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/tg.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/th.yaml:
--------------------------------------------------------------------------------
1 | th: {}
2 |
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ti.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ti.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/tk.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/tk.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/tr.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/tr.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ug@Latn.yaml:
--------------------------------------------------------------------------------
1 | ug@Latn: {}
2 |
--------------------------------------------------------------------------------
/Automation/TemplateStrings/uk.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/uk.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/ur.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/ur.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/uz@Cyrl.yaml:
--------------------------------------------------------------------------------
1 | uz@Cyrl: {}
2 |
--------------------------------------------------------------------------------
/Automation/TemplateStrings/uz@Latn.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/uz@Latn.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/vi.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/vi.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/zh.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/zh.yaml
--------------------------------------------------------------------------------
/Automation/TemplateStrings/zh_TW.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/TemplateStrings/zh_TW.yaml
--------------------------------------------------------------------------------
/Automation/Tools/upx.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/Tools/upx.exe
--------------------------------------------------------------------------------
/Automation/Tools/upx307w.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/Tools/upx307w.zip
--------------------------------------------------------------------------------
/Automation/VPS247/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/VPS247/api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/VPS247/api.py
--------------------------------------------------------------------------------
/Automation/debian/bookworm.source:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/debian/bookworm.source
--------------------------------------------------------------------------------
/Automation/debian/bullseye.source:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/debian/bullseye.source
--------------------------------------------------------------------------------
/Automation/debian/buster.source:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/debian/buster.source
--------------------------------------------------------------------------------
/Automation/debian/jessie.source:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/debian/jessie.source
--------------------------------------------------------------------------------
/Automation/debian/trixie.source:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/debian/trixie.source
--------------------------------------------------------------------------------
/Automation/digitalocean_v1/DigitalOceanAPI.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v1/DigitalOceanAPI.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v1/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/.gitignore
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/.travis.yml
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/DESCRIPTION.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/DESCRIPTION.rst
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/Dockerfile
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/LICENSE.txt
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/README.md
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Account.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Account.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Action.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Action.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Domain.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Domain.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Droplet.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Droplet.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Firewall.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Firewall.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/FloatingIP.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/FloatingIP.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Image.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Image.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Kernel.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Kernel.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Manager.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Manager.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Metadata.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Metadata.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Record.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Record.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Region.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Region.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/SSHKey.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/SSHKey.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Size.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Size.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Snapshot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Snapshot.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Tag.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Tag.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/Volume.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/Volume.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/__init__.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/baseapi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/digitalocean/baseapi.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/digitalocean/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/docs/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/docs/Makefile
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/docs/conf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/docs/conf.py
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/docs/digitalocean.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/docs/digitalocean.rst
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/docs/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/docs/index.rst
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/requirements.txt
--------------------------------------------------------------------------------
/Automation/digitalocean_v2/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/digitalocean_v2/setup.py
--------------------------------------------------------------------------------
/Automation/host_reports/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/README.md
--------------------------------------------------------------------------------
/Automation/host_reports/css/bootstrap-theme.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/css/bootstrap-theme.css
--------------------------------------------------------------------------------
/Automation/host_reports/css/bootstrap-theme.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/css/bootstrap-theme.min.css
--------------------------------------------------------------------------------
/Automation/host_reports/css/bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/css/bootstrap.css
--------------------------------------------------------------------------------
/Automation/host_reports/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/css/bootstrap.min.css
--------------------------------------------------------------------------------
/Automation/host_reports/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/css/main.css
--------------------------------------------------------------------------------
/Automation/host_reports/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/favicon.ico
--------------------------------------------------------------------------------
/Automation/host_reports/host-graph.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/host-graph.html
--------------------------------------------------------------------------------
/Automation/host_reports/img/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/img/spinner.gif
--------------------------------------------------------------------------------
/Automation/host_reports/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/index.html
--------------------------------------------------------------------------------
/Automation/host_reports/js/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/main.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/plugins.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/plugins.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/bluebird.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/bluebird.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/bootstrap.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/bootstrap.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/bootstrap.min.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/dygraph-combined.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/dygraph-combined.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/jquery-2.1.0.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/jquery-2.1.0.min.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/regression.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/regression.js
--------------------------------------------------------------------------------
/Automation/host_reports/js/vendor/underscore.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/js/vendor/underscore.js
--------------------------------------------------------------------------------
/Automation/host_reports/webserver.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/host_reports/webserver.sh
--------------------------------------------------------------------------------
/Automation/keygenerator:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/keygenerator
--------------------------------------------------------------------------------
/Automation/keygenerator.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/keygenerator.exe
--------------------------------------------------------------------------------
/Automation/keygenerator.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/keygenerator.go
--------------------------------------------------------------------------------
/Automation/libcloud/.asf.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.asf.yaml
--------------------------------------------------------------------------------
/Automation/libcloud/.codecov.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.codecov.yml
--------------------------------------------------------------------------------
/Automation/libcloud/.dockerignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.dockerignore
--------------------------------------------------------------------------------
/Automation/libcloud/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.editorconfig
--------------------------------------------------------------------------------
/Automation/libcloud/.flake8:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.flake8
--------------------------------------------------------------------------------
/Automation/libcloud/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/Automation/libcloud/.github/actions/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.github/actions/README.md
--------------------------------------------------------------------------------
/Automation/libcloud/.github/actions/gh-action-pip-audit/.gitignore:
--------------------------------------------------------------------------------
1 | env/
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/.github/actions/gh-action-pip-audit/dev-requirements.txt:
--------------------------------------------------------------------------------
1 | flake8
2 | isort
3 | black
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/.github/actions/gh-action-pip-audit/test/empty.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/.github/actions/gh-action-pip-audit/test/vulnerable.txt:
--------------------------------------------------------------------------------
1 | pyyaml==5.1
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.github/dependabot.yml
--------------------------------------------------------------------------------
/Automation/libcloud/.github/stale.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.github/stale.yml
--------------------------------------------------------------------------------
/Automation/libcloud/.github/workflows/depsreview.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.github/workflows/depsreview.yaml
--------------------------------------------------------------------------------
/Automation/libcloud/.github/workflows/main.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.github/workflows/main.yml
--------------------------------------------------------------------------------
/Automation/libcloud/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.gitignore
--------------------------------------------------------------------------------
/Automation/libcloud/.ratignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.ratignore
--------------------------------------------------------------------------------
/Automation/libcloud/.readthedocs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/.readthedocs.yml
--------------------------------------------------------------------------------
/Automation/libcloud/CHANGES.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/CHANGES.rst
--------------------------------------------------------------------------------
/Automation/libcloud/CONTRIBUTING.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/CONTRIBUTING.rst
--------------------------------------------------------------------------------
/Automation/libcloud/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/LICENSE
--------------------------------------------------------------------------------
/Automation/libcloud/MANIFEST.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/MANIFEST.in
--------------------------------------------------------------------------------
/Automation/libcloud/NOTICE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/NOTICE
--------------------------------------------------------------------------------
/Automation/libcloud/README.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/README.rst
--------------------------------------------------------------------------------
/Automation/libcloud/cacerts/ca-bundle.crt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/cacerts/ca-bundle.crt
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/Dockerfile
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/apply-patch.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/apply-patch.ps1
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/pre-commit.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/pre-commit.sh
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/run_tests.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/run_tests.sh
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/scrape-azure-prices.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/scrape-azure-prices.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/scrape-ec2-prices.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/scrape-ec2-prices.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/scrape-ec2-sizes.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/scrape-ec2-sizes.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/scrape-gce-prices.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/scrape-gce-prices.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/trigger_rtd_build.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/trigger_rtd_build.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/update_google_prices.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/update_google_prices.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/update_vultr_fixtures.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/update_vultr_fixtures.sh
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/utils.py
--------------------------------------------------------------------------------
/Automation/libcloud/contrib/utils_test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/contrib/utils_test.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/demos/compute_demo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/compute_demo.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/example_aliyun_ecs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/example_aliyun_ecs.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/example_aliyun_oss.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/example_aliyun_oss.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/example_aliyun_slb.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/example_aliyun_slb.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/example_openstack.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/example_openstack.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/gce_demo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/gce_demo.py
--------------------------------------------------------------------------------
/Automation/libcloud/demos/secrets.py-dist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/demos/secrets.py-dist
--------------------------------------------------------------------------------
/Automation/libcloud/dist/deploy.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/dist/deploy.sh
--------------------------------------------------------------------------------
/Automation/libcloud/dist/hash.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/dist/hash.py
--------------------------------------------------------------------------------
/Automation/libcloud/dist/release.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/dist/release.sh
--------------------------------------------------------------------------------
/Automation/libcloud/dist/sign.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/dist/sign.sh
--------------------------------------------------------------------------------
/Automation/libcloud/dist/verify_checksums.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/dist/verify_checksums.sh
--------------------------------------------------------------------------------
/Automation/libcloud/doap_libcloud.rdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/doap_libcloud.rdf
--------------------------------------------------------------------------------
/Automation/libcloud/docs/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/Makefile
--------------------------------------------------------------------------------
/Automation/libcloud/docs/_static/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/_templates/layout.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/_templates/layout.html
--------------------------------------------------------------------------------
/Automation/libcloud/docs/api_docs.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/api_docs.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/backup/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/backup/api.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/backup/drivers/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/backup/drivers/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/backup/examples.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/backup/examples.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/backup/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/backup/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/changelog.rst:
--------------------------------------------------------------------------------
1 | .. include:: ../CHANGES.rst
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/committer_guide.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/committer_guide.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/api.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/deployment.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/deployment.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/azure.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/azure.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/ec2.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/ec2.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/exoscale.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/exoscale.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/gandi.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/gandi.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/gce.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/gce.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/hpcloud.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/hpcloud.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/ibm_sce.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/ibm_sce.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/ikoula.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/ikoula.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/kamatera.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/kamatera.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/libvirt.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/libvirt.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/nimbus.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/nimbus.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/ntta.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/ntta.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/nttcis.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/nttcis.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/onapp.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/onapp.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/ovh.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/ovh.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/vcloud.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/vcloud.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/drivers/vultr.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/drivers/vultr.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/examples.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/examples.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/compute/pricing.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/compute/pricing.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/conf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/conf.py
--------------------------------------------------------------------------------
/Automation/libcloud/docs/container/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/container/api.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/container/drivers/ecs.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/container/drivers/ecs.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/container/drivers/gke.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/container/drivers/gke.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/container/examples.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/container/examples.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/container/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/container/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/container/utilities.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/container/utilities.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/copyright.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/copyright.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/developer_information.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/developer_information.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/development.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/development.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/_supported_methods.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/_supported_methods.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/api.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/auroradns.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/auroradns.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/buddyns.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/buddyns.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/cloudflare.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/cloudflare.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/dnsimple.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/dnsimple.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/durabledns.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/durabledns.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/godaddy.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/godaddy.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/google.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/google.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/liquidweb.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/liquidweb.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/luadns.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/luadns.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/nfsn.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/nfsn.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/onapp.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/onapp.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/pointdns.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/pointdns.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/powerdns.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/powerdns.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/rcodezero.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/rcodezero.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/vultr.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/vultr.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/drivers/zonomi.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/drivers/zonomi.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/examples.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/examples.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/dns/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/dns/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/backup/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/auroracompute/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/azure/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/azure_arm/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/cloudframes/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/cloudscale/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/cloudsigma/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/cloudstack/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/digitalocean/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/dimensiondata/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/ec2/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/ecs/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/equinixmetal/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/gandi/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/gce/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/internetsolutions/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/libvirt/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/ntta/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/nttcis/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/onapp/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/openstack/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/outscale/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/ovh/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/rackspace/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/compute/vultr/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/docker/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/ecs/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/gke/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/joyent/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/kubernetes/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/container/rancher/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/auroradns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/buddyns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/cloudflare/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/digitalocean/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/dnsimple/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/durabledns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/godaddy/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/liquidweb/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/luadns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/nfsn/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/onapp/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/pointdns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/powerdns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/rcodezero/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/vultr/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/worldwidedns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/dns/zonomi/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/http_proxy/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/loadbalancer/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/loadbalancer/elb/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/loadbalancer/gce/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/loadbalancer/nttcis/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/misc/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/auroraobjects/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/azure/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/backblaze_b2/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/digitalocean_spaces/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/s3/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/examples/storage/swift/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/docs/faq.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/faq.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/getting_started.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/getting_started.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/loadbalancer/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/loadbalancer/api.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/loadbalancer/examples.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/loadbalancer/examples.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/loadbalancer/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/loadbalancer/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/make.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/make.bat
--------------------------------------------------------------------------------
/Automation/libcloud/docs/other/changes_in_2_0.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/other/changes_in_2_0.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/other/hacktoberfest.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/other/hacktoberfest.txt
--------------------------------------------------------------------------------
/Automation/libcloud/docs/other/using-http-proxy.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/other/using-http-proxy.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/security.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/security.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/storage/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/storage/api.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/storage/drivers/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/storage/drivers/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/storage/drivers/minio.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/storage/drivers/minio.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/storage/drivers/s3.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/storage/drivers/s3.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/storage/examples.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/storage/examples.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/storage/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/storage/index.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/supported_providers.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/supported_providers.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/testing.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/testing.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/third_party_drivers.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/third_party_drivers.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/troubleshooting.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/troubleshooting.rst
--------------------------------------------------------------------------------
/Automation/libcloud/docs/upgrade_notes.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/docs/upgrade_notes.rst
--------------------------------------------------------------------------------
/Automation/libcloud/example_compute.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/example_compute.py
--------------------------------------------------------------------------------
/Automation/libcloud/example_container.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/example_container.py
--------------------------------------------------------------------------------
/Automation/libcloud/example_dns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/example_dns.py
--------------------------------------------------------------------------------
/Automation/libcloud/example_loadbalancer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/example_loadbalancer.py
--------------------------------------------------------------------------------
/Automation/libcloud/example_storage.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/example_storage.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/README.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/compute/README.rst
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/compute/__main__.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/api/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/api/data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/compute/api/data.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/api/util.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/compute/api/util.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/compute/config.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/driver/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/integration/compute/requirements.txt:
--------------------------------------------------------------------------------
1 | bottle
2 |
3 |
--------------------------------------------------------------------------------
/Automation/libcloud/integration/storage/README.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/storage/README.rst
--------------------------------------------------------------------------------
/Automation/libcloud/integration/storage/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/integration/storage/__main__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/storage/__main__.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/storage/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/storage/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/integration/storage/test_s3.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/integration/storage/test_s3.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/__init__.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/backup/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/drivers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/drivers/ebs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/backup/drivers/ebs.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/drivers/gce.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/backup/drivers/gce.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/providers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/backup/providers.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/backup/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/backup/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/abiquo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/abiquo.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/aliyun.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/aliyun.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/aws.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/aws.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/azure.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/azure.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/azure_arm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/azure_arm.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/brightbox.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/brightbox.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/buddyns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/buddyns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/cloudsigma.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/cloudsigma.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/cloudstack.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/cloudstack.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/digitalocean.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/digitalocean.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/dnsimple.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/dnsimple.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/dnspod.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/dnspod.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/durabledns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/durabledns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/exceptions.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/gandi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/gandi.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/gandi_live.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/gandi_live.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/gig_g8.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/gig_g8.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/google.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/google.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/gridscale.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/gridscale.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/kubernetes.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/kubernetes.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/linode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/linode.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/liquidweb.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/liquidweb.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/luadns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/luadns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/maxihost.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/maxihost.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/nfsn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/nfsn.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/nsone.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/nsone.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/nttcis.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/nttcis.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/onapp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/onapp.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/openstack.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/openstack.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/osc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/osc.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/ovh.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/ovh.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/pointdns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/pointdns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/providers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/providers.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/rackspace.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/rackspace.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/upcloud.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/upcloud.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/vultr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/vultr.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/worldwidedns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/worldwidedns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/xmlrpc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/xmlrpc.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/common/zonomi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/common/zonomi.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/__init__.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/constants/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/deployment.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/deployment.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/deprecated.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/deprecated.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/drivers/ec2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/drivers/ec2.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/drivers/ecs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/drivers/ecs.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/drivers/gce.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/drivers/gce.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/drivers/ovh.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/drivers/ovh.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/drivers/vcl.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/drivers/vcl.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/providers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/providers.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/ssh.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/ssh.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/compute/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/compute/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/container/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/container/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/container/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/container/drivers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/container/providers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/container/providers.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/container/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/container/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/container/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/data/pricing.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/data/pricing.json
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/buddyns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/buddyns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/dnspod.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/dnspod.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/dummy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/dummy.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/gandi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/gandi.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/godaddy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/godaddy.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/google.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/google.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/linode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/linode.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/luadns.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/luadns.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/nfsn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/nfsn.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/nsone.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/nsone.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/onapp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/onapp.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/route53.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/route53.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/vultr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/vultr.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/zerigo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/zerigo.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/drivers/zonomi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/drivers/zonomi.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/providers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/providers.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/dns/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/dns/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/http.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/http.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/loadbalancer/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/loadbalancer/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/loadbalancer/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/loadbalancer/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/pricing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/pricing.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/py.typed:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/security.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/security.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/__init__.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/drivers/oss.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/drivers/oss.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/drivers/ovh.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/drivers/ovh.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/drivers/rgw.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/drivers/rgw.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/drivers/s3.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/drivers/s3.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/providers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/providers.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/storage/types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/storage/types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/__init__.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/azure/libcloud.pem:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/azure_arm/_subscriptions_subid_resourceGroups_rg1_providers_Microsoft_Network_publicIPAddresses_test_ip.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/brightbox/token.json:
--------------------------------------------------------------------------------
1 | {"access_token":"k1bjflpsaj8wnrbrwzad0eqo36nxiha", "expires_in": 3600}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudsigma_2_0/balance.json:
--------------------------------------------------------------------------------
1 | {"balance": "10.00", "currency": "USD"}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/createAffinityGroup_default.json:
--------------------------------------------------------------------------------
1 | {"createaffinitygroupresponse": { "jobid" : 1300004}}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/deleteAffinityGroup_default.json:
--------------------------------------------------------------------------------
1 | {"deleteaffinitygroupresponse": { "jobid" : 1300005}}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/deleteEgressFirewallRule_default.json:
--------------------------------------------------------------------------------
1 | { "deleteegressfirewallruleresponse" : {"jobid":1149342} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/deleteFirewallRule_default.json:
--------------------------------------------------------------------------------
1 | { "deletefirewallruleresponse" : {"jobid":1149342} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/deletePortForwardingRule_default.json:
--------------------------------------------------------------------------------
1 | { "deleteportforwardingruleresponse" : {"jobid":"11114"} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/deleteSnapshot_default.json:
--------------------------------------------------------------------------------
1 | { "deletesnapshotresponse" : {"jobid":1300002} }
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/destroyVirtualMachine_default.json:
--------------------------------------------------------------------------------
1 | { "destroyvirtualmachineresponse" : {"jobid":17166} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/listSSHKeyPairs_get_one_doesnt_exist.json:
--------------------------------------------------------------------------------
1 | { "listsshkeypairsresponse" : { } }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/listSSHKeyPairs_no_keys.json:
--------------------------------------------------------------------------------
1 | {"listsshkeypairsresponse":{}}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/listSecurityGroups_no_groups.json:
--------------------------------------------------------------------------------
1 | { "listsecuritygroupsresponse" : {} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/listTemplates_notemplates.json:
--------------------------------------------------------------------------------
1 | { "listtemplatesresponse" : {} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/rebootVirtualMachine_default.json:
--------------------------------------------------------------------------------
1 | { "rebootvirtualmachineresponse" : {"jobid":17165} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/startVirtualMachine_default.json:
--------------------------------------------------------------------------------
1 | { "startvirtualmachineresponse" : {"jobid":17188} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/stopVirtualMachine_default.json:
--------------------------------------------------------------------------------
1 | { "stopvirtualmachineresponse" : {"jobid":17199} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/cloudstack/updateVMAffinityGroup_default.json:
--------------------------------------------------------------------------------
1 | {"updatevmaffinitygroupresponse": { "jobid" : 1300006}}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/digitalocean/error.json:
--------------------------------------------------------------------------------
1 | {"id":"","message":"Unable to authenticate you."}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/digitalocean_v2/error.json:
--------------------------------------------------------------------------------
1 | {"id":"","message":"Unable to authenticate you."}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/equinixmetal/bgp_config_project_3.json:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_cloudspaces_create.json:
--------------------------------------------------------------------------------
1 | 11
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_cloudspaces_delete.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_disks_create.json:
--------------------------------------------------------------------------------
1 | 11
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_disks_delete.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_attachDisk.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_create.json:
--------------------------------------------------------------------------------
1 | 5
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_delete.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_detachDisk.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_reboot.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_start.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_machines_stop.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_portforwarding_create.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gig_g8/POST_portforwarding_deleteByPort.json:
--------------------------------------------------------------------------------
1 | true
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gridscale/ex_start_node.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gridscale/ips_to_node.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gridscale/list_volumes_empty.json:
--------------------------------------------------------------------------------
1 | {
2 | "storages": {}
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/gridscale/volume_to_node.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/hostvirtual/cancel_package.json:
--------------------------------------------------------------------------------
1 | {
2 | "status" : "success"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/hostvirtual/node_reboot.json:
--------------------------------------------------------------------------------
1 | {
2 | "status" : "success"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/hostvirtual/node_start.json:
--------------------------------------------------------------------------------
1 | {
2 | "status" : "success"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/hostvirtual/node_stop.json:
--------------------------------------------------------------------------------
1 | {
2 | "status" : "success"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/hostvirtual/order_package.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": "62291"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/hostvirtual/unlink_package.json:
--------------------------------------------------------------------------------
1 | {
2 | "status" : "success"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/kamatera/create_server_sshkey.json:
--------------------------------------------------------------------------------
1 | [12345]
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/kamatera/server_operation.json:
--------------------------------------------------------------------------------
1 | [12345]
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/ktucloud/destroyVirtualMachine_default.json:
--------------------------------------------------------------------------------
1 | { "destroyvirtualmachineresponse" : {"jobid":17166} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/ktucloud/rebootVirtualMachine_default.json:
--------------------------------------------------------------------------------
1 | { "rebootvirtualmachineresponse" : {"jobid":17165} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/meta/helloworld.txt:
--------------------------------------------------------------------------------
1 | Hello, World!
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/meta/unicode.json:
--------------------------------------------------------------------------------
1 | {"test": "Ś"}
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/meta/unicode.txt:
--------------------------------------------------------------------------------
1 | Ś
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack/_v1_1__auth_unauthorized.json:
--------------------------------------------------------------------------------
1 | {"unauthorized":{"message":"Username or api key is invalid","code":401}}
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/_servers_12086_console_output.json:
--------------------------------------------------------------------------------
1 | {
2 | "output": "FAKE CONSOLE OUTPUT\nANOTHER\nLAST LINE"
3 | }
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/_servers_detail_EMPTY.json:
--------------------------------------------------------------------------------
1 | {
2 | "servers": []
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/_servers_pause.json:
--------------------------------------------------------------------------------
1 | {
2 | "pause": null
3 | }
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/_servers_resume.json:
--------------------------------------------------------------------------------
1 | {
2 | "resume": null
3 | }
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/_servers_suspend.json:
--------------------------------------------------------------------------------
1 | {
2 | "suspend": null
3 | }
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/_servers_unpause.json:
--------------------------------------------------------------------------------
1 | {
2 | "unpause": null
3 | }
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/openstack_v1.1/delete_floating_ip_167_138_123_111.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/ovh/auth_time_get.json:
--------------------------------------------------------------------------------
1 | 1437075564
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/scaleway/list_nodes_empty.json:
--------------------------------------------------------------------------------
1 | {
2 | "servers": []
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/scaleway/list_volumes_empty.json:
--------------------------------------------------------------------------------
1 | {
2 | "volumes": []
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/vsphere/list_clusters.json:
--------------------------------------------------------------------------------
1 | {"value": []}
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/vsphere/session_token.json:
--------------------------------------------------------------------------------
1 | {"value": "48c202a15afb33000a14ca5fab43e27d"}
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/vultr/create_key_pair.json:
--------------------------------------------------------------------------------
1 | {
2 | "SSHKEYID": "5806ab4970aba"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/compute/fixtures/vultr/create_node.json:
--------------------------------------------------------------------------------
1 | {
2 | "SUBID": "41326859"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/conftest.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/container/fixtures/docker/linux_124/logs.txt:
--------------------------------------------------------------------------------
1 | /entrypoint.sh: line 19: exec: None: not found
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/buddyns/delete_zone_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/buddyns/empty_zones_list.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/buddyns/zone_does_not_exist.json:
--------------------------------------------------------------------------------
1 | {"detail": "Not found"}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/dnspod/delete_record_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/dnspod/delete_zone_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/gandi_live/create_domain.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "Domain Created"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/gandi_live/create_record.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "Zone Record Created"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/gandi_live/create_zone.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "Zone Created"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/gandi_live/update_gandi_zone.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "Request Accepted"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/gandi_live/update_mx_record.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "Zone Record Updated"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/gandi_live/update_record.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "Zone Record Updated"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/liquidweb/delete_record.json:
--------------------------------------------------------------------------------
1 | {
2 | "deleted": "13"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/liquidweb/delete_zone.success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/liquidweb/delete_zone_success.json:
--------------------------------------------------------------------------------
1 | {
2 | "deleted": "example.com"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/luadns/delete_record_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/luadns/delete_zone_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/luadns/empty_records_list.json:
--------------------------------------------------------------------------------
1 | []
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/luadns/empty_zones_list.json:
--------------------------------------------------------------------------------
1 | []
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/create_record_already_exists.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "record already exists"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/create_record_zone_not_found.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "zone not found"
3 | }
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/delete_record_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/delete_zone_success.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/empty_zones_list.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/record_does_not_exist.json:
--------------------------------------------------------------------------------
1 | {"message":"record not found"}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/zone_already_exists.json:
--------------------------------------------------------------------------------
1 | {"message":"zone already exists"}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/nsone/zone_does_not_exist.json:
--------------------------------------------------------------------------------
1 | {"message":"zone not found"}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/pointdns/not_found.json:
--------------------------------------------------------------------------------
1 | Not found
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/rackspace/does_not_exist.json:
--------------------------------------------------------------------------------
1 | {"message":"Object not Found.","code":404,"details":""}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/rackspace/unauthorized.json:
--------------------------------------------------------------------------------
1 | {"unauthorized":{"message":"Username or api key is invalid","code":401}}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/vultr/delete_zone.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/vultr/empty_records_list.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/vultr/empty_zones_list.json:
--------------------------------------------------------------------------------
1 | [
2 |
3 | ]
4 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/worldwidedns/api_dns_list:
--------------------------------------------------------------------------------
1 | niteowebsponsoredthisone.comP
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/zerigo/list_records_no_results.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/fixtures/zerigo/list_zones_no_results.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/test_base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/dns/test_base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/test_gandi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/dns/test_gandi.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/test_nfsn.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/dns/test_nfsn.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/test_nsone.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/dns/test_nsone.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/test_onapp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/dns/test_onapp.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/dns/test_vultr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/dns/test_vultr.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/file_fixtures.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/file_fixtures.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/loadbalancer/fixtures/brightbox/token.json:
--------------------------------------------------------------------------------
1 | {"access_token": "k1bjflpsaj8wnrbrwzad0eqo36nxiha", "expires_in": 3600}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/loadbalancer/fixtures/cloudstack/assignToLoadBalancerRule_default.json:
--------------------------------------------------------------------------------
1 | { "assigntoloadbalancerruleresponse" : {"jobid":17341} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/loadbalancer/fixtures/cloudstack/deleteLoadBalancerRule_default.json:
--------------------------------------------------------------------------------
1 | { "deleteloadbalancerruleresponse" : {"jobid":17342} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/loadbalancer/fixtures/cloudstack/disassociateIpAddress_default.json:
--------------------------------------------------------------------------------
1 | { "disassociateipaddressresponse" : {"jobid":17344} }
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/pricing_test.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/pricing_test.json
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/secrets.py-dist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/secrets.py-dist
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/storage/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/storage/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/storage/base.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/storage/fixtures/cloudfiles/list_container_objects_empty.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/storage/fixtures/cloudfiles/list_containers_empty.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/test_http.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/test_http.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/test_init.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/test_init.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/test_pricing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/test_pricing.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/test_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/test_types.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/test/test_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/test/test_utils.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/__init__.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/connection.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/connection.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/decorators.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/decorators.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/escape.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/escape.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/files.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/files.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/iso8601.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/iso8601.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/logging.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/logging.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/misc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/misc.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/networking.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/networking.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/publickey.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/publickey.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/py3.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/py3.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/retry.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/retry.py
--------------------------------------------------------------------------------
/Automation/libcloud/libcloud/utils/xml.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/libcloud/utils/xml.py
--------------------------------------------------------------------------------
/Automation/libcloud/misc/big_query_queries.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/misc/big_query_queries.txt
--------------------------------------------------------------------------------
/Automation/libcloud/pylint_plugins/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/libcloud/pylint_plugins/driver_class.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/pylint_plugins/driver_class.py
--------------------------------------------------------------------------------
/Automation/libcloud/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/pyproject.toml
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-ci.txt:
--------------------------------------------------------------------------------
1 | tox==4.8.0
2 |
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-dev.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/requirements-dev.txt
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-docs.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/requirements-docs.txt
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-lint.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/requirements-lint.txt
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-mypy.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/requirements-mypy.txt
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-rtd.txt:
--------------------------------------------------------------------------------
1 | # Requirements for ReadTheDocs
2 | sphinx==6.2.1
3 |
--------------------------------------------------------------------------------
/Automation/libcloud/requirements-tests.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/requirements-tests.txt
--------------------------------------------------------------------------------
/Automation/libcloud/scripts/check_file_names.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/scripts/check_file_names.sh
--------------------------------------------------------------------------------
/Automation/libcloud/scripts/dist_install_check.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/scripts/dist_install_check.sh
--------------------------------------------------------------------------------
/Automation/libcloud/scripts/time_imports.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/scripts/time_imports.sh
--------------------------------------------------------------------------------
/Automation/libcloud/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/setup.py
--------------------------------------------------------------------------------
/Automation/libcloud/tox.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libcloud/tox.ini
--------------------------------------------------------------------------------
/Automation/libeay32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/libeay32.dll
--------------------------------------------------------------------------------
/Automation/linode/VEpycurl.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/VEpycurl.py
--------------------------------------------------------------------------------
/Automation/linode/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/linode/api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/api.py
--------------------------------------------------------------------------------
/Automation/linode/cloud-cacerts.pem:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/cloud-cacerts.pem
--------------------------------------------------------------------------------
/Automation/linode/deploy_abunch.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/deploy_abunch.py
--------------------------------------------------------------------------------
/Automation/linode/fields.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/fields.py
--------------------------------------------------------------------------------
/Automation/linode/methodcheck.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/methodcheck.py
--------------------------------------------------------------------------------
/Automation/linode/oop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/oop.py
--------------------------------------------------------------------------------
/Automation/linode/shell.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/shell.py
--------------------------------------------------------------------------------
/Automation/linode/tests.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode/tests.py
--------------------------------------------------------------------------------
/Automation/linode_api4/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/__init__.py
--------------------------------------------------------------------------------
/Automation/linode_api4/common.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/common.py
--------------------------------------------------------------------------------
/Automation/linode_api4/errors.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/errors.py
--------------------------------------------------------------------------------
/Automation/linode_api4/linode_client.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/linode_client.py
--------------------------------------------------------------------------------
/Automation/linode_api4/login_client.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/login_client.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/__init__.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/account.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/account.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/base.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/base.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/dbase.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/dbase.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/domain.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/domain.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/filtering.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/filtering.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/image.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/image.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/linode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/linode.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/longview.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/longview.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/networking.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/networking.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/nodebalancer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/nodebalancer.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/object_storage.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/object_storage.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/profile.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/profile.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/region.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/region.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/support.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/support.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/tag.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/tag.py
--------------------------------------------------------------------------------
/Automation/linode_api4/objects/volume.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/objects/volume.py
--------------------------------------------------------------------------------
/Automation/linode_api4/paginated_list.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/linode_api4/paginated_list.py
--------------------------------------------------------------------------------
/Automation/load.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/load.py
--------------------------------------------------------------------------------
/Automation/local_repos_config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/local_repos_config.py
--------------------------------------------------------------------------------
/Automation/paver:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/paver
--------------------------------------------------------------------------------
/Automation/paver.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/paver.exe
--------------------------------------------------------------------------------
/Automation/psi_ansible.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ansible.py
--------------------------------------------------------------------------------
/Automation/psi_digitalocean.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_digitalocean.py
--------------------------------------------------------------------------------
/Automation/psi_digitalocean_apiv2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_digitalocean_apiv2.py
--------------------------------------------------------------------------------
/Automation/psi_elastichosts.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_elastichosts.py
--------------------------------------------------------------------------------
/Automation/psi_ipblacklist.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ipblacklist.py
--------------------------------------------------------------------------------
/Automation/psi_linode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_linode.py
--------------------------------------------------------------------------------
/Automation/psi_linode_api4.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_linode_api4.py
--------------------------------------------------------------------------------
/Automation/psi_load_job.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_load_job.sh
--------------------------------------------------------------------------------
/Automation/psi_mail_ansible_system_update.mako:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_ansible_system_update.mako
--------------------------------------------------------------------------------
/Automation/psi_mail_ansible_template.mako:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_ansible_template.mako
--------------------------------------------------------------------------------
/Automation/psi_mail_host_stats.mako:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_host_stats.mako
--------------------------------------------------------------------------------
/Automation/psi_mail_host_stats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_host_stats.py
--------------------------------------------------------------------------------
/Automation/psi_mail_hosts_load.mako:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_hosts_load.mako
--------------------------------------------------------------------------------
/Automation/psi_mail_stats.mako:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_stats.mako
--------------------------------------------------------------------------------
/Automation/psi_mail_stats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_mail_stats.py
--------------------------------------------------------------------------------
/Automation/psi_oci.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_oci.py
--------------------------------------------------------------------------------
/Automation/psi_ops.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops.py
--------------------------------------------------------------------------------
/Automation/psi_ops_additional_parameters.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_additional_parameters.py
--------------------------------------------------------------------------------
/Automation/psi_ops_build_android.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_build_android.py
--------------------------------------------------------------------------------
/Automation/psi_ops_build_windows.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_build_windows.py
--------------------------------------------------------------------------------
/Automation/psi_ops_cms.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_cms.py
--------------------------------------------------------------------------------
/Automation/psi_ops_crypto_tools.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_crypto_tools.py
--------------------------------------------------------------------------------
/Automation/psi_ops_deploy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_deploy.py
--------------------------------------------------------------------------------
/Automation/psi_ops_discovery.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_discovery.py
--------------------------------------------------------------------------------
/Automation/psi_ops_generate_blacklists.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_generate_blacklists.py
--------------------------------------------------------------------------------
/Automation/psi_ops_inproxy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_inproxy.py
--------------------------------------------------------------------------------
/Automation/psi_ops_inproxy_tools.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_inproxy_tools.py
--------------------------------------------------------------------------------
/Automation/psi_ops_install.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_install.py
--------------------------------------------------------------------------------
/Automation/psi_ops_s3.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_s3.py
--------------------------------------------------------------------------------
/Automation/psi_ops_test_tunnel_core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_test_tunnel_core.py
--------------------------------------------------------------------------------
/Automation/psi_ops_test_windows.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_test_windows.py
--------------------------------------------------------------------------------
/Automation/psi_ops_twitter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ops_twitter.py
--------------------------------------------------------------------------------
/Automation/psi_process_stats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_process_stats.py
--------------------------------------------------------------------------------
/Automation/psi_process_stats.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_process_stats.sql
--------------------------------------------------------------------------------
/Automation/psi_process_stats_mail.mako:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_process_stats_mail.mako
--------------------------------------------------------------------------------
/Automation/psi_process_stats_mail.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_process_stats_mail.py
--------------------------------------------------------------------------------
/Automation/psi_ramnode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ramnode.py
--------------------------------------------------------------------------------
/Automation/psi_routes.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_routes.py
--------------------------------------------------------------------------------
/Automation/psi_scaleway.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_scaleway.py
--------------------------------------------------------------------------------
/Automation/psi_ssh.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_ssh.py
--------------------------------------------------------------------------------
/Automation/psi_sync_logs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_sync_logs.py
--------------------------------------------------------------------------------
/Automation/psi_templates.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_templates.py
--------------------------------------------------------------------------------
/Automation/psi_update_stats_dat.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_update_stats_dat.py
--------------------------------------------------------------------------------
/Automation/psi_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_utils.py
--------------------------------------------------------------------------------
/Automation/psi_vps247.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_vps247.py
--------------------------------------------------------------------------------
/Automation/psi_vpsnet.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_vpsnet.py
--------------------------------------------------------------------------------
/Automation/psi_zenoss_monitoring.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/psi_zenoss_monitoring.py
--------------------------------------------------------------------------------
/Automation/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/requirements.txt
--------------------------------------------------------------------------------
/Automation/scaleway/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/.gitignore
--------------------------------------------------------------------------------
/Automation/scaleway/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/.travis.yml
--------------------------------------------------------------------------------
/Automation/scaleway/CHANGES.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/CHANGES.rst
--------------------------------------------------------------------------------
/Automation/scaleway/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/LICENSE
--------------------------------------------------------------------------------
/Automation/scaleway/MAINTAINERS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/MAINTAINERS.md
--------------------------------------------------------------------------------
/Automation/scaleway/MANIFEST.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/MANIFEST.in
--------------------------------------------------------------------------------
/Automation/scaleway/README.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/README.rst
--------------------------------------------------------------------------------
/Automation/scaleway/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/__init__.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/apis/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/apis/__init__.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/apis/api_account.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/apis/api_account.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/apis/api_billing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/apis/api_billing.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/apis/api_compute.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/apis/api_compute.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/apis/api_metadata.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/apis/api_metadata.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/tests/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/tests/__init__.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/tests/apis/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/tests/apis/__init__.py
--------------------------------------------------------------------------------
/Automation/scaleway/scaleway/tests/apis/test_api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/scaleway/tests/apis/test_api.py
--------------------------------------------------------------------------------
/Automation/scaleway/setup.cfg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/setup.cfg
--------------------------------------------------------------------------------
/Automation/scaleway/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/scaleway/setup.py
--------------------------------------------------------------------------------
/Automation/server-entry-signer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/server-entry-signer
--------------------------------------------------------------------------------
/Automation/server-entry-signer.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/server-entry-signer.exe
--------------------------------------------------------------------------------
/Automation/ssleay32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/ssleay32.dll
--------------------------------------------------------------------------------
/Automation/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/utils.py
--------------------------------------------------------------------------------
/Automation/website_generator.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Automation/website_generator.py
--------------------------------------------------------------------------------
/Data/Banners/banner1.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/Banners/banner1.bmp
--------------------------------------------------------------------------------
/Data/Banners/banner2.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/Banners/banner2.bmp
--------------------------------------------------------------------------------
/Data/Banners/email.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/Banners/email.bmp
--------------------------------------------------------------------------------
/Data/CodeSigning/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/CodeSigning/README
--------------------------------------------------------------------------------
/Data/CodeSigning/android.test.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/CodeSigning/android.test.keystore
--------------------------------------------------------------------------------
/Data/CodeSigning/test-code-signing-cert.spc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/CodeSigning/test-code-signing-cert.spc
--------------------------------------------------------------------------------
/Data/CodeSigning/test-code-signing-key.pvk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/CodeSigning/test-code-signing-key.pvk
--------------------------------------------------------------------------------
/Data/CodeSigning/test-code-signing-package.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/CodeSigning/test-code-signing-package.pfx
--------------------------------------------------------------------------------
/Data/PsiOps/psi_ops.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Data/PsiOps/psi_ops.dat
--------------------------------------------------------------------------------
/EmailResponder/20-psiphon-logging.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/20-psiphon-logging.conf
--------------------------------------------------------------------------------
/EmailResponder/50_scores.cf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/50_scores.cf
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/README.md
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/autoresponder.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/autoresponder.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/config.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/config.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/cronjob.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/cronjob.sh
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/datastore.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/datastore.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/datatransformer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/datatransformer.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/decryptor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/decryptor.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/email_validator.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/email_validator.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/install.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/install.sh
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/locale_codes.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/locale_codes.json
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/logger.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/logger.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/mailformatter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/mailformatter.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/mailsender.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/mailsender.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/mailsender.service:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/mailsender.service
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/poetry.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/poetry.lock
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/poetry.toml:
--------------------------------------------------------------------------------
1 | [virtualenvs]
2 | create = false
3 |
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/psi_ops_helpers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/psi_ops_helpers.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/pyproject.toml
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/redactor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/redactor.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/am.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/am.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/ar.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/ar.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/az.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/az.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/be.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/be.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/bn.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/bn.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/bo.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/bo.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/de.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/de.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/el.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/el.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/es.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/es.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/fa.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/fa.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/fi.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/fi.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/fr.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/fr.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/hi.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/hi.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/hr.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/hr.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/hu.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/hu.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/id.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/id.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/it.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/it.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/kk.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/kk.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/km.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/km.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/ko.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/ko.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/ky.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/ky.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/my.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/my.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/nb.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/nb.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/nl.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/nl.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/om.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/om.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/ru.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/ru.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/sn.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/sn.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/sw.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/sw.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/tg.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/tg.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/th.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/th.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/ti.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/ti.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/tk.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/tk.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/tr.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/tr.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/uk.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/uk.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/ur.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/ur.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/vi.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/vi.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/responses/zh.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/responses/zh.html
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/s3decryptor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/s3decryptor.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/sample_conf.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/sample_conf.json
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/sender.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/sender.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/statschecker.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/statschecker.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/translation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/translation.py
--------------------------------------------------------------------------------
/EmailResponder/FeedbackDecryptor/utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/FeedbackDecryptor/utils.py
--------------------------------------------------------------------------------
/EmailResponder/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/README.md
--------------------------------------------------------------------------------
/EmailResponder/aws_helpers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/aws_helpers.py
--------------------------------------------------------------------------------
/EmailResponder/blacklist.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/blacklist.py
--------------------------------------------------------------------------------
/EmailResponder/client_tls_policy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/client_tls_policy
--------------------------------------------------------------------------------
/EmailResponder/conf_pull.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/conf_pull.py
--------------------------------------------------------------------------------
/EmailResponder/create_cron_jobs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/create_cron_jobs.py
--------------------------------------------------------------------------------
/EmailResponder/forward:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/forward
--------------------------------------------------------------------------------
/EmailResponder/get_instance_info.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/get_instance_info.sh
--------------------------------------------------------------------------------
/EmailResponder/header_checks:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/header_checks
--------------------------------------------------------------------------------
/EmailResponder/helo_access:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/helo_access
--------------------------------------------------------------------------------
/EmailResponder/install.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/install.sh
--------------------------------------------------------------------------------
/EmailResponder/log_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/log_processor.py
--------------------------------------------------------------------------------
/EmailResponder/logger.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/logger.py
--------------------------------------------------------------------------------
/EmailResponder/mail_direct.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/mail_direct.py
--------------------------------------------------------------------------------
/EmailResponder/mail_process.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/mail_process.py
--------------------------------------------------------------------------------
/EmailResponder/mail_stats.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/mail_stats.py
--------------------------------------------------------------------------------
/EmailResponder/main.cf.sample:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/main.cf.sample
--------------------------------------------------------------------------------
/EmailResponder/master.cf.sample:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/master.cf.sample
--------------------------------------------------------------------------------
/EmailResponder/poetry.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/poetry.lock
--------------------------------------------------------------------------------
/EmailResponder/poetry.toml:
--------------------------------------------------------------------------------
1 | [virtualenvs]
2 | create = false
3 |
--------------------------------------------------------------------------------
/EmailResponder/postfix_queue_check.pl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/postfix_queue_check.pl
--------------------------------------------------------------------------------
/EmailResponder/psiphon-log-rotate.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/psiphon-log-rotate.conf
--------------------------------------------------------------------------------
/EmailResponder/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/pyproject.toml
--------------------------------------------------------------------------------
/EmailResponder/sender_access:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/sender_access
--------------------------------------------------------------------------------
/EmailResponder/sendmail.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/sendmail.py
--------------------------------------------------------------------------------
/EmailResponder/settings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/settings.py
--------------------------------------------------------------------------------
/EmailResponder/update_code.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/EmailResponder/update_code.sh
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/README.md
--------------------------------------------------------------------------------
/Server/psiphond/psiphond:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/Server/psiphond/psiphond
--------------------------------------------------------------------------------
/i18n/Pipfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/i18n/Pipfile
--------------------------------------------------------------------------------
/i18n/Pipfile.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/i18n/Pipfile.lock
--------------------------------------------------------------------------------
/i18n/transifex_pull.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Psiphon-Inc/psiphon-automation/HEAD/i18n/transifex_pull.py
--------------------------------------------------------------------------------