Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created February 4, 2019 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/0d9c4c78770370c9c9bc7672944ac8b8 to your computer and use it in GitHub Desktop.
Save ryantm/0d9c4c78770370c9c9bc7672944ac8b8 to your computer and use it in GitHub Desktop.
/nix/store/q3y4bz4g1lcy92k8h35pikb1lbv0fmhv-python3.7-apache-libcloud-2.4.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── apache_libcloud-2.4.0.dist-info
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── NOTICE
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── libcloud
│   ├── backup
│   │   ├── base.py
│   │   ├── drivers
│   │   │   ├── dimensiondata.py
│   │   │   ├── dummy.py
│   │   │   ├── ebs.py
│   │   │   ├── gce.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── dimensiondata.cpython-37.pyc
│   │   │   ├── dummy.cpython-37.pyc
│   │   │   ├── ebs.cpython-37.pyc
│   │   │   ├── gce.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   └── types.cpython-37.pyc
│   │   └── types.py
│   ├── base.py
│   ├── common
│   │   ├── abiquo.py
│   │   ├── aliyun.py
│   │   ├── aws.py
│   │   ├── azure_arm.py
│   │   ├── azure.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
│   │   ├── gogrid.py
│   │   ├── google.py
│   │   ├── hostvirtual.py
│   │   ├── __init__.py
│   │   ├── linode.py
│   │   ├── liquidweb.py
│   │   ├── luadns.py
│   │   ├── nfsn.py
│   │   ├── nsone.py
│   │   ├── onapp.py
│   │   ├── openstack_identity.py
│   │   ├── openstack.py
│   │   ├── ovh.py
│   │   ├── pointdns.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── abiquo.cpython-37.pyc
│   │   │   ├── aliyun.cpython-37.pyc
│   │   │   ├── aws.cpython-37.pyc
│   │   │   ├── azure_arm.cpython-37.pyc
│   │   │   ├── azure.cpython-37.pyc
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── brightbox.cpython-37.pyc
│   │   │   ├── buddyns.cpython-37.pyc
│   │   │   ├── cloudsigma.cpython-37.pyc
│   │   │   ├── cloudstack.cpython-37.pyc
│   │   │   ├── digitalocean.cpython-37.pyc
│   │   │   ├── dimensiondata.cpython-37.pyc
│   │   │   ├── dnsimple.cpython-37.pyc
│   │   │   ├── dnspod.cpython-37.pyc
│   │   │   ├── durabledns.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── gandi.cpython-37.pyc
│   │   │   ├── gogrid.cpython-37.pyc
│   │   │   ├── google.cpython-37.pyc
│   │   │   ├── hostvirtual.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── linode.cpython-37.pyc
│   │   │   ├── liquidweb.cpython-37.pyc
│   │   │   ├── luadns.cpython-37.pyc
│   │   │   ├── nfsn.cpython-37.pyc
│   │   │   ├── nsone.cpython-37.pyc
│   │   │   ├── onapp.cpython-37.pyc
│   │   │   ├── openstack.cpython-37.pyc
│   │   │   ├── openstack_identity.cpython-37.pyc
│   │   │   ├── ovh.cpython-37.pyc
│   │   │   ├── pointdns.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   ├── rackspace.cpython-37.pyc
│   │   │   ├── softlayer.cpython-37.pyc
│   │   │   ├── types.cpython-37.pyc
│   │   │   ├── upcloud.cpython-37.pyc
│   │   │   ├── vultr.cpython-37.pyc
│   │   │   ├── worldwidedns.cpython-37.pyc
│   │   │   ├── xmlrpc.cpython-37.pyc
│   │   │   └── zonomi.cpython-37.pyc
│   │   ├── rackspace.py
│   │   ├── softlayer.py
│   │   ├── types.py
│   │   ├── upcloud.py
│   │   ├── vultr.py
│   │   ├── worldwidedns.py
│   │   ├── xmlrpc.py
│   │   └── zonomi.py
│   ├── compute
│   │   ├── base.py
│   │   ├── constants.py
│   │   ├── deployment.py
│   │   ├── deprecated.py
│   │   ├── drivers
│   │   │   ├── abiquo.py
│   │   │   ├── auroracompute.py
│   │   │   ├── azure_arm.py
│   │   │   ├── azure.py
│   │   │   ├── bluebox.py
│   │   │   ├── brightbox.py
│   │   │   ├── bsnl.py
│   │   │   ├── cloudscale.py
│   │   │   ├── cloudsigma.py
│   │   │   ├── cloudstack.py
│   │   │   ├── cloudwatt.py
│   │   │   ├── digitalocean.py
│   │   │   ├── dimensiondata.py
│   │   │   ├── dummy.py
│   │   │   ├── ec2.py
│   │   │   ├── ecp.py
│   │   │   ├── ecs.py
│   │   │   ├── elastichosts.py
│   │   │   ├── elasticstack.py
│   │   │   ├── exoscale.py
│   │   │   ├── gandi.py
│   │   │   ├── gce.py
│   │   │   ├── gogrid.py
│   │   │   ├── gridspot.py
│   │   │   ├── hostvirtual.py
│   │   │   ├── ikoula.py
│   │   │   ├── indosat.py
│   │   │   ├── __init__.py
│   │   │   ├── internetsolutions.py
│   │   │   ├── joyent.py
│   │   │   ├── kili.py
│   │   │   ├── ktucloud.py
│   │   │   ├── libvirt_driver.py
│   │   │   ├── linode.py
│   │   │   ├── medone.py
│   │   │   ├── nephoscale.py
│   │   │   ├── ntta.py
│   │   │   ├── onapp.py
│   │   │   ├── oneandone.py
│   │   │   ├── opennebula.py
│   │   │   ├── openstack.py
│   │   │   ├── ovh.py
│   │   │   ├── packet.py
│   │   │   ├── profitbricks.py
│   │   │   ├── __pycache__
│   │   │   │   ├── abiquo.cpython-37.pyc
│   │   │   │   ├── auroracompute.cpython-37.pyc
│   │   │   │   ├── azure_arm.cpython-37.pyc
│   │   │   │   ├── azure.cpython-37.pyc
│   │   │   │   ├── bluebox.cpython-37.pyc
│   │   │   │   ├── brightbox.cpython-37.pyc
│   │   │   │   ├── bsnl.cpython-37.pyc
│   │   │   │   ├── cloudscale.cpython-37.pyc
│   │   │   │   ├── cloudsigma.cpython-37.pyc
│   │   │   │   ├── cloudstack.cpython-37.pyc
│   │   │   │   ├── cloudwatt.cpython-37.pyc
│   │   │   │   ├── digitalocean.cpython-37.pyc
│   │   │   │   ├── dimensiondata.cpython-37.pyc
│   │   │   │   ├── dummy.cpython-37.pyc
│   │   │   │   ├── ec2.cpython-37.pyc
│   │   │   │   ├── ecp.cpython-37.pyc
│   │   │   │   ├── ecs.cpython-37.pyc
│   │   │   │   ├── elastichosts.cpython-37.pyc
│   │   │   │   ├── elasticstack.cpython-37.pyc
│   │   │   │   ├── exoscale.cpython-37.pyc
│   │   │   │   ├── gandi.cpython-37.pyc
│   │   │   │   ├── gce.cpython-37.pyc
│   │   │   │   ├── gogrid.cpython-37.pyc
│   │   │   │   ├── gridspot.cpython-37.pyc
│   │   │   │   ├── hostvirtual.cpython-37.pyc
│   │   │   │   ├── ikoula.cpython-37.pyc
│   │   │   │   ├── indosat.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── internetsolutions.cpython-37.pyc
│   │   │   │   ├── joyent.cpython-37.pyc
│   │   │   │   ├── kili.cpython-37.pyc
│   │   │   │   ├── ktucloud.cpython-37.pyc
│   │   │   │   ├── libvirt_driver.cpython-37.pyc
│   │   │   │   ├── linode.cpython-37.pyc
│   │   │   │   ├── medone.cpython-37.pyc
│   │   │   │   ├── nephoscale.cpython-37.pyc
│   │   │   │   ├── ntta.cpython-37.pyc
│   │   │   │   ├── onapp.cpython-37.pyc
│   │   │   │   ├── oneandone.cpython-37.pyc
│   │   │   │   ├── opennebula.cpython-37.pyc
│   │   │   │   ├── openstack.cpython-37.pyc
│   │   │   │   ├── ovh.cpython-37.pyc
│   │   │   │   ├── packet.cpython-37.pyc
│   │   │   │   ├── profitbricks.cpython-37.pyc
│   │   │   │   ├── rackspace.cpython-37.pyc
│   │   │   │   ├── rimuhosting.cpython-37.pyc
│   │   │   │   ├── scaleway.cpython-37.pyc
│   │   │   │   ├── serverlove.cpython-37.pyc
│   │   │   │   ├── skalicloud.cpython-37.pyc
│   │   │   │   ├── softlayer.cpython-37.pyc
│   │   │   │   ├── upcloud.cpython-37.pyc
│   │   │   │   ├── vcl.cpython-37.pyc
│   │   │   │   ├── vcloud.cpython-37.pyc
│   │   │   │   ├── voxel.cpython-37.pyc
│   │   │   │   ├── vpsnet.cpython-37.pyc
│   │   │   │   ├── vsphere.cpython-37.pyc
│   │   │   │   └── vultr.cpython-37.pyc
│   │   │   ├── rackspace.py
│   │   │   ├── rimuhosting.py
│   │   │   ├── scaleway.py
│   │   │   ├── serverlove.py
│   │   │   ├── skalicloud.py
│   │   │   ├── softlayer.py
│   │   │   ├── upcloud.py
│   │   │   ├── vcloud.py
│   │   │   ├── vcl.py
│   │   │   ├── voxel.py
│   │   │   ├── vpsnet.py
│   │   │   ├── vsphere.py
│   │   │   └── vultr.py
│   │   ├── __init__.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── constants.cpython-37.pyc
│   │   │   ├── deployment.cpython-37.pyc
│   │   │   ├── deprecated.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   ├── ssh.cpython-37.pyc
│   │   │   └── types.cpython-37.pyc
│   │   ├── ssh.py
│   │   └── types.py
│   ├── container
│   │   ├── base.py
│   │   ├── drivers
│   │   │   ├── docker.py
│   │   │   ├── dummy.py
│   │   │   ├── ecs.py
│   │   │   ├── gke.py
│   │   │   ├── __init__.py
│   │   │   ├── joyent.py
│   │   │   ├── kubernetes.py
│   │   │   ├── __pycache__
│   │   │   │   ├── docker.cpython-37.pyc
│   │   │   │   ├── dummy.cpython-37.pyc
│   │   │   │   ├── ecs.cpython-37.pyc
│   │   │   │   ├── gke.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── joyent.cpython-37.pyc
│   │   │   │   ├── kubernetes.cpython-37.pyc
│   │   │   │   └── rancher.cpython-37.pyc
│   │   │   └── rancher.py
│   │   ├── __init__.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   └── types.cpython-37.pyc
│   │   ├── types.py
│   │   └── utils
│   │   ├── docker.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── docker.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   ├── data
│   │   └── pricing.json
│   ├── dns
│   │   ├── base.py
│   │   ├── drivers
│   │   │   ├── auroradns.py
│   │   │   ├── buddyns.py
│   │   │   ├── cloudflare.py
│   │   │   ├── digitalocean.py
│   │   │   ├── dnsimple.py
│   │   │   ├── dnspod.py
│   │   │   ├── dummy.py
│   │   │   ├── durabledns.py
│   │   │   ├── gandi.py
│   │   │   ├── godaddy.py
│   │   │   ├── google.py
│   │   │   ├── hostvirtual.py
│   │   │   ├── __init__.py
│   │   │   ├── linode.py
│   │   │   ├── liquidweb.py
│   │   │   ├── luadns.py
│   │   │   ├── nfsn.py
│   │   │   ├── nsone.py
│   │   │   ├── onapp.py
│   │   │   ├── pointdns.py
│   │   │   ├── powerdns.py
│   │   │   ├── __pycache__
│   │   │   │   ├── auroradns.cpython-37.pyc
│   │   │   │   ├── buddyns.cpython-37.pyc
│   │   │   │   ├── cloudflare.cpython-37.pyc
│   │   │   │   ├── digitalocean.cpython-37.pyc
│   │   │   │   ├── dnsimple.cpython-37.pyc
│   │   │   │   ├── dnspod.cpython-37.pyc
│   │   │   │   ├── dummy.cpython-37.pyc
│   │   │   │   ├── durabledns.cpython-37.pyc
│   │   │   │   ├── gandi.cpython-37.pyc
│   │   │   │   ├── godaddy.cpython-37.pyc
│   │   │   │   ├── google.cpython-37.pyc
│   │   │   │   ├── hostvirtual.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── linode.cpython-37.pyc
│   │   │   │   ├── liquidweb.cpython-37.pyc
│   │   │   │   ├── luadns.cpython-37.pyc
│   │   │   │   ├── nfsn.cpython-37.pyc
│   │   │   │   ├── nsone.cpython-37.pyc
│   │   │   │   ├── onapp.cpython-37.pyc
│   │   │   │   ├── pointdns.cpython-37.pyc
│   │   │   │   ├── powerdns.cpython-37.pyc
│   │   │   │   ├── rackspace.cpython-37.pyc
│   │   │   │   ├── route53.cpython-37.pyc
│   │   │   │   ├── softlayer.cpython-37.pyc
│   │   │   │   ├── vultr.cpython-37.pyc
│   │   │   │   ├── worldwidedns.cpython-37.pyc
│   │   │   │   ├── zerigo.cpython-37.pyc
│   │   │   │   └── zonomi.cpython-37.pyc
│   │   │   ├── rackspace.py
│   │   │   ├── route53.py
│   │   │   ├── softlayer.py
│   │   │   ├── vultr.py
│   │   │   ├── worldwidedns.py
│   │   │   ├── zerigo.py
│   │   │   └── zonomi.py
│   │   ├── __init__.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   └── types.cpython-37.pyc
│   │   └── types.py
│   ├── http.py
│   ├── __init__.py
│   ├── loadbalancer
│   │   ├── base.py
│   │   ├── drivers
│   │   │   ├── alb.py
│   │   │   ├── brightbox.py
│   │   │   ├── cloudstack.py
│   │   │   ├── dimensiondata.py
│   │   │   ├── elb.py
│   │   │   ├── gce.py
│   │   │   ├── gogrid.py
│   │   │   ├── __init__.py
│   │   │   ├── ninefold.py
│   │   │   ├── __pycache__
│   │   │   │   ├── alb.cpython-37.pyc
│   │   │   │   ├── brightbox.cpython-37.pyc
│   │   │   │   ├── cloudstack.cpython-37.pyc
│   │   │   │   ├── dimensiondata.cpython-37.pyc
│   │   │   │   ├── elb.cpython-37.pyc
│   │   │   │   ├── gce.cpython-37.pyc
│   │   │   │   ├── gogrid.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ninefold.cpython-37.pyc
│   │   │   │   ├── rackspace.cpython-37.pyc
│   │   │   │   ├── slb.cpython-37.pyc
│   │   │   │   └── softlayer.cpython-37.pyc
│   │   │   ├── rackspace.py
│   │   │   ├── slb.py
│   │   │   └── softlayer.py
│   │   ├── __init__.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   └── types.cpython-37.pyc
│   │   └── types.py
│   ├── pricing.py
│   ├── __pycache__
│   │   ├── base.cpython-37.pyc
│   │   ├── http.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── pricing.cpython-37.pyc
│   │   └── security.cpython-37.pyc
│   ├── security.py
│   ├── storage
│   │   ├── base.py
│   │   ├── drivers
│   │   │   ├── atmos.py
│   │   │   ├── auroraobjects.py
│   │   │   ├── azure_blobs.py
│   │   │   ├── backblaze_b2.py
│   │   │   ├── cloudfiles.py
│   │   │   ├── digitalocean_spaces.py
│   │   │   ├── dummy.py
│   │   │   ├── google_storage.py
│   │   │   ├── __init__.py
│   │   │   ├── ktucloud.py
│   │   │   ├── local.py
│   │   │   ├── nimbus.py
│   │   │   ├── ninefold.py
│   │   │   ├── oss.py
│   │   │   ├── __pycache__
│   │   │   │   ├── atmos.cpython-37.pyc
│   │   │   │   ├── auroraobjects.cpython-37.pyc
│   │   │   │   ├── azure_blobs.cpython-37.pyc
│   │   │   │   ├── backblaze_b2.cpython-37.pyc
│   │   │   │   ├── cloudfiles.cpython-37.pyc
│   │   │   │   ├── digitalocean_spaces.cpython-37.pyc
│   │   │   │   ├── dummy.cpython-37.pyc
│   │   │   │   ├── google_storage.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ktucloud.cpython-37.pyc
│   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   ├── nimbus.cpython-37.pyc
│   │   │   │   ├── ninefold.cpython-37.pyc
│   │   │   │   ├── oss.cpython-37.pyc
│   │   │   │   ├── rgw.cpython-37.pyc
│   │   │   │   └── s3.cpython-37.pyc
│   │   │   ├── rgw.py
│   │   │   └── s3.py
│   │   ├── __init__.py
│   │   ├── providers.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── providers.cpython-37.pyc
│   │   │   └── types.cpython-37.pyc
│   │   └── types.py
│   ├── test
│   │   ├── backup
│   │   │   ├── fixtures
│   │   │   │   └── dimensiondata
│   │   │   │   ├── _backup_client_30b1ff76_c76d_4d7c_b39d_3b72be0384c8_cancelJob_FAIL.xml
│   │   │   │   ├── _backup_client_30b1ff76_c76d_4d7c_b39d_3b72be0384c8_cancelJob.xml
│   │   │   │   ├── _backup_client_schedulePolicy.xml
│   │   │   │   ├── _backup_client_storagePolicy.xml
│   │   │   │   ├── _backup_client_SUCCESS_PUT.xml
│   │   │   │   ├── _backup_client_type.xml
│   │   │   │   ├── _backup_DISABLE.xml
│   │   │   │   ├── _backup_ENABLE.xml
│   │   │   │   ├── _backup_EXISTS.xml
│   │   │   │   ├── _backup_INFO_DISABLED.xml
│   │   │   │   ├── _backup_INFO_NOCLIENT.xml
│   │   │   │   ├── _backup_INFO_NOJOB.xml
│   │   │   │   ├── _backup_INFO.xml
│   │   │   │   ├── _backup_modify.xml
│   │   │   │   ├── oec_0_9_myaccount.xml
│   │   │   │   ├── _remove_backup_client_FAIL.xml
│   │   │   │   ├── _remove_backup_client.xml
│   │   │   │   ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87_DEFAULT.xml
│   │   │   │   ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│   │   │   │   ├── server_server_NOBACKUP.xml
│   │   │   │   └── server_server.xml
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_dimensiondata_v2_3.cpython-37.pyc
│   │   │   │   └── test_dimensiondata_v2_4.cpython-37.pyc
│   │   │   ├── test_dimensiondata_v2_3.py
│   │   │   └── test_dimensiondata_v2_4.py
│   │   ├── common
│   │   │   ├── fixtures
│   │   │   │   ├── digitalocean
│   │   │   │   │   ├── _v1_events_12345670.json
│   │   │   │   │   ├── _v1_events_12345670_UNAUTHORIZED.json
│   │   │   │   │   ├── _v2_account.json
│   │   │   │   │   ├── _v2_account_UNAUTHORIZED.json
│   │   │   │   │   ├── _v2_actions_12345670.json
│   │   │   │   │   ├── _v2_actions.json
│   │   │   │   │   ├── _v2_actions_page_1.json
│   │   │   │   │   └── _v2_actions_page_2.json
│   │   │   │   └── google
│   │   │   │   ├── pkey.json
│   │   │   │   └── pkey.pem
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_aliyun.cpython-37.pyc
│   │   │   │   ├── test_aws.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_base_driver.cpython-37.pyc
│   │   │   │   ├── test_cloudstack.cpython-37.pyc
│   │   │   │   ├── test_digitalocean_v2.cpython-37.pyc
│   │   │   │   ├── test_gandi.cpython-37.pyc
│   │   │   │   ├── test_google.cpython-37.pyc
│   │   │   │   ├── test_nfsn.cpython-37.pyc
│   │   │   │   ├── test_openstack.cpython-37.pyc
│   │   │   │   ├── test_openstack_identity.cpython-37.pyc
│   │   │   │   ├── test_ovh.cpython-37.pyc
│   │   │   │   ├── test_retry_limit.cpython-37.pyc
│   │   │   │   └── test_upcloud.cpython-37.pyc
│   │   │   ├── test_aliyun.py
│   │   │   ├── test_aws.py
│   │   │   ├── test_base_driver.py
│   │   │   ├── test_base.py
│   │   │   ├── test_cloudstack.py
│   │   │   ├── test_digitalocean_v2.py
│   │   │   ├── test_gandi.py
│   │   │   ├── test_google.py
│   │   │   ├── test_nfsn.py
│   │   │   ├── test_openstack_identity.py
│   │   │   ├── test_openstack.py
│   │   │   ├── test_ovh.py
│   │   │   ├── test_retry_limit.py
│   │   │   └── test_upcloud.py
│   │   ├── compute
│   │   │   ├── fixtures
│   │   │   │   ├── abiquo
│   │   │   │   │   ├── dcs.xml
│   │   │   │   │   ├── ent_1_dcrep_2_template_11.xml
│   │   │   │   │   ├── ent_1_dcrep_2_templates.xml
│   │   │   │   │   ├── ent_1_dcrep_2.xml
│   │   │   │   │   ├── ent_1_dcreps.xml
│   │   │   │   │   ├── ent_1.xml
│   │   │   │   │   ├── login.xml
│   │   │   │   │   ├── not_found_error.xml
│   │   │   │   │   ├── privilege_errors.html
│   │   │   │   │   ├── unauthorized_user.html
│   │   │   │   │   ├── 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_5.xml
│   │   │   │   │   ├── vdc_4_vapp_6_undeploy_task_failed.xml
│   │   │   │   │   ├── vdc_4_vapp_6_undeploy_task.xml
│   │   │   │   │   ├── vdc_4_vapp_6_undeploy.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_allocated.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_deployed.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_deploy_task_failed.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_deploy_task.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_deploy.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_nics.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_reset_task.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_reset.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_undeploy_task_failed.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_undeploy_task.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3_undeploy.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_3.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vm_creation_ok.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vms_allocated.xml
│   │   │   │   │   ├── vdc_4_vapp_6_vms.xml
│   │   │   │   │   ├── vdc_4_vapp_6.xml
│   │   │   │   │   ├── vdc_4_vapp_creation_ok.xml
│   │   │   │   │   ├── vdc_4_vapps.xml
│   │   │   │   │   ├── vdc_4.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_deployments_dc03_roleinstances_dc13.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest01_deploymentslots_Production.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest01.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest02_deploymentslots_Production.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest03_deploymentslots_Production.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_dcoddkinztest03.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_testdcabc2_deploymentslots_Production.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc2_deployments.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc2.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc_deployments.xml
│   │   │   │   │   ├── _3761b98b_673d_526c_8d55_fee918758e6e_services_hostedservices_testdcabc.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
│   │   │   │   │   ├── _subscriptions_99999999_providers_Microsoft_Commerce_RateCard.json
│   │   │   │   │   ├── _subscriptions_99999999_providers_Microsoft_Compute_disks.json
│   │   │   │   │   ├── _subscriptions_99999999_providers_Microsoft_Compute.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_resourceGroups_000000_providers_Microsoft_Compute_disks_test_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_InstanceView.json
│   │   │   │   │   ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Compute_virtualMachines_test_node_1.json
│   │   │   │   │   ├── _subscriptions_99999999_resourceGroups_000000_providers_Microsoft_Network_networkInterfaces_test_node_1_nic.json
│   │   │   │   │   ├── _subscriptions_99999999_resourceGroups_111111_providers_Microsoft_Compute_disks.json
│   │   │   │   │   └── _subscriptions_99999999_resourceGroups_111111_providers_Microsoft_Compute_snapshots.json
│   │   │   │   ├── bluebox
│   │   │   │   │   ├── api_block_products_json.json
│   │   │   │   │   ├── api_blocks_99df878c_6e5c_4945_a635_d94da9fd3146_json_delete.json
│   │   │   │   │   ├── api_blocks_99df878c_6e5c_4945_a635_d94da9fd3146_json.json
│   │   │   │   │   ├── api_blocks_99df878c_6e5c_4945_a635_d94da9fd3146_reboot_json.json
│   │   │   │   │   ├── api_blocks_json.json
│   │   │   │   │   ├── api_blocks_json_post.json
│   │   │   │   │   └── api_block_templates_json.json
│   │   │   │   ├── brightbox
│   │   │   │   │   ├── create_cloud_ip.json
│   │   │   │   │   ├── create_server_gb1_a.json
│   │   │   │   │   ├── create_server_gb1_b.json
│   │   │   │   │   ├── create_server.json
│   │   │   │   │   ├── list_cloud_ips.json
│   │   │   │   │   ├── list_images.json
│   │   │   │   │   ├── list_servers.json
│   │   │   │   │   ├── list_server_types.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
│   │   │   │   │   ├── 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_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
│   │   │   │   │   ├── createNetworkACL_default.json
│   │   │   │   │   ├── createNetworkACLList_default.json
│   │   │   │   │   ├── createNetwork_default.json
│   │   │   │   │   ├── createPortForwardingRule_default.json
│   │   │   │   │   ├── createSecurityGroup_default.json
│   │   │   │   │   ├── createSnapshot_default.json
│   │   │   │   │   ├── createSSHKeyPair_default.json
│   │   │   │   │   ├── createTags_default.json
│   │   │   │   │   ├── createTemplate_default.json
│   │   │   │   │   ├── createVolume_default.json
│   │   │   │   │   ├── createVolume_withcustomdisksize.json
│   │   │   │   │   ├── createVolume_withvolumetype.json
│   │   │   │   │   ├── createVPC_default.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
│   │   │   │   │   ├── deleteSecurityGroup_default.json
│   │   │   │   │   ├── deleteSnapshot_default.json
│   │   │   │   │   ├── deleteSSHKeyPair_default.json
│   │   │   │   │   ├── deleteTags_default.json
│   │   │   │   │   ├── deleteVolume_default.json
│   │   │   │   │   ├── deleteVPC_default.json
│   │   │   │   │   ├── deleteVpnConnection_default.json
│   │   │   │   │   ├── deleteVpnCustomerGateway_default.json
│   │   │   │   │   ├── deleteVpnGateway_default.json
│   │   │   │   │   ├── deployVirtualMachine_default.json
│   │   │   │   │   ├── deployVirtualMachine_deployfail2.json
│   │   │   │   │   ├── deployVirtualMachine_deployfail.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
│   │   │   │   │   ├── listAffinityGroups_default.json
│   │   │   │   │   ├── listAffinityGroupTypes_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_deployfail2.json
│   │   │   │   │   ├── listNetworks_deployfail.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
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── listSSHKeyPairs_default.json
│   │   │   │   │   ├── listSSHKeyPairs_get_one_doesnt_exist.json
│   │   │   │   │   ├── listSSHKeyPairs_get_one.json
│   │   │   │   │   ├── listSSHKeyPairs_no_keys.json
│   │   │   │   │   ├── listTemplates_default.json
│   │   │   │   │   ├── listTemplates_deployip.json
│   │   │   │   │   ├── listTemplates_deploynetworks.json
│   │   │   │   │   ├── listTemplates_notemplates.json
│   │   │   │   │   ├── listTemplates_rootdisksize.json
│   │   │   │   │   ├── listTemplates_stoppedvm.json
│   │   │   │   │   ├── listVirtualMachines_default.json
│   │   │   │   │   ├── listVirtualMachines_noipaddress.json
│   │   │   │   │   ├── listVolumes_default.json
│   │   │   │   │   ├── listVolumes_rootdisksize.json
│   │   │   │   │   ├── listVPCOfferings_default.json
│   │   │   │   │   ├── listVPCs_default.json
│   │   │   │   │   ├── listVpnConnections_default.json
│   │   │   │   │   ├── listVpnCustomerGateways_default.json
│   │   │   │   │   ├── listVpnGateways_default.json
│   │   │   │   │   ├── listZones_default.json
│   │   │   │   │   ├── listZones_deployfail2.json
│   │   │   │   │   ├── listZones_deployfail.json
│   │   │   │   │   ├── listZones_deployip.json
│   │   │   │   │   ├── listZones_deploynetworks.json
│   │   │   │   │   ├── listZones_rootdisksize.json
│   │   │   │   │   ├── listZones_stoppedvm.json
│   │   │   │   │   ├── listZones_withcustomdisksize.json
│   │   │   │   │   ├── listZones_withvolumetype.json
│   │   │   │   │   ├── queryAsyncJobResult_111112.json
│   │   │   │   │   ├── queryAsyncJobResult_11111.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_createtagsjob.json
│   │   │   │   │   ├── queryAsyncJobResult_createvolumejob.json
│   │   │   │   │   ├── queryAsyncJobResult_createVpnConnection.json
│   │   │   │   │   ├── queryAsyncJobResult_createVpnCustomerGateway.json
│   │   │   │   │   ├── queryAsyncJobResult_createVpnGateway.json
│   │   │   │   │   ├── queryAsyncJobResult_deleteNetwork.json
│   │   │   │   │   ├── queryAsyncJobResult_deletetagsjob.json
│   │   │   │   │   ├── queryAsyncJobResult_deleteVPC.json
│   │   │   │   │   ├── queryAsyncJobResult_deleteVpnConnection.json
│   │   │   │   │   ├── queryAsyncJobResult_deleteVpnCustomerGateway.json
│   │   │   │   │   ├── queryAsyncJobResult_deleteVpnGateway.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_invalid_image.json
│   │   │   │   │   ├── error.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_empty.json
│   │   │   │   │   ├── list_nodes.json
│   │   │   │   │   ├── list_nodes_page_1.json
│   │   │   │   │   ├── list_sizes.json
│   │   │   │   │   ├── list_volumes_empty.json
│   │   │   │   │   ├── list_volumes.json
│   │   │   │   │   ├── list_volume_snapshots.json
│   │   │   │   │   └── reboot_node.json
│   │   │   │   ├── dimensiondata
│   │   │   │   │   ├── 2.4
│   │   │   │   │   │   ├── change_nic_networkadapter_response.xml
│   │   │   │   │   │   ├── deploy_customised_server.xml
│   │   │   │   │   │   ├── exchange_nic_vlans_response.xml
│   │   │   │   │   │   ├── image_customerImage_2ffa36c8_1848_49eb_b4fa_9d908775f68c.xml
│   │   │   │   │   │   ├── image_customerImage_5234e5c7_01de_4411_8b6e_baeb8d91cf5d.xml
│   │   │   │   │   │   ├── image_customerImage.xml
│   │   │   │   │   │   ├── image_osImage_6b4fb0c7_a57b_4f58_b59c_9958f94f971a.xml
│   │   │   │   │   │   ├── image_osImage_c14b1a46_2428_44c1_9c1a_b20e6418d08c.xml
│   │   │   │   │   │   ├── image_osImage.xml
│   │   │   │   │   │   ├── import_image_response.xml
│   │   │   │   │   │   ├── server_cleanServer.xml
│   │   │   │   │   │   ├── server_clone_response.xml
│   │   │   │   │   │   ├── server_GetServer.xml
│   │   │   │   │   │   ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│   │   │   │   │   │   ├── server_server_NA3.xml
│   │   │   │   │   │   ├── server_server_paginated.xml
│   │   │   │   │   │   └── server_server.xml
│   │   │   │   │   ├── audit_log.csv
│   │   │   │   │   ├── detailed_usage_report.csv
│   │   │   │   │   ├── image_customerImage_2ffa36c8_1848_49eb_b4fa_9d908775f68c.xml
│   │   │   │   │   ├── image_customerImage_5234e5c7_01de_4411_8b6e_baeb8d91cf5d.xml
│   │   │   │   │   ├── image_customerImage_BAD_REQUEST.xml
│   │   │   │   │   ├── image_customerImage.xml
│   │   │   │   │   ├── image_osImage_6b4fb0c7_a57b_4f58_b59c_9958f94f971a.xml
│   │   │   │   │   ├── image_osImage_BAD_REQUEST.xml
│   │   │   │   │   ├── image_osImage_c14b1a46_2428_44c1_9c1a_b20e6418d08c.xml
│   │   │   │   │   ├── image_osImage.xml
│   │   │   │   │   ├── infrastructure_datacenter_NA9.xml
│   │   │   │   │   ├── infrastructure_datacenter.xml
│   │   │   │   │   ├── ip_address_list_create.xml
│   │   │   │   │   ├── ip_address_list_delete.xml
│   │   │   │   │   ├── ip_address_list_edit.xml
│   │   │   │   │   ├── ip_address_lists_FILTERBYNAME.xml
│   │   │   │   │   ├── ip_address_lists.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_d0a20f59_77b9_4f28_a63b_e58496b73a6c.xml
│   │   │   │   │   ├── network_firewallRule.xml
│   │   │   │   │   ├── network_natRule_2187a636_7ebb_49a1_a2ff_5d617f496dce.xml
│   │   │   │   │   ├── network_natRule.xml
│   │   │   │   │   ├── network_networkDomain_8cdfd607_f429_4df6_9352_162cfc0891be.xml
│   │   │   │   │   ├── network_networkDomain.xml
│   │   │   │   │   ├── network_publicIpBlock_4487241a_f0ca_11e3_9315_d4bed9b167ba.xml
│   │   │   │   │   ├── network_publicIpBlock_9945dc4a_bdce_11e4_8c14_b8ca3a5d9ef8.xml
│   │   │   │   │   ├── network_publicIpBlock.xml
│   │   │   │   │   ├── network_removePublicIpBlock.xml
│   │   │   │   │   ├── network_vlan_0e56433f_d808_4669_821d_812769517ff8.xml
│   │   │   │   │   ├── network_vlan.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_create_FAIL.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_create.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_delete_FAIL.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_antiAffinityRule_delete.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_datacenter.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_network_4bba37be_506f_11e3_b29c_001517c4643e.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_networkWithLocation.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_delete_INPROGRESS.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_delete.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_poweroff_INPROGRESS.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_poweroff.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_restart_INPROGRESS.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_restart.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_shutdown_INPROGRESS.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_shutdown.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_start_INPROGRESS.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_11_start.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_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_e75ead52_692f_4314_8725_c8a4f4d13a87_disk_1.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.xml
│   │   │   │   │   ├── oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server_pendingDeploy.xml
│   │   │   │   │   ├── _oec_0_9_8a8f6abc_2745_4d8a_9cbc_8dabe5a7d0e4_server.xml
│   │   │   │   │   ├── oec_0_9_base_imageWithDiskSpeed.xml
│   │   │   │   │   ├── oec_0_9_base_image.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_addDisk.xml
│   │   │   │   │   ├── server_addNic.xml
│   │   │   │   │   ├── server_antiAffinityRule_list_PAGINATED.xml
│   │   │   │   │   ├── server_antiAffinityRule_list.xml
│   │   │   │   │   ├── server_changeServerMonitoringPlan.xml
│   │   │   │   │   ├── server_cleanServer.xml
│   │   │   │   │   ├── server_deleteServer_RESOURCEBUSY.xml
│   │   │   │   │   ├── server_deleteServer.xml
│   │   │   │   │   ├── server_deployServer.xml
│   │   │   │   │   ├── server_disableServerMonitoring.xml
│   │   │   │   │   ├── server_enableServerMonitoring.xml
│   │   │   │   │   ├── server_GetServer.xml
│   │   │   │   │   ├── server_powerOffServer_INPROGRESS.xml
│   │   │   │   │   ├── server_powerOffServer.xml
│   │   │   │   │   ├── server_rebootServer_RESOURCEBUSY.xml
│   │   │   │   │   ├── server_rebootServer.xml
│   │   │   │   │   ├── server_reconfigureServer.xml
│   │   │   │   │   ├── server_removeDisk.xml
│   │   │   │   │   ├── server_removeNic.xml
│   │   │   │   │   ├── server_resetServer.xml
│   │   │   │   │   ├── server_server_e75ead52_692f_4314_8725_c8a4f4d13a87.xml
│   │   │   │   │   ├── server_server_NA3.xml
│   │   │   │   │   ├── server_server_paginated_empty.xml
│   │   │   │   │   ├── server_server_paginated.xml
│   │   │   │   │   ├── server_server.xml
│   │   │   │   │   ├── server_shutdownServer_INPROGRESS.xml
│   │   │   │   │   ├── server_shutdownServer.xml
│   │   │   │   │   ├── server_startServer_INPROGRESS.xml
│   │   │   │   │   ├── server_startServer.xml
│   │   │   │   │   ├── server_updateVmwareTools.xml
│   │   │   │   │   ├── summary_usage_report.csv
│   │   │   │   │   ├── tag_applyTags_BADREQUEST.xml
│   │   │   │   │   ├── tag_applyTags.xml
│   │   │   │   │   ├── tag_createTagKey_BADREQUEST.xml
│   │   │   │   │   ├── tag_createTagKey.xml
│   │   │   │   │   ├── tag_deleteTagKey_BADREQUEST.xml
│   │   │   │   │   ├── tag_deleteTagKey.xml
│   │   │   │   │   ├── tag_editTagKey_BADREQUEST.xml
│   │   │   │   │   ├── tag_editTagKey.xml
│   │   │   │   │   ├── tag_removeTag_BADREQUEST.xml
│   │   │   │   │   ├── tag_removeTag.xml
│   │   │   │   │   ├── tag_tagKey_5ab77f5f_5aa9_426f_8459_4eab34e03d54_BADREQUEST.xml
│   │   │   │   │   ├── tag_tagKey_5ab77f5f_5aa9_426f_8459_4eab34e03d54.xml
│   │   │   │   │   ├── tag_tagKey_list_SINGLE.xml
│   │   │   │   │   ├── tag_tagKey_list.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_all.xml
│   │   │   │   │   ├── describe_addresses_multi.xml
│   │   │   │   │   ├── describe_addresses_single.xml
│   │   │   │   │   ├── describe_addresses.xml
│   │   │   │   │   ├── describe_availability_zones.xml
│   │   │   │   │   ├── describe_images_ex_imageids.xml
│   │   │   │   │   ├── describe_images.xml
│   │   │   │   │   ├── describe_import_snapshot_tasks_active.xml
│   │   │   │   │   ├── describe_import_snapshot_tasks.xml
│   │   │   │   │   ├── describe_instances.xml
│   │   │   │   │   ├── describe_instance_types.xml
│   │   │   │   │   ├── describe_internet_gateways.xml
│   │   │   │   │   ├── describe_key_pairs_doesnt_exist.xml
│   │   │   │   │   ├── describe_key_pairs.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_modifications.xml
│   │   │   │   │   ├── describe_volumes.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_volume.xml
│   │   │   │   │   ├── reboot_instances.xml
│   │   │   │   │   ├── register_image.xml
│   │   │   │   │   ├── release_address.xml
│   │   │   │   │   ├── revoke_security_group_egress.xml
│   │   │   │   │   ├── revoke_security_group_ingress.xml
│   │   │   │   │   ├── run_instances_iam_profile.xml
│   │   │   │   │   ├── run_instances_idem_mismatch.xml
│   │   │   │   │   ├── run_instances_idem.xml
│   │   │   │   │   ├── run_instances_with_subnet_and_security_group.xml
│   │   │   │   │   ├── run_instances.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_instances.xml
│   │   │   │   │   ├── describe_instance_types.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_page2.xml
│   │   │   │   │   ├── pages_describe_images.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
│   │   │   │   ├── 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_rating.xml
│   │   │   │   │   ├── account_info.xml
│   │   │   │   │   ├── datacenter_list.xml
│   │   │   │   │   ├── disk_attach.xml
│   │   │   │   │   ├── disk_create_from.xml
│   │   │   │   │   ├── disk_create.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
│   │   │   │   │   ├── 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_delete.json
│   │   │   │   │   ├── global_addresses_lcaddressglobal.json
│   │   │   │   │   ├── global_addresses_post.json
│   │   │   │   │   ├── global_backendServices-empty.json
│   │   │   │   │   ├── global_backendServices_no_backends.json
│   │   │   │   │   ├── global_backendServices_post.json
│   │   │   │   │   ├── global_backendServices_web_service_delete.json
│   │   │   │   │   ├── global_backendServices_web_service.json
│   │   │   │   │   ├── global_backendServices-web-service.json
│   │   │   │   │   ├── global_custom_image_setLabels_post.json
│   │   │   │   │   ├── global_firewalls.json
│   │   │   │   │   ├── global_firewalls_lcfirewall_delete.json
│   │   │   │   │   ├── global_firewalls_lcfirewall-deny.json
│   │   │   │   │   ├── global_firewalls_lcfirewall-egress.json
│   │   │   │   │   ├── global_firewalls_lcfirewall.json
│   │   │   │   │   ├── global_firewalls_lcfirewall_put.json
│   │   │   │   │   ├── global_firewalls_post.json
│   │   │   │   │   ├── global_forwardingRules_http_rule_delete.json
│   │   │   │   │   ├── global_forwardingRules_http_rule.json
│   │   │   │   │   ├── global_forwardingRules.json
│   │   │   │   │   ├── global_forwardingRules_post.json
│   │   │   │   │   ├── global_httpHealthChecks_basic-check.json
│   │   │   │   │   ├── global_httpHealthChecks.json
│   │   │   │   │   ├── global_httpHealthChecks_lchealthcheck_delete.json
│   │   │   │   │   ├── global_httpHealthChecks_lchealthcheck.json
│   │   │   │   │   ├── global_httpHealthChecks_lchealthcheck_put.json
│   │   │   │   │   ├── global_httpHealthChecks_libcloud-lb-demo-healthcheck.json
│   │   │   │   │   ├── global_httpHealthChecks_post.json
│   │   │   │   │   ├── global_images_debian_7_wheezy_v20131014_deprecate.json
│   │   │   │   │   ├── global_images_debian_7_wheezy_v20131120_delete.json
│   │   │   │   │   ├── global_images_family_notfound.json
│   │   │   │   │   ├── global_images.json
│   │   │   │   │   ├── global_images_post.json
│   │   │   │   │   ├── global_instanceTemplates_insert.json
│   │   │   │   │   ├── global_instanceTemplates.json
│   │   │   │   │   ├── global_instanceTemplates_my_instance_template1.json
│   │   │   │   │   ├── global_instanceTemplates_my_instance_template_shared_network.json
│   │   │   │   │   ├── global_networks_cf.json
│   │   │   │   │   ├── global_networks_custom_network.json
│   │   │   │   │   ├── global_networks_default.json
│   │   │   │   │   ├── global_networks.json
│   │   │   │   │   ├── global_networks_lcnetwork_delete.json
│   │   │   │   │   ├── global_networks_lcnetwork.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_delete.json
│   │   │   │   │   ├── global_routes_lcdemoroute.json
│   │   │   │   │   ├── global_routes_post.json
│   │   │   │   │   ├── global_snapshots.json
│   │   │   │   │   ├── global_snapshots_lcsnapshot_delete.json
│   │   │   │   │   ├── global_snapshots_lcsnapshot.json
│   │   │   │   │   ├── global_sslcertificates_example.json
│   │   │   │   │   ├── global_sslcertificates.json
│   │   │   │   │   ├── global_sslcertificates_post.json
│   │   │   │   │   ├── global_targetHttpProxies.json
│   │   │   │   │   ├── global_targetHttpProxies_post.json
│   │   │   │   │   ├── global_targetHttpProxies_web_proxy_delete.json
│   │   │   │   │   ├── global_targetHttpProxies_web_proxy.json
│   │   │   │   │   ├── global_urlMaps.json
│   │   │   │   │   ├── global_urlMaps_post.json
│   │   │   │   │   ├── global_urlMaps_web_map_delete.json
│   │   │   │   │   ├── global_urlMaps_web_map.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_sslcertificates_post.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_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_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_addAccessConfig_done.json
│   │   │   │   │   ├── operations_operation_zones_us-central1-a_instances_node_name_addAccessConfig_post.json
│   │   │   │   │   ├── operations_operation_zones_us-central1-a_instances_node-name_attachDisk_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_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_post.json
│   │   │   │   │   ├── operations_operation_zones_us_central1_a_node_name_setLabels_post.json
│   │   │   │   │   ├── operations_operation_zones_us_central1_a_node_name_setMetadata_post.json
│   │   │   │   │   ├── operations_operation_zones_us-central1-a_targetInstances_lctargetinstance_delete.json
│   │   │   │   │   ├── operations_operation_zones_us-central1-a_targetInstances_post.json
│   │   │   │   │   ├── project.json
│   │   │   │   │   ├── projects_centos-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_images.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_asia-east1.json
│   │   │   │   │   ├── regions_europe-west1.json
│   │   │   │   │   ├── regions.json
│   │   │   │   │   ├── regions-paged-1.json
│   │   │   │   │   ├── regions-paged-2.json
│   │   │   │   │   ├── regions_us-central1_addresses.json
│   │   │   │   │   ├── regions_us-central1_addresses_lcaddress_delete.json
│   │   │   │   │   ├── regions_us-central1_addresses_lcaddressinternal.json
│   │   │   │   │   ├── regions_us-central1_addresses_lcaddress.json
│   │   │   │   │   ├── regions_us-central1_addresses_post.json
│   │   │   │   │   ├── regions_us-central1_addresses_testaddress.json
│   │   │   │   │   ├── regions_us-central1_forwardingRules.json
│   │   │   │   │   ├── regions_us-central1_forwardingRules_lcforwardingrule_delete.json
│   │   │   │   │   ├── regions_us-central1_forwardingRules_lcforwardingrule.json
│   │   │   │   │   ├── regions_us-central1_forwardingRules_libcloud-lb-demo-lb.json
│   │   │   │   │   ├── regions_us-central1_forwardingRules_post.json
│   │   │   │   │   ├── regions_us-central1.json
│   │   │   │   │   ├── regions_us-central1_subnetworks_cf_972cf02e6ad49112.json
│   │   │   │   │   ├── regions_us-central1_subnetworks.json
│   │   │   │   │   ├── regions_us-central1_subnetworks_post.json
│   │   │   │   │   ├── regions_us-central1_subnetworks_subnet_1.json
│   │   │   │   │   ├── regions_us-central1_targetPools_backup_pool.json
│   │   │   │   │   ├── regions_us-central1_targetPools.json
│   │   │   │   │   ├── regions_us-central1_targetPools_lb_pool_getHealth.json
│   │   │   │   │   ├── regions_us-central1_targetPools_lb_pool.json
│   │   │   │   │   ├── regions_us-central1_targetPools_lb_pool_setBackup_post.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.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_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.json
│   │   │   │   │   ├── zones_us_central1_a_acceleratorTypes_nvidia_tesla_k80.json
│   │   │   │   │   ├── zones_us-central1-a_disks.json
│   │   │   │   │   ├── zones_us-central1-a_disks_lcdisk_createSnapshot_post.json
│   │   │   │   │   ├── zones_us-central1-a_disks_lcdisk_delete.json
│   │   │   │   │   ├── zones_us-central1-a_disks_lcdisk.json
│   │   │   │   │   ├── zones_us-central1-a_disks_post.json
│   │   │   │   │   ├── zones_us-central1-a_diskTypes.json
│   │   │   │   │   ├── zones_us-central1-a_disktypes_pd-ssd.json
│   │   │   │   │   ├── zones_us-central1-a_diskTypes_pd_ssd.json
│   │   │   │   │   ├── zones_us-central1-a_diskTypes_pd_standard.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroupManagers_insert.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroupManagers.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroupManagers_myinstancegroup.json
│   │   │   │   │   ├── _zones_us_central1_a_instanceGroupManagers_myinstancegroup_listManagedInstances.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroupManagers_myinstancegroup_shared_network.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroup_myinstancegroup2.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroup_myinstancegroup.json
│   │   │   │   │   ├── zones_us-central1-a_instanceGroup_myinstancegroup_shared_network.json
│   │   │   │   │   ├── zones_us_central1_a_instanceGroups_insert.json
│   │   │   │   │   ├── zones_us_central1_a_instanceGroups.json
│   │   │   │   │   ├── zones_us_central1_a_instanceGroups_myname_addInstances.json
│   │   │   │   │   ├── zones_us_central1_a_instanceGroups_myname_delete.json
│   │   │   │   │   ├── zones_us_central1_a_instanceGroups_myname.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_instances_custom_node.json
│   │   │   │   │   ├── zones_us-central1-a_instances.json
│   │   │   │   │   ├── zones_us-central1-a_instances_lcnode-000_delete.json
│   │   │   │   │   ├── zones_us-central1-a_instances_lcnode-000.json
│   │   │   │   │   ├── zones_us-central1-a_instances_lcnode-001_delete.json
│   │   │   │   │   ├── zones_us-central1-a_instances_lcnode-001.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_getSerialOutput.json
│   │   │   │   │   ├── zones_us-central1-a_instances_node-name.json
│   │   │   │   │   ├── zones_us-central1-a_instances_node-name_reset_post.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_setTags_post.json
│   │   │   │   │   ├── zones_us_central1_a_instances_node_name_stop.json
│   │   │   │   │   ├── zones_us-central1-a_instances_post.json
│   │   │   │   │   ├── zones_us-central1-a_instances_sn-node-name.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.json
│   │   │   │   │   ├── zones_us-central1-a_machineTypes.json
│   │   │   │   │   ├── zones_us-central1-a_machineTypes_n1-standard-1.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
│   │   │   │   │   ├── 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_delete.json
│   │   │   │   │   ├── zones_us-central1-a_targetInstances_lctargetinstance.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_instanceGroupManagers.json
│   │   │   │   │   ├── zones_us-east1-b_instanceGroup_myinstancegroup.json
│   │   │   │   │   └── zones_us-east1-b.json
│   │   │   │   ├── gogrid
│   │   │   │   │   ├── image_list.json
│   │   │   │   │   ├── image_save.json
│   │   │   │   │   ├── ip_list_empty.json
│   │   │   │   │   ├── ip_list.json
│   │   │   │   │   ├── lookup_list_ip_datacenter.json
│   │   │   │   │   ├── password_list.json
│   │   │   │   │   ├── server_add.json
│   │   │   │   │   ├── server_delete.json
│   │   │   │   │   ├── server_edit.json
│   │   │   │   │   ├── server_list.json
│   │   │   │   │   ├── server_power_fail.json
│   │   │   │   │   └── server_power.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
│   │   │   │   ├── joyent
│   │   │   │   │   ├── my_datasets.json
│   │   │   │   │   ├── my_machines_create.json
│   │   │   │   │   ├── my_machines.json
│   │   │   │   │   └── my_packages.json
│   │   │   │   ├── ktucloud
│   │   │   │   │   ├── deployVirtualMachine_default.json
│   │   │   │   │   ├── deployVirtualMachine_deployfail2.json
│   │   │   │   │   ├── deployVirtualMachine_deployfail.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
│   │   │   │   ├── 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
│   │   │   │   ├── meta
│   │   │   │   │   ├── helloworld.txt
│   │   │   │   │   ├── unicode.json
│   │   │   │   │   ├── unicode.txt
│   │   │   │   │   └── unicode.xml
│   │   │   │   ├── misc
│   │   │   │   │   ├── dummy_rsa
│   │   │   │   │   └── dummy_rsa.pub
│   │   │   │   ├── nephoscale
│   │   │   │   │   ├── list_images.json
│   │   │   │   │   ├── list_keys.json
│   │   │   │   │   ├── list_locations.json
│   │   │   │   │   ├── list_nodes.json
│   │   │   │   │   ├── list_password_keys.json
│   │   │   │   │   ├── list_sizes.json
│   │   │   │   │   ├── list_ssh_keys.json
│   │   │   │   │   └── success_action.json
│   │   │   │   ├── onapp
│   │   │   │   │   ├── create_node.json
│   │   │   │   │   ├── get_key_pair.json
│   │   │   │   │   ├── import_key_pair.json
│   │   │   │   │   ├── list_images.json
│   │   │   │   │   ├── list_key_pairs.json
│   │   │   │   │   ├── list_nodes.json
│   │   │   │   │   └── profile.json
│   │   │   │   ├── oneandone
│   │   │   │   │   ├── auth_error.json
│   │   │   │   │   ├── create_node.json
│   │   │   │   │   ├── describe_firewall_policy.json
│   │   │   │   │   ├── describe_id_firewall_policy.json
│   │   │   │   │   ├── describe_server.json
│   │   │   │   │   ├── describe_shared_stoage.json
│   │   │   │   │   ├── ex_list_datacenters.json
│   │   │   │   │   ├── fixed_instance_sizes.json
│   │   │   │   │   ├── get_image.json
│   │   │   │   │   ├── get_server_image.json
│   │   │   │   │   ├── list_firewall_policies.json
│   │   │   │   │   ├── list_images.json
│   │   │   │   │   ├── list_load_balancer.json
│   │   │   │   │   ├── list_monitoring_policies.json
│   │   │   │   │   ├── list_public_ips.json
│   │   │   │   │   ├── list_servers.json
│   │   │   │   │   ├── list_shared_storages.json
│   │   │   │   │   ├── load_balancer.json
│   │   │   │   │   ├── load_balancer_rule.json
│   │   │   │   │   ├── load_balancer_rules.json
│   │   │   │   │   ├── load_balancer_server_ip.json
│   │   │   │   │   ├── load_balancer_server_ips.json
│   │   │   │   │   ├── monitoring_policy.json
│   │   │   │   │   ├── monitoring_policy_port.json
│   │   │   │   │   ├── monitoring_policy_ports.json
│   │   │   │   │   ├── monitoring_policy_processes.json
│   │   │   │   │   ├── monitoring_policy_process.json
│   │   │   │   │   ├── monitoring_policy_servers.json
│   │   │   │   │   ├── public_ip.json
│   │   │   │   │   ├── server_hardware.json
│   │   │   │   │   ├── server_ip.json
│   │   │   │   │   ├── server_ips.json
│   │   │   │   │   ├── shared_storage.json
│   │   │   │   │   └── ttt.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
│   │   │   │   │   ├── v1_slug_flavors_detail.xml
│   │   │   │   │   ├── v1_slug_images_detail.xml
│   │   │   │   │   ├── v1_slug_images_post.xml
│   │   │   │   │   ├── v1_slug_limits.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_detail.xml
│   │   │   │   │   ├── v1_slug_servers_ips.xml
│   │   │   │   │   ├── v1_slug_servers_metadata.xml
│   │   │   │   │   ├── v1_slug_servers_no_admin_pass.xml
│   │   │   │   │   ├── v1_slug_servers.xml
│   │   │   │   │   ├── v1_slug_shared_ip_groups_detail.xml
│   │   │   │   │   ├── v1_slug_shared_ip_groups.xml
│   │   │   │   │   ├── v1_slug_shared_ip_group.xml
│   │   │   │   │   ├── _v2_0__auth_deployment.json
│   │   │   │   │   ├── _v2_0__auth.json
│   │   │   │   │   ├── _v2_0__auth_lon.json
│   │   │   │   │   └── _v3__auth.json
│   │   │   │   ├── openstack_identity
│   │   │   │   │   ├── v2
│   │   │   │   │   │   └── v2_0_tenants.json
│   │   │   │   │   └── v3
│   │   │   │   │   ├── v3_create_user.json
│   │   │   │   │   ├── v3_domains_default.json
│   │   │   │   │   ├── v3_domains_default_users_a_roles.json
│   │   │   │   │   ├── v3_domains.json
│   │   │   │   │   ├── v3_projects.json
│   │   │   │   │   ├── v3_roles.json
│   │   │   │   │   ├── v3_users_a.json
│   │   │   │   │   ├── v3_users_a_projects.json
│   │   │   │   │   ├── v3_users_b.json
│   │   │   │   │   ├── v3_users.json
│   │   │   │   │   └── v3_versions.json
│   │   │   │   ├── openstack_v1.1
│   │   │   │   │   ├── delete_floating_ip_167_138_123_111.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_016926dff12345e8b10329f24c99745b.json
│   │   │   │   │   ├── _images_d9a9cd9a_278a_444c_90a6_d24b8c688a63_members.json
│   │   │   │   │   ├── _images_detail.json
│   │   │   │   │   ├── _images_f24a3c1b-d52a-4116-91da-25b3eee8f55d.json
│   │   │   │   │   ├── _images_f24a3c1b-d52a-4116-91da-25b3eee8f55e.json
│   │   │   │   │   ├── _images_v2.json
│   │   │   │   │   ├── _os_keypairs_create_import.json
│   │   │   │   │   ├── _os_keypairs_create.json
│   │   │   │   │   ├── _os_keypairs_get_one.json
│   │   │   │   │   ├── _os_keypairs.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_create.json
│   │   │   │   │   ├── _os_security_groups.json
│   │   │   │   │   ├── _os_snapshots_create.json
│   │   │   │   │   ├── _os_snapshots_create_rackspace.json
│   │   │   │   │   ├── _os_snapshots.json
│   │   │   │   │   ├── _os_snapshots_rackspace.json
│   │   │   │   │   ├── _os_volumes_cd76a3a1_c4ce_40f6_9b9f_07a61508938d.json
│   │   │   │   │   ├── _os_volumes_create.json
│   │   │   │   │   ├── _os_volumes.json
│   │   │   │   │   ├── _ports_v2.json
│   │   │   │   │   ├── _port_v2.json
│   │   │   │   │   ├── README
│   │   │   │   │   ├── _servers_12063_metadata_two_keys.json
│   │   │   │   │   ├── _servers_12064.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_disk_config.json
│   │   │   │   │   ├── _servers_create.json
│   │   │   │   │   ├── _servers_detail_EMPTY.json
│   │   │   │   │   ├── _servers_detail_ERROR_STATE.json
│   │   │   │   │   ├── _servers_detail.json
│   │   │   │   │   ├── _servers.json
│   │   │   │   │   ├── _servers_pause.json
│   │   │   │   │   ├── _servers_resume.json
│   │   │   │   │   ├── _servers_suspend.json
│   │   │   │   │   ├── _servers_unpause.json
│   │   │   │   │   ├── _v2_0__networks.json
│   │   │   │   │   ├── _v2_0__networks_POST.json
│   │   │   │   │   └── _v2_0__subnets.json
│   │   │   │   ├── ovh
│   │   │   │   │   ├── auth_time_get.json
│   │   │   │   │   ├── flavor_get_detail.json
│   │   │   │   │   ├── flavor_get.json
│   │   │   │   │   ├── image_get_detail.json
│   │   │   │   │   ├── image_get.json
│   │   │   │   │   ├── instance_get_detail.json
│   │   │   │   │   ├── instance_get.json
│   │   │   │   │   ├── instance_post.json
│   │   │   │   │   ├── region_get.json
│   │   │   │   │   ├── ssh_get_detail.json
│   │   │   │   │   ├── ssh_get.json
│   │   │   │   │   ├── volume_get_detail.json
│   │   │   │   │   ├── volume_get.json
│   │   │   │   │   ├── volume_snapshot_get_details.json
│   │   │   │   │   └── volume_snapshot_get.json
│   │   │   │   ├── packet
│   │   │   │   │   ├── device_create.json
│   │   │   │   │   ├── devices.json
│   │   │   │   │   ├── facilities.json
│   │   │   │   │   ├── operatingsystems.json
│   │   │   │   │   ├── plans.json
│   │   │   │   │   ├── sshkey_create.json
│   │   │   │   │   └── sshkeys.json
│   │   │   │   ├── profitbricks
│   │   │   │   │   ├── attach_volume.json
│   │   │   │   │   ├── create_node.json
│   │   │   │   │   ├── create_volume.json
│   │   │   │   │   ├── create_volume_snapshot.json
│   │   │   │   │   ├── error_resource_not_found.json
│   │   │   │   │   ├── ex_create_datacenter.json
│   │   │   │   │   ├── ex_create_firewall_rule.json
│   │   │   │   │   ├── ex_create_ip_block.json
│   │   │   │   │   ├── ex_create_lan.json
│   │   │   │   │   ├── ex_create_load_balancer.json
│   │   │   │   │   ├── ex_create_network_interface.json
│   │   │   │   │   ├── ex_describe_datacenter.json
│   │   │   │   │   ├── ex_describe_firewall_rule.json
│   │   │   │   │   ├── ex_describe_image.json
│   │   │   │   │   ├── ex_describe_ip_block.json
│   │   │   │   │   ├── ex_describe_lan.json
│   │   │   │   │   ├── ex_describe_load_balancer.json
│   │   │   │   │   ├── ex_describe_location.json
│   │   │   │   │   ├── ex_describe_network_interface.json
│   │   │   │   │   ├── ex_describe_node.json
│   │   │   │   │   ├── ex_describe_snapshot.json
│   │   │   │   │   ├── ex_describe_volume.json
│   │   │   │   │   ├── ex_list_attached_volumes.json
│   │   │   │   │   ├── ex_list_datacenters.json
│   │   │   │   │   ├── ex_list_firewall_rules.json
│   │   │   │   │   ├── ex_list_ip_blocks.json
│   │   │   │   │   ├── ex_list_lans.json
│   │   │   │   │   ├── ex_list_load_balanced_nics.json
│   │   │   │   │   ├── ex_list_load_balancers.json
│   │   │   │   │   ├── ex_list_network_interfaces.json
│   │   │   │   │   ├── ex_rename_datacenter.json
│   │   │   │   │   ├── ex_update_firewall_rule.json
│   │   │   │   │   ├── ex_update_image.json
│   │   │   │   │   ├── ex_update_lan.json
│   │   │   │   │   ├── ex_update_load_balancer.json
│   │   │   │   │   ├── ex_update_network_interface.json
│   │   │   │   │   ├── ex_update_node.json
│   │   │   │   │   ├── ex_update_snapshot.json
│   │   │   │   │   ├── ex_update_volume.json
│   │   │   │   │   ├── list_images.json
│   │   │   │   │   ├── list_locations.json
│   │   │   │   │   ├── list_nodes.json
│   │   │   │   │   ├── list_snapshots.json
│   │   │   │   │   └── list_volumes.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_invalid_image.json
│   │   │   │   │   ├── error.json
│   │   │   │   │   ├── get_image.json
│   │   │   │   │   ├── list_availability.json
│   │   │   │   │   ├── list_images.json
│   │   │   │   │   ├── list_nodes_empty.json
│   │   │   │   │   ├── list_nodes.json
│   │   │   │   │   ├── list_sizes.json
│   │   │   │   │   ├── list_volumes_empty.json
│   │   │   │   │   ├── list_volumes.json
│   │   │   │   │   ├── list_volume_snapshots.json
│   │   │   │   │   ├── reboot_node.json
│   │   │   │   │   ├── token_info.json
│   │   │   │   │   └── user_info.json
│   │   │   │   ├── softlayer
│   │   │   │   │   ├── empty.xml
│   │   │   │   │   ├── fail.xml
│   │   │   │   │   ├── SoftLayer_Account.xml
│   │   │   │   │   ├── v3__SoftLayer_Account_getSshKeys.xml
│   │   │   │   │   ├── v3_SoftLayer_Account_getVirtualGuests.xml
│   │   │   │   │   ├── v3_SoftLayer_Location_Datacenter_getDatacenters.xml
│   │   │   │   │   ├── v3__SoftLayer_Security_Ssh_Key_createObject.xml
│   │   │   │   │   ├── v3__SoftLayer_Security_Ssh_Key_deleteObject.xml
│   │   │   │   │   ├── v3__SoftLayer_Security_Ssh_Key_getObject.xml
│   │   │   │   │   ├── v3__SoftLayer_Virtual_Guest_createObject.xml
│   │   │   │   │   ├── v3__SoftLayer_Virtual_Guest_getCreateObjectOptions.xml
│   │   │   │   │   └── v3__SoftLayer_Virtual_Guest_getObject.xml
│   │   │   │   ├── 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_action_deploy.xml
│   │   │   │   │   ├── api_v0_8_vapp_14031_get.xml
│   │   │   │   │   ├── api_v0_8_vapp_14031_power_action_poweroff.xml
│   │   │   │   │   ├── api_v0_8_vapp_14031_power_action_powerOn.xml
│   │   │   │   │   ├── api_v0_8_vapp_14031_power_action_reset.xml
│   │   │   │   │   ├── api_v0_8_vapp_14031.xml
│   │   │   │   │   ├── api_v0_8_vdc_224_action_instantiateVAppTemplate.xml
│   │   │   │   │   ├── api_v0_8_vdc_224_catalog.xml
│   │   │   │   │   └── api_v0_8_vdc_224.xml
│   │   │   │   ├── upcloud
│   │   │   │   │   ├── api_1_2_plan.json
│   │   │   │   │   ├── api_1_2_price.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_server.json
│   │   │   │   │   ├── api_1_2_storage_cdrom.json
│   │   │   │   │   ├── api_1_2_storage_template.json
│   │   │   │   │   ├── api_1_2_zone_failed_auth.json
│   │   │   │   │   └── api_1_2_zone.json
│   │   │   │   ├── vcl
│   │   │   │   │   ├── v3_SoftLayer_Account_getVirtualGuests.xml
│   │   │   │   │   ├── v3_SoftLayer_Location_Datacenter_getDatacenters.xml
│   │   │   │   │   ├── XMLRPCaddRequest.xml
│   │   │   │   │   ├── XMLRPCendRequest.xml
│   │   │   │   │   ├── XMLRPCextendRequest.xml
│   │   │   │   │   ├── XMLRPCgetImages.xml
│   │   │   │   │   ├── XMLRPCgetRequestConnectData.xml
│   │   │   │   │   ├── XMLRPCgetRequestIds.xml
│   │   │   │   │   └── XMLRPCgetRequestStatus.xml
│   │   │   │   ├── vcloud_1_5
│   │   │   │   │   ├── api_admin_group_b8202c48_7151_4e61_9a6c_155474c7d413.xml
│   │   │   │   │   ├── api_catalog_cddb3cb2_3394_4b14_b831_11fbc4028da4.xml
│   │   │   │   │   ├── api_catalogItem_3132e037_759b_4627_9056_ca66466fa607.xml
│   │   │   │   │   ├── api_network_dca8b667_6c8f_4c3e_be57_7a9425dba4f4.xml
│   │   │   │   │   ├── api_org_96726c78_4ae3_402f_b08b_7a78c6903d2a.xml
│   │   │   │   │   ├── api_org.xml
│   │   │   │   │   ├── api_query_group.xml
│   │   │   │   │   ├── api_query_user.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_error.xml
│   │   │   │   │   ├── api_task_undeploy.xml
│   │   │   │   │   ├── api_vapp_get_metadata.xml
│   │   │   │   │   ├── api_vapp_post_metadata.xml
│   │   │   │   │   ├── api_vApp_undeployTest.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_3b70ee65ef6a.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_3b70ee65ef6b.xml
│   │   │   │   │   ├── api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6c.xml
│   │   │   │   │   ├── api_vApp_vapp_access_to_resource_forbidden.xml
│   │   │   │   │   ├── api_vApp_vm_test.xml
│   │   │   │   │   ├── api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_cloneVApp.xml
│   │   │   │   │   ├── api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_instantiateVAppTemplate.xml
│   │   │   │   │   ├── api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0.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
│   │   │   │   ├── voxel
│   │   │   │   │   ├── create_node.xml
│   │   │   │   │   ├── failure.xml
│   │   │   │   │   ├── images.xml
│   │   │   │   │   ├── locations.xml
│   │   │   │   │   ├── nodes.xml
│   │   │   │   │   ├── success.xml
│   │   │   │   │   └── unauthorized.xml
│   │   │   │   ├── vpsnet
│   │   │   │   │   └── _available_clouds_api10json_templates.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
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_abiquo.cpython-37.pyc
│   │   │   │   ├── test_auroracompute.cpython-37.pyc
│   │   │   │   ├── test_azure_arm.cpython-37.pyc
│   │   │   │   ├── test_azure.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_bluebox.cpython-37.pyc
│   │   │   │   ├── test_brightbox.cpython-37.pyc
│   │   │   │   ├── test_bsnl.cpython-37.pyc
│   │   │   │   ├── test_cloudscale.cpython-37.pyc
│   │   │   │   ├── test_cloudsigma_v1_0.cpython-37.pyc
│   │   │   │   ├── test_cloudsigma_v2_0.cpython-37.pyc
│   │   │   │   ├── test_cloudstack.cpython-37.pyc
│   │   │   │   ├── test_cloudwatt.cpython-37.pyc
│   │   │   │   ├── test_deployment.cpython-37.pyc
│   │   │   │   ├── test_digitalocean_v2.cpython-37.pyc
│   │   │   │   ├── test_dimensiondata_v2_3.cpython-37.pyc
│   │   │   │   ├── test_dimensiondata_v2_4.cpython-37.pyc
│   │   │   │   ├── test_ec2.cpython-37.pyc
│   │   │   │   ├── test_ecp.cpython-37.pyc
│   │   │   │   ├── test_ecs.cpython-37.pyc
│   │   │   │   ├── test_elasticstack.cpython-37.pyc
│   │   │   │   ├── test_exoscale.cpython-37.pyc
│   │   │   │   ├── test_gandi.cpython-37.pyc
│   │   │   │   ├── test_gce.cpython-37.pyc
│   │   │   │   ├── test_gogrid.cpython-37.pyc
│   │   │   │   ├── test_gridspot.cpython-37.pyc
│   │   │   │   ├── test_hostvirtual.cpython-37.pyc
│   │   │   │   ├── test_ikoula.cpython-37.pyc
│   │   │   │   ├── test_indosat.cpython-37.pyc
│   │   │   │   ├── test_internetsolutions.cpython-37.pyc
│   │   │   │   ├── test_joyent.cpython-37.pyc
│   │   │   │   ├── test_kili.cpython-37.pyc
│   │   │   │   ├── test_ktucloud.cpython-37.pyc
│   │   │   │   ├── test_libvirt_driver.cpython-37.pyc
│   │   │   │   ├── test_linode.cpython-37.pyc
│   │   │   │   ├── test_medone.cpython-37.pyc
│   │   │   │   ├── test_nephoscale.cpython-37.pyc
│   │   │   │   ├── test_ntta.cpython-37.pyc
│   │   │   │   ├── test_onapp.cpython-37.pyc
│   │   │   │   ├── test_oneandone.cpython-37.pyc
│   │   │   │   ├── test_opennebula.cpython-37.pyc
│   │   │   │   ├── test_openstack.cpython-37.pyc
│   │   │   │   ├── test_ovh.cpython-37.pyc
│   │   │   │   ├── test_packet.cpython-37.pyc
│   │   │   │   ├── test_profitbricks.cpython-37.pyc
│   │   │   │   ├── test_rackspace.cpython-37.pyc
│   │   │   │   ├── test_rimuhosting.cpython-37.pyc
│   │   │   │   ├── test_scaleway.cpython-37.pyc
│   │   │   │   ├── test_softlayer.cpython-37.pyc
│   │   │   │   ├── test_ssh_client.cpython-37.pyc
│   │   │   │   ├── test_types.cpython-37.pyc
│   │   │   │   ├── test_upcloud.cpython-37.pyc
│   │   │   │   ├── test_vcl.cpython-37.pyc
│   │   │   │   ├── test_vcloud.cpython-37.pyc
│   │   │   │   ├── test_voxel.cpython-37.pyc
│   │   │   │   ├── test_vpsnet.cpython-37.pyc
│   │   │   │   └── test_vultr.cpython-37.pyc
│   │   │   ├── test_abiquo.py
│   │   │   ├── test_auroracompute.py
│   │   │   ├── test_azure_arm.py
│   │   │   ├── test_azure.py
│   │   │   ├── test_base.py
│   │   │   ├── test_bluebox.py
│   │   │   ├── test_brightbox.py
│   │   │   ├── test_bsnl.py
│   │   │   ├── test_cloudscale.py
│   │   │   ├── test_cloudsigma_v1_0.py
│   │   │   ├── test_cloudsigma_v2_0.py
│   │   │   ├── test_cloudstack.py
│   │   │   ├── test_cloudwatt.py
│   │   │   ├── test_deployment.py
│   │   │   ├── test_digitalocean_v2.py
│   │   │   ├── test_dimensiondata_v2_3.py
│   │   │   ├── test_dimensiondata_v2_4.py
│   │   │   ├── test_ec2.py
│   │   │   ├── test_ecp.py
│   │   │   ├── test_ecs.py
│   │   │   ├── test_elasticstack.py
│   │   │   ├── test_exoscale.py
│   │   │   ├── test_gandi.py
│   │   │   ├── test_gce.py
│   │   │   ├── test_gogrid.py
│   │   │   ├── test_gridspot.py
│   │   │   ├── test_hostvirtual.py
│   │   │   ├── test_ikoula.py
│   │   │   ├── test_indosat.py
│   │   │   ├── test_internetsolutions.py
│   │   │   ├── test_joyent.py
│   │   │   ├── test_kili.py
│   │   │   ├── test_ktucloud.py
│   │   │   ├── test_libvirt_driver.py
│   │   │   ├── test_linode.py
│   │   │   ├── test_medone.py
│   │   │   ├── test_nephoscale.py
│   │   │   ├── test_ntta.py
│   │   │   ├── test_onapp.py
│   │   │   ├── test_oneandone.py
│   │   │   ├── test_opennebula.py
│   │   │   ├── test_openstack.py
│   │   │   ├── test_ovh.py
│   │   │   ├── test_packet.py
│   │   │   ├── test_profitbricks.py
│   │   │   ├── test_rackspace.py
│   │   │   ├── test_rimuhosting.py
│   │   │   ├── test_scaleway.py
│   │   │   ├── test_softlayer.py
│   │   │   ├── test_ssh_client.py
│   │   │   ├── test_types.py
│   │   │   ├── test_upcloud.py
│   │   │   ├── test_vcloud.py
│   │   │   ├── test_vcl.py
│   │   │   ├── test_voxel.py
│   │   │   ├── test_vpsnet.py
│   │   │   └── test_vultr.py
│   │   ├── conftest.py
│   │   ├── container
│   │   │   ├── 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_default_DELETE.json
│   │   │   │   │   ├── _api_v1_namespaces_default.json
│   │   │   │   │   ├── _api_v1_namespaces_default_pods_POST.json
│   │   │   │   │   ├── _api_v1_namespaces.json
│   │   │   │   │   ├── _api_v1_namespaces_test.json
│   │   │   │   │   ├── _api_v1_nodes_127_0_0_1.json
│   │   │   │   │   ├── _api_v1_nodes.json
│   │   │   │   │   └── _api_v1_pods.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
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_docker.cpython-37.pyc
│   │   │   │   ├── test_docker_utils.cpython-37.pyc
│   │   │   │   ├── test_ecs.cpython-37.pyc
│   │   │   │   ├── test_gke.cpython-37.pyc
│   │   │   │   ├── test_joyent.cpython-37.pyc
│   │   │   │   ├── test_kubernetes.cpython-37.pyc
│   │   │   │   └── test_rancher.cpython-37.pyc
│   │   │   ├── test_docker.py
│   │   │   ├── test_docker_utils.py
│   │   │   ├── test_ecs.py
│   │   │   ├── test_gke.py
│   │   │   ├── test_joyent.py
│   │   │   ├── test_kubernetes.py
│   │   │   └── test_rancher.py
│   │   ├── dns
│   │   │   ├── fixtures
│   │   │   │   ├── auroradns
│   │   │   │   │   ├── zone_create.json
│   │   │   │   │   ├── zone_example_com_health_check.json
│   │   │   │   │   ├── zone_example_com_health_checks.json
│   │   │   │   │   ├── zone_example_com.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
│   │   │   │   │   ├── ban.json
│   │   │   │   │   ├── cache_lvl.json
│   │   │   │   │   ├── devmode.json
│   │   │   │   │   ├── fpurge_ts.json
│   │   │   │   │   ├── ip_lkup.json
│   │   │   │   │   ├── ipv46.json
│   │   │   │   │   ├── nul_.json
│   │   │   │   │   ├── rec_delete.json
│   │   │   │   │   ├── rec_edit.json
│   │   │   │   │   ├── rec_load_all.json
│   │   │   │   │   ├── rec_new.json
│   │   │   │   │   ├── sec_lvl.json
│   │   │   │   │   ├── stats.json
│   │   │   │   │   ├── wl.json
│   │   │   │   │   ├── zone_check.json
│   │   │   │   │   ├── zone_file_purge.json
│   │   │   │   │   ├── zone_load_multi.json
│   │   │   │   │   └── zone_settings.json
│   │   │   │   ├── digitalocean
│   │   │   │   │   ├── _v2_domains_CREATE.json
│   │   │   │   │   ├── _v2_domains_EMPTY.json
│   │   │   │   │   ├── _v2_domains.json
│   │   │   │   │   ├── _v2_domains_testdomain.json
│   │   │   │   │   ├── _v2_domains_testdomain_NOT_FOUND.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
│   │   │   │   │   ├── _v2_domains_testdomain_records.json
│   │   │   │   │   └── _v2_domains_UNAUTHORIZED.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_RECORD_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── delete_record.xml
│   │   │   │   │   ├── delete_record_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── delete_zone.xml
│   │   │   │   │   ├── delete_zone_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── get_record_RECORD_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── get_record.xml
│   │   │   │   │   ├── get_record_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── get_zone_NO_EXTRA_PARAMS.xml
│   │   │   │   │   ├── get_zone_UPDATE_ZONE.xml
│   │   │   │   │   ├── get_zone_WITH_EXTRA_PARAMS.xml
│   │   │   │   │   ├── get_zone.xml
│   │   │   │   │   ├── get_zone_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── list_records.xml
│   │   │   │   │   ├── list_records_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── list_zones.xml
│   │   │   │   │   ├── update_record_success.xml
│   │   │   │   │   ├── update_record.xml
│   │   │   │   │   ├── update_record_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   │   ├── update_zone_UPDATE_ZONE.xml
│   │   │   │   │   └── update_zone_ZONE_DOES_NOT_EXIST.xml
│   │   │   │   ├── gandi
│   │   │   │   │   ├── create_record.xml
│   │   │   │   │   ├── create_zone.xml
│   │   │   │   │   ├── delete_record_doesnotexist.xml
│   │   │   │   │   ├── delete_record.xml
│   │   │   │   │   ├── delete_zone_fail.xml
│   │   │   │   │   ├── delete_zone.xml
│   │   │   │   │   ├── get_zone.xml
│   │   │   │   │   ├── list_records_empty.xml
│   │   │   │   │   ├── list_records.xml
│   │   │   │   │   ├── list_zones.xml
│   │   │   │   │   ├── new_version.xml
│   │   │   │   │   └── zone_doesnt_exist.xml
│   │   │   │   ├── godaddy
│   │   │   │   │   ├── purchase_request.json
│   │   │   │   │   ├── v1_domains_agreements.json
│   │   │   │   │   ├── v1_domains_aperture_platform_com.json
│   │   │   │   │   ├── v1_domains_aperture_platform_com_records_A_www.json
│   │   │   │   │   ├── v1_domains_aperture_platform_com_records.json
│   │   │   │   │   ├── v1_domains_available.json
│   │   │   │   │   ├── v1_domains.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_changes.json
│   │   │   │   │   ├── record.json
│   │   │   │   │   ├── records_list.json
│   │   │   │   │   ├── zone_create.json
│   │   │   │   │   ├── zone.json
│   │   │   │   │   └── zone_list.json
│   │   │   │   ├── hostvirtual
│   │   │   │   │   ├── get_record.json
│   │   │   │   │   ├── get_zone.json
│   │   │   │   │   ├── list_records.json
│   │   │   │   │   ├── list_records_none.json
│   │   │   │   │   ├── list_zones.json
│   │   │   │   │   └── zone_does_not_exist.json
│   │   │   │   ├── linode
│   │   │   │   │   ├── create_domain.json
│   │   │   │   │   ├── create_domain_validation_error.json
│   │   │   │   │   ├── create_resource.json
│   │   │   │   │   ├── delete_domain_does_not_exist.json
│   │   │   │   │   ├── delete_domain.json
│   │   │   │   │   ├── delete_resource_does_not_exist.json
│   │   │   │   │   ├── delete_resource.json
│   │   │   │   │   ├── domain_list.json
│   │   │   │   │   ├── get_record_does_not_exist.json
│   │   │   │   │   ├── get_record.json
│   │   │   │   │   ├── get_zone_does_not_exist.json
│   │   │   │   │   ├── get_zone.json
│   │   │   │   │   ├── resource_list_does_not_exist.json
│   │   │   │   │   ├── resource_list.json
│   │   │   │   │   ├── update_domain.json
│   │   │   │   │   └── update_resource.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_created.json
│   │   │   │   │   ├── list_records.json
│   │   │   │   │   ├── record_not_removed.json
│   │   │   │   │   └── zone_not_found.json
│   │   │   │   ├── nsone
│   │   │   │   │   ├── 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_after_update.json
│   │   │   │   │   ├── get_record.json
│   │   │   │   │   ├── get_zone.json
│   │   │   │   │   ├── list_records.json
│   │   │   │   │   └── list_zones.json
│   │   │   │   ├── pointdns
│   │   │   │   │   ├── error.json
│   │   │   │   │   ├── not_found.json
│   │   │   │   │   ├── redirect_error.json
│   │   │   │   │   ├── _zones_1_DELETE.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_1_ZONE_UPDATE.json
│   │   │   │   │   ├── _zones_CREATE.json
│   │   │   │   │   ├── _zones_example_com_records_CREATE.json
│   │   │   │   │   ├── _zones_example_com_UPDATE.json
│   │   │   │   │   ├── _zones_GET_1.json
│   │   │   │   │   └── _zones_GET.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
│   │   │   │   ├── 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
│   │   │   │   ├── softlayer
│   │   │   │   │   ├── not_found.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_createObject.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_deleteObject.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_getByDomainName.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_getObject.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_getResourceRecords.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_ResourceRecord_createObject.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_ResourceRecord_deleteObject.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_ResourceRecord_editObject.xml
│   │   │   │   │   ├── v3_SoftLayer_Dns_Domain_ResourceRecord_getObject_changed.xml
│   │   │   │   │   └── v3_SoftLayer_Dns_Domain_ResourceRecord_getObject.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
│   │   │   │   ├── worldwidedns
│   │   │   │   │   ├── 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
│   │   │   │   │   └── _api_dns_modify_asp_CREATE_RECORD_MAX_ENTRIES_WITH_ENTRY
│   │   │   │   ├── zerigo
│   │   │   │   │   ├── create_record.xml
│   │   │   │   │   ├── create_zone_validation_error.xml
│   │   │   │   │   ├── create_zone.xml
│   │   │   │   │   ├── get_record.xml
│   │   │   │   │   ├── get_zone.xml
│   │   │   │   │   ├── list_records_no_results.xml
│   │   │   │   │   ├── list_records.xml
│   │   │   │   │   ├── list_zones_no_results.xml
│   │   │   │   │   └── list_zones.xml
│   │   │   │   └── zonomi
│   │   │   │   ├── converted_to_master.xml
│   │   │   │   ├── converted_to_slave.xml
│   │   │   │   ├── couldnt_convert.xml
│   │   │   │   ├── create_record_already_exists.xml
│   │   │   │   ├── create_record.xml
│   │   │   │   ├── create_zone_already_exists.xml
│   │   │   │   ├── create_zone.xml
│   │   │   │   ├── delete_record_does_not_exist.xml
│   │   │   │   ├── delete_record.xml
│   │   │   │   ├── delete_zone_does_not_exist.xml
│   │   │   │   ├── delete_zone.xml
│   │   │   │   ├── empty_zones_list.xml
│   │   │   │   ├── list_records.xml
│   │   │   │   └── list_zones.xml
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_auroradns.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_buddyns.cpython-37.pyc
│   │   │   │   ├── test_cloudflare.cpython-37.pyc
│   │   │   │   ├── test_digitalocean.cpython-37.pyc
│   │   │   │   ├── test_dnsimple.cpython-37.pyc
│   │   │   │   ├── test_dnspod.cpython-37.pyc
│   │   │   │   ├── test_durabledns.cpython-37.pyc
│   │   │   │   ├── test_gandi.cpython-37.pyc
│   │   │   │   ├── test_godaddy.cpython-37.pyc
│   │   │   │   ├── test_google.cpython-37.pyc
│   │   │   │   ├── test_hostvirtual.cpython-37.pyc
│   │   │   │   ├── test_linode.cpython-37.pyc
│   │   │   │   ├── test_liquidweb.cpython-37.pyc
│   │   │   │   ├── test_luadns.cpython-37.pyc
│   │   │   │   ├── test_nfsn.cpython-37.pyc
│   │   │   │   ├── test_nsone.cpython-37.pyc
│   │   │   │   ├── test_onapp.cpython-37.pyc
│   │   │   │   ├── test_pointdns.cpython-37.pyc
│   │   │   │   ├── test_powerdns.cpython-37.pyc
│   │   │   │   ├── test_rackspace.cpython-37.pyc
│   │   │   │   ├── test_route53.cpython-37.pyc
│   │   │   │   ├── test_softlayer.cpython-37.pyc
│   │   │   │   ├── test_vultr.cpython-37.pyc
│   │   │   │   ├── test_worldwidedns.cpython-37.pyc
│   │   │   │   ├── test_zerigo.cpython-37.pyc
│   │   │   │   └── test_zonomi.cpython-37.pyc
│   │   │   ├── 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_godaddy.py
│   │   │   ├── test_google.py
│   │   │   ├── test_hostvirtual.py
│   │   │   ├── test_linode.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_route53.py
│   │   │   ├── test_softlayer.py
│   │   │   ├── test_vultr.py
│   │   │   ├── test_worldwidedns.py
│   │   │   ├── test_zerigo.py
│   │   │   └── test_zonomi.py
│   │   ├── file_fixtures.py
│   │   ├── __init__.py
│   │   ├── loadbalancer
│   │   │   ├── fixtures
│   │   │   │   ├── alb
│   │   │   │   │   ├── describe_load_balancer_listeters.xml
│   │   │   │   │   ├── describe_load_balancer_rules.xml
│   │   │   │   │   ├── describe_load_balancers.xml
│   │   │   │   │   ├── describe_load_balancer_target_groups.xml
│   │   │   │   │   ├── describe_tags.xml
│   │   │   │   │   └── describe_target_health.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_editPoolMember.xml
│   │   │   │   │   ├── networkDomainVip_editPool.xml
│   │   │   │   │   ├── networkDomainVip_node_34de6ed6_46a4_4dae_a753_2f8d3840c6f9.xml
│   │   │   │   │   ├── networkDomainVip_node.xml
│   │   │   │   │   ├── networkDomainVip_pool_4d360b1f_bc2c_4ab7_9884_1f03ba2768f7.xml
│   │   │   │   │   ├── networkDomainVip_poolMember_3dd806a2_c2c8_4c0c_9a4f_5219ea9266c0.xml
│   │   │   │   │   ├── networkDomainVip_poolMember.xml
│   │   │   │   │   ├── networkDomainVip_pool.xml
│   │   │   │   │   ├── networkDomainVip_removePoolMember.xml
│   │   │   │   │   ├── networkDomainVip_virtualListener_6115469d_a8bb_445b_bb23_d23b5283f2b9.xml
│   │   │   │   │   ├── networkDomainVip_virtualListener.xml
│   │   │   │   │   └── oec_0_9_myaccount.xml
│   │   │   │   ├── elb
│   │   │   │   │   ├── create_load_balancer_policy.xml
│   │   │   │   │   ├── create_load_balancer.xml
│   │   │   │   │   ├── deregister_instances_from_load_balancer.xml
│   │   │   │   │   ├── describe_load_balancer_policies.xml
│   │   │   │   │   ├── describe_load_balancers_policy_types.xml
│   │   │   │   │   ├── describe_load_balancers.xml
│   │   │   │   │   ├── describe_tags.xml
│   │   │   │   │   ├── set_load_balancer_policies_for_backend_server.xml
│   │   │   │   │   └── set_load_balancer_policies_of_listener.xml
│   │   │   │   ├── gogrid
│   │   │   │   │   ├── ip_list.json
│   │   │   │   │   ├── loadbalancer_add.json
│   │   │   │   │   ├── loadbalancer_edit.json
│   │   │   │   │   ├── loadbalancer_get.json
│   │   │   │   │   ├── loadbalancer_list.json
│   │   │   │   │   └── unexpected_error.json
│   │   │   │   ├── rackspace
│   │   │   │   │   ├── auth_2_0.json
│   │   │   │   │   ├── error_page_default.json
│   │   │   │   │   ├── v1_0_slug_loadbalancers_8290_usage_current.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_errorpage.json
│   │   │   │   │   ├── v1_slug_loadbalancers_8290.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.json
│   │   │   │   │   ├── v1_slug_loadbalancers_nodeaddress.json
│   │   │   │   │   ├── v1_slug_loadbalancers_post.json
│   │   │   │   │   ├── v1_slug_loadbalancers_protocols.json
│   │   │   │   │   └── _v2_0__auth.json
│   │   │   │   ├── slb
│   │   │   │   │   ├── add_backend_servers.xml
│   │   │   │   │   ├── create_load_balancer_http_listener.xml
│   │   │   │   │   ├── create_load_balancer.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
│   │   │   │   └── softlayer
│   │   │   │   ├── v3__SoftLayer_Account_getAdcLoadBalancers.xml
│   │   │   │   ├── v3__SoftLayer_Billing_Item_cancelService.xml
│   │   │   │   ├── v3__SoftLayer_Location_Datacenter_getDatacenters.xml
│   │   │   │   ├── v3__SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_deleteObject.xml
│   │   │   │   ├── v3__SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_editObject.xml
│   │   │   │   ├── v3__SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_getBillingItem.xml
│   │   │   │   ├── v3__SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_getObject.xml
│   │   │   │   ├── v3__SoftLayer_Network_Subnet_IpAddress_getByIpAddress.xml
│   │   │   │   ├── v3__SoftLayer_Product_Order_placeOrder.xml
│   │   │   │   └── v3__SoftLayer_Product_Package_getItems.xml
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_alb.cpython-37.pyc
│   │   │   │   ├── test_brightbox.cpython-37.pyc
│   │   │   │   ├── test_cloudstack.cpython-37.pyc
│   │   │   │   ├── test_dimensiondata_v2_3.cpython-37.pyc
│   │   │   │   ├── test_dimensiondata_v2_4.cpython-37.pyc
│   │   │   │   ├── test_elb.cpython-37.pyc
│   │   │   │   ├── test_gce.cpython-37.pyc
│   │   │   │   ├── test_gogrid.cpython-37.pyc
│   │   │   │   ├── test_ninefold.cpython-37.pyc
│   │   │   │   ├── test_rackspace.cpython-37.pyc
│   │   │   │   ├── test_slb.cpython-37.pyc
│   │   │   │   └── test_softlayer.cpython-37.pyc
│   │   │   ├── 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_gogrid.py
│   │   │   ├── test_ninefold.py
│   │   │   ├── test_rackspace.py
│   │   │   ├── test_slb.py
│   │   │   └── test_softlayer.py
│   │   ├── pricing_test.json
│   │   ├── __pycache__
│   │   │   ├── conftest.cpython-37.pyc
│   │   │   ├── file_fixtures.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── secrets.cpython-37.pyc
│   │   │   ├── test_connection.cpython-37.pyc
│   │   │   ├── test_file_fixtures.cpython-37.pyc
│   │   │   ├── test_http.cpython-37.pyc
│   │   │   ├── test_init.cpython-37.pyc
│   │   │   ├── test_logging_connection.cpython-37.pyc
│   │   │   ├── test_pricing.cpython-37.pyc
│   │   │   ├── test_response_classes.cpython-37.pyc
│   │   │   ├── test_types.cpython-37.pyc
│   │   │   └── test_utils.cpython-37.pyc
│   │   ├── secrets.py
│   │   ├── secrets.py-dist
│   │   ├── storage
│   │   │   ├── fixtures
│   │   │   │   ├── atmos
│   │   │   │   │   ├── already_exists.xml
│   │   │   │   │   ├── empty_directory_listing.xml
│   │   │   │   │   ├── list_containers.xml
│   │   │   │   │   ├── not_empty.xml
│   │   │   │   │   └── not_found.xml
│   │   │   │   ├── azure_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
│   │   │   │   │   ├── list_container_objects_empty.json
│   │   │   │   │   ├── list_container_objects.json
│   │   │   │   │   ├── list_container_objects_not_exhausted1.json
│   │   │   │   │   ├── list_container_objects_not_exhausted2.json
│   │   │   │   │   ├── list_containers_empty.json
│   │   │   │   │   ├── list_containers.json
│   │   │   │   │   ├── meta_data.json
│   │   │   │   │   └── _v2_0__auth.json
│   │   │   │   ├── google_storage
│   │   │   │   │   ├── get_container.json
│   │   │   │   │   ├── get_object.json
│   │   │   │   │   ├── list_container_acl.json
│   │   │   │   │   ├── list_container_objects_empty.xml
│   │   │   │   │   ├── list_container_objects_not_exhausted1.xml
│   │   │   │   │   ├── list_container_objects_not_exhausted2.xml
│   │   │   │   │   ├── list_container_objects.xml
│   │   │   │   │   ├── list_containers_empty.xml
│   │   │   │   │   ├── list_containers.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_chinese.xml
│   │   │   │   │   ├── list_container_objects_empty.xml
│   │   │   │   │   ├── list_container_objects_prefix.xml
│   │   │   │   │   ├── list_container_objects.xml
│   │   │   │   │   ├── list_containers_empty.xml
│   │   │   │   │   └── list_containers.xml
│   │   │   │   └── s3
│   │   │   │   ├── complete_multipart.xml
│   │   │   │   ├── initiate_multipart.xml
│   │   │   │   ├── list_container_objects_empty.xml
│   │   │   │   ├── list_container_objects_not_exhausted1.xml
│   │   │   │   ├── list_container_objects_not_exhausted2.xml
│   │   │   │   ├── list_container_objects.xml
│   │   │   │   ├── list_containers_empty.xml
│   │   │   │   ├── list_containers.xml
│   │   │   │   ├── list_multipart_1.xml
│   │   │   │   └── list_multipart_2.xml
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_atmos.cpython-37.pyc
│   │   │   │   ├── test_aurora.cpython-37.pyc
│   │   │   │   ├── test_azure_blobs.cpython-37.pyc
│   │   │   │   ├── test_backblaze_b2.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_cloudfiles.cpython-37.pyc
│   │   │   │   ├── test_digitalocean_spaces.cpython-37.pyc
│   │   │   │   ├── test_google_storage.cpython-37.pyc
│   │   │   │   ├── test_local.cpython-37.pyc
│   │   │   │   ├── test_ninefold.cpython-37.pyc
│   │   │   │   ├── test_oss.cpython-37.pyc
│   │   │   │   ├── test_rgw.cpython-37.pyc
│   │   │   │   └── test_s3.cpython-37.pyc
│   │   │   ├── 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_google_storage.py
│   │   │   ├── test_local.py
│   │   │   ├── test_ninefold.py
│   │   │   ├── test_oss.py
│   │   │   ├── test_rgw.py
│   │   │   └── test_s3.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
│   ├── connection.py
│   ├── decorators.py
│   ├── dist.py
│   ├── escape.py
│   ├── files.py
│   ├── __init__.py
│   ├── iso8601.py
│   ├── loggingconnection.py
│   ├── logging.py
│   ├── misc.py
│   ├── networking.py
│   ├── publickey.py
│   ├── py3.py
│   ├── __pycache__
│   │   ├── connection.cpython-37.pyc
│   │   ├── decorators.cpython-37.pyc
│   │   ├── dist.cpython-37.pyc
│   │   ├── escape.cpython-37.pyc
│   │   ├── files.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── iso8601.cpython-37.pyc
│   │   ├── loggingconnection.cpython-37.pyc
│   │   ├── logging.cpython-37.pyc
│   │   ├── misc.cpython-37.pyc
│   │   ├── networking.cpython-37.pyc
│   │   ├── publickey.cpython-37.pyc
│   │   ├── py3.cpython-37.pyc
│   │   └── xml.cpython-37.pyc
│   └── xml.py
└── nix-support
└── propagated-build-inputs
168 directories, 2682 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment