summaryrefslogtreecommitdiff
path: root/troveclient/client.py
diff options
context:
space:
mode:
authorCraig Vyvial <cp16net@gmail.com>2013-09-09 10:21:49 -0500
committerCraig Vyvial <cp16net@gmail.com>2014-02-05 16:34:27 -0600
commit8bc981aba55f050c4b0277987d5505eb53355b25 (patch)
tree35af2630eeaacafc136a1d0a58f08a071b843d64 /troveclient/client.py
parentc803faa538721c7cead8fbd28d3456b481784f38 (diff)
downloadpython-troveclient-8bc981aba55f050c4b0277987d5505eb53355b25.tar.gz
adds support for configurations management
Reason: Adding configuration group support for the python-troveclient Changes: adding configuration api calls adding the compat client for tests and xml added the shell cmds for the configurations in the client made the path to datastore/version/parameters added unit tests partially implements blueprint configuration-management Change-Id: Ifc0b4077c93a805898b4cd157e33172f64e85b55
Diffstat (limited to 'troveclient/client.py')
-rw-r--r--troveclient/client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/troveclient/client.py b/troveclient/client.py
index 74192e9..cd5fcc7 100644
--- a/troveclient/client.py
+++ b/troveclient/client.py
@@ -207,6 +207,9 @@ class HTTPClient(object):
def get(self, url, **kwargs):
return self._cs_request(url, 'GET', **kwargs)
+ def patch(self, url, **kwargs):
+ return self._cs_request(url, 'PATCH', **kwargs)
+
def post(self, url, **kwargs):
return self._cs_request(url, 'POST', **kwargs)