Bases: object
Top-level object to access the Rackspace Database as a Service API.
Create an instance with your creds:
>> red = Dbaas(USERNAME, API_KEY, TENANT, AUTH_URL, SERVICE_NAME, SERVICE_URL)
Then call methods on its managers:
>> red.instances.list()
...
>> red.flavors.list()
...
&c.
Authenticate against the server.
This is called to perform an authentication to retrieve a token.
Returns on success; raises exceptions.Unauthorized if the credentials are wrong.