~ubuntu-branches/ubuntu/trusty/heat/trusty-security

« back to all changes in this revision

Viewing changes to heat/rpc/client.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-09-08 21:51:19 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20130908215119-7tcek6gn73275x5k
Tags: upstream-2013.2~b3
ImportĀ upstreamĀ versionĀ 2013.2~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
        """
161
161
        return self.call(ctxt, self.make_msg('list_resource_types'))
162
162
 
 
163
    def resource_schema(self, ctxt, type_name):
 
164
        """
 
165
        Get the schema for a resource type.
 
166
 
 
167
        :param ctxt: RPC context.
 
168
        """
 
169
        return self.call(ctxt, self.make_msg('resource_schema',
 
170
                                             type_name=type_name))
 
171
 
163
172
    def generate_template(self, ctxt, type_name):
164
173
        """
165
174
        Generate a template based on the specified type.