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

« back to all changes in this revision

Viewing changes to heat/engine/api.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:
127
127
        api.EVENT_STACK_ID: dict(stack_identifier),
128
128
        api.EVENT_STACK_NAME: stack_identifier.stack_name,
129
129
        api.EVENT_TIMESTAMP: timeutils.isotime(event.timestamp),
130
 
        api.EVENT_RES_NAME: event.resource.name,
 
130
        api.EVENT_RES_NAME: event.resource_name,
131
131
        api.EVENT_RES_PHYSICAL_ID: event.physical_resource_id,
132
132
        api.EVENT_RES_ACTION: event.action,
133
133
        api.EVENT_RES_STATUS: event.status,
134
134
        api.EVENT_RES_STATUS_DATA: event.reason,
135
 
        api.EVENT_RES_TYPE: event.resource.type(),
 
135
        api.EVENT_RES_TYPE: event.resource_type,
136
136
        api.EVENT_RES_PROPERTIES: event.resource_properties,
137
137
    }
138
138