Source code for heat.api.openstack.v1.resources
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# 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 itertools
from heat.api.openstack.v1 import util
from heat.common import wsgi
from heat.rpc import api as engine_api
from heat.common import identifier
from heat.rpc import client as rpc_client
import heat.openstack.common.rpc.common as rpc_common
[docs]class ResourceController(object):
"""
WSGI controller for Resources in Heat v1 API
Implements the API actions
"""
def __init__(self, options):
self.options = options
self.engine = rpc_client.EngineClient()
@util.identified_stack
[docs] def index(self, req, identity):
"""
Lists summary information for all resources
"""
try:
res_list = self.engine.list_stack_resources(req.context,
identity)
except rpc_common.RemoteError as ex:
return util.remote_error(ex)
return {'resources': [format_resource(req, res) for res in res_list]}
@util.identified_stack
[docs] def show(self, req, identity, resource_name):
"""
Gets detailed information for a stack
"""
try:
res = self.engine.describe_stack_resource(req.context,
identity,
resource_name)
except rpc_common.RemoteError as ex:
return util.remote_error(ex)
return {'resource': format_resource(req, res)}
@util.identified_stack
[docs]def create_resource(options):
"""
Resources resource factory method.
"""
# TODO(zaneb) handle XML based on Content-type/Accepts
deserializer = wsgi.JSONRequestDeserializer()
serializer = wsgi.JSONResponseSerializer()
return wsgi.Resource(ResourceController(options), deserializer, serializer)