summaryrefslogtreecommitdiff
path: root/troveclient/compat
diff options
context:
space:
mode:
authoramcrn <amcreynolds@ebaysf.com>2014-08-12 16:52:19 -0700
committeramcrn <amcreynolds@ebaysf.com>2014-09-02 16:38:56 -0700
commit6852bdcefc17712b4b57a530adfb406e059e52e2 (patch)
tree6cce0ad46cb5e07d54c8152315485bea50cf481b /troveclient/compat
parent33c76fab16b80f32a04f83e1653d4f809c22d3bd (diff)
downloadpython-troveclient-6852bdcefc17712b4b57a530adfb406e059e52e2.tar.gz
Clusters troveclient Implementation
adds clusters support to the troveclient. Co-Authored-By: Ranjitha Vemula <rvemula@ebaysf.com> Co-Authored-By: Michael Yu <michayu@ebaysf.com> Co-Authored-By: Mat Lowery <mlowery@ebaysf.com> Partially implements: blueprint clustering Change-Id: I6ed2c4c79a17fcf8f14c587cab6a8ec3acaf319f
Diffstat (limited to 'troveclient/compat')
-rw-r--r--troveclient/compat/client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/troveclient/compat/client.py b/troveclient/compat/client.py
index 03802a0..c373802 100644
--- a/troveclient/compat/client.py
+++ b/troveclient/compat/client.py
@@ -302,6 +302,7 @@ class Dbaas(object):
from troveclient.compat import versions
from troveclient.v1 import accounts
from troveclient.v1 import backups
+ from troveclient.v1 import clusters
from troveclient.v1 import configurations
from troveclient.v1 import databases
from troveclient.v1 import datastores
@@ -335,6 +336,7 @@ class Dbaas(object):
self.hosts = hosts.Hosts(self)
self.quota = quota.Quotas(self)
self.backups = backups.Backups(self)
+ self.clusters = clusters.Clusters(self)
self.security_groups = security_groups.SecurityGroups(self)
self.security_group_rules = security_groups.SecurityGroupRules(self)
self.datastores = datastores.Datastores(self)
@@ -343,6 +345,7 @@ class Dbaas(object):
DatastoreVersionMembers(self))
self.storage = storage.StorageInfo(self)
self.management = management.Management(self)
+ self.mgmt_cluster = management.MgmtClusters(self)
self.mgmt_flavor = management.MgmtFlavors(self)
self.accounts = accounts.Accounts(self)
self.diagnostics = diagnostics.DiagnosticsInterrogator(self)