summaryrefslogtreecommitdiff
path: root/heatclient/v1/software_deployments.py
diff options
context:
space:
mode:
authorAndrey Kurilin <akurilin@mirantis.com>2014-02-12 10:21:40 +0200
committerAndrey Kurilin <akurilin@mirantis.com>2014-02-19 10:44:27 +0200
commitace73ed0a36f3fc9f23c3e4893a725fbba5438ed (patch)
tree212337820618f70fc79ff17cb8c2248f2fc7bdb2 /heatclient/v1/software_deployments.py
parent5458fe691ee7edc71b8670e4be6db39e2426ff05 (diff)
downloadpython-heatclient-ace73ed0a36f3fc9f23c3e4893a725fbba5438ed.tar.gz
Update apiclient.base and reuse new functional
Module apiclient.base has several updates in oslo, so we need to sync latest code to have ability to reuse new functional. Updates in oslo which related to usage of apiclient.base in heatclient: - I491f9b54c7074546cf738c6150666bfcc3966a78 - I1db6c12a1f798de7f7fafd0c34fb0ef523610153 Related to bp common-client-library-2 Change-Id: I509d6efb0c8eef87ba2e4aa02ebb44ba149a9860
Diffstat (limited to 'heatclient/v1/software_deployments.py')
-rw-r--r--heatclient/v1/software_deployments.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/heatclient/v1/software_deployments.py b/heatclient/v1/software_deployments.py
index 2a17868..4bbdf3d 100644
--- a/heatclient/v1/software_deployments.py
+++ b/heatclient/v1/software_deployments.py
@@ -9,7 +9,6 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
-import copy
from heatclient.openstack.common.apiclient import base
from heatclient.openstack.common.py3kcompat import urlutils
@@ -25,9 +24,6 @@ class SoftwareDeployment(base.Resource):
def delete(self):
return self.manager.delete(deployment_id=self.id)
- def to_dict(self):
- return copy.deepcopy(self._info)
-
class SoftwareDeploymentManager(base.BaseManager):
resource_class = SoftwareDeployment