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

« back to all changes in this revision

Viewing changes to heat/db/api.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-10-03 09:43:04 UTC
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: package-import@ubuntu.com-20131003094304-zhhr2brapzlpvjmm
Tags: upstream-2013.2~rc1
ImportĀ upstreamĀ versionĀ 2013.2~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    return IMPL.stack_get_all_by_tenant(context)
130
130
 
131
131
 
 
132
def stack_count_all_by_tenant(context):
 
133
    return IMPL.stack_count_all_by_tenant(context)
 
134
 
 
135
 
132
136
def stack_create(context, values):
133
137
    return IMPL.stack_create(context, values)
134
138
 
165
169
    return IMPL.event_get_all_by_stack(context, stack_id)
166
170
 
167
171
 
 
172
def event_count_all_by_stack(context, stack_id):
 
173
    return IMPL.event_count_all_by_stack(context, stack_id)
 
174
 
 
175
 
168
176
def event_create(context, values):
169
177
    return IMPL.event_create(context, values)
170
178