From 725e2543efef8913ec9e69769eb45d5bc3d56aad Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Tue, 20 Aug 2013 15:13:41 -0500 Subject: Object API commands using our REST API layer * Add object-store API to ClientManager * Add object-store client * Add Object API library in openstackclient.object.v1.lib * Add Object API {container,object} list commands * Add library tests * Add command tests This should complete the Object v1 container and object list commands Change-Id: Ib1770d45efa8871959826b85faafa1e0bcef0a03 --- openstackclient/common/clientmanager.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'openstackclient/common') diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index fdeca139..690cabba 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -20,6 +20,7 @@ import logging from openstackclient.compute import client as compute_client from openstackclient.identity import client as identity_client from openstackclient.image import client as image_client +from openstackclient.object import client as object_client from openstackclient.volume import client as volume_client @@ -44,6 +45,7 @@ class ClientManager(object): compute = ClientCache(compute_client.make_client) identity = ClientCache(identity_client.make_client) image = ClientCache(image_client.make_client) + object = ClientCache(object_client.make_client) volume = ClientCache(volume_client.make_client) def __init__(self, token=None, url=None, auth_url=None, project_name=None, -- cgit v1.2.1