update gophercloud that fixed code format

mainly to include #265(https://github.com/gophercloud/gophercloud/pull/265)
This commit is contained in:
Di Xu
2017-04-24 09:04:25 +00:00
committed by root
parent ac90c0e45c
commit 47442f1c57
16 changed files with 162 additions and 92 deletions

View File

@@ -4,11 +4,13 @@ clouds. The library has a three-level hierarchy: providers, services, and
resources.
Provider structs represent the service providers that offer and manage a
collection of services. Examples of providers include: OpenStack, Rackspace,
HP. These are defined like so:
collection of services. The IdentityEndpoint is typically refered to as
"auth_url" in information provided by the cloud operator. Additionally,
the cloud may refer to TenantID or TenantName as project_id and project_name.
These are defined like so:
opts := gophercloud.AuthOptions{
IdentityEndpoint: "https://my-openstack.com:5000/v2.0",
IdentityEndpoint: "https://openstack.example.com:5000/v2.0",
Username: "{username}",
Password: "{password}",
TenantID: "{tenant_id}",