summaryrefslogtreecommitdiff
path: root/heatclient/v1
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-03-01 13:11:58 +0000
committerGerrit Code Review <review@openstack.org>2014-03-01 13:11:58 +0000
commitd9b2909e380efb02950fb91db3336fac5f28780b (patch)
tree439e83ef4d5c8c8b863b37774109305264131b25 /heatclient/v1
parentcd70d6f08a69b2c0c9255af075ffec17c68822ad (diff)
parentace73ed0a36f3fc9f23c3e4893a725fbba5438ed (diff)
downloadpython-heatclient-d9b2909e380efb02950fb91db3336fac5f28780b.tar.gz
Merge "Update apiclient.base and reuse new functional"
Diffstat (limited to 'heatclient/v1')
-rw-r--r--heatclient/v1/events.py4
-rw-r--r--heatclient/v1/resources.py5
-rw-r--r--heatclient/v1/software_configs.py4
-rw-r--r--heatclient/v1/software_deployments.py4
-rw-r--r--heatclient/v1/stacks.py7
5 files changed, 2 insertions, 22 deletions
diff --git a/heatclient/v1/events.py b/heatclient/v1/events.py
index 161de39..cb24664 100644
--- a/heatclient/v1/events.py
+++ b/heatclient/v1/events.py
@@ -12,7 +12,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
@@ -35,9 +34,6 @@ class Event(base.Resource):
def data(self, **kwargs):
return self.manager.data(self, **kwargs)
- def to_dict(self):
- return copy.deepcopy(self._info)
-
class EventManager(stacks.StackChildManager):
resource_class = Event
diff --git a/heatclient/v1/resources.py b/heatclient/v1/resources.py
index 1eab853..10dd5f4 100644
--- a/heatclient/v1/resources.py
+++ b/heatclient/v1/resources.py
@@ -13,8 +13,6 @@
# 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
from heatclient.openstack.common import strutils
@@ -36,9 +34,6 @@ class Resource(base.Resource):
def data(self, **kwargs):
return self.manager.data(self, **kwargs)
- def to_dict(self):
- return copy.deepcopy(self._info)
-
class ResourceManager(stacks.StackChildManager):
resource_class = Resource
diff --git a/heatclient/v1/software_configs.py b/heatclient/v1/software_configs.py
index 9fa77d3..cf038db 100644
--- a/heatclient/v1/software_configs.py
+++ b/heatclient/v1/software_configs.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
@@ -24,9 +23,6 @@ class SoftwareConfig(base.Resource):
def data(self, **kwargs):
return self.manager.data(self, **kwargs)
- def to_dict(self):
- return copy.deepcopy(self._info)
-
class SoftwareConfigManager(base.BaseManager):
resource_class = SoftwareConfig
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
diff --git a/heatclient/v1/stacks.py b/heatclient/v1/stacks.py
index efbbef7..2d1ba6d 100644
--- a/heatclient/v1/stacks.py
+++ b/heatclient/v1/stacks.py
@@ -12,7 +12,7 @@
# 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
+
import six
from heatclient.openstack.common.apiclient import base
@@ -37,7 +37,7 @@ class Stack(base.Resource):
def get(self):
# set_loaded() first ... so if we have to bail, we know we tried.
- self.set_loaded(True)
+ self._loaded = True
if not hasattr(self.manager, 'get'):
return
@@ -61,9 +61,6 @@ class Stack(base.Resource):
def identifier(self):
return '%s/%s' % (self.stack_name, self.id)
- def to_dict(self):
- return copy.deepcopy(self._info)
-
class StackManager(base.BaseManager):
resource_class = Stack