From 41f5dcb6c29aa548ade5d9c4b58ff3e56cf9a566 Mon Sep 17 00:00:00 2001 From: tengqm Date: Mon, 5 Jan 2015 16:17:08 +0800 Subject: [PATCH] Remove profile method, not needed now --- senlinclient/v1/clusters.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/senlinclient/v1/clusters.py b/senlinclient/v1/clusters.py index 6440d4e6..02eda61a 100644 --- a/senlinclient/v1/clusters.py +++ b/senlinclient/v1/clusters.py @@ -138,10 +138,3 @@ class ClusterManager(base.BaseManager): 'GET', '/clusters/%s' % cluster_id) return Cluster(self, body['cluster']) - - def profile(self, cluster_id): - '''Get the profile spec for a specific cluster as a parsed Json.''' - resp, body = self.client.json_request( - 'GET', - '/clusters/%s/profile' % cluster_id) - return body