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

« back to all changes in this revision

Viewing changes to heat/rpc/api.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Yolanda Robla
  • Date: 2013-12-05 21:17:37 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20131205211737-7yg5orrs4wtgwyes
Tags: 2014.1~b1-0ubuntu1
[ Chuck Short ]
* New upstream release.
* debian/control:
  + Open icehouse release.
  + Dropped python-argparse, python-qpid, python-noseexcover,
    python-nose, and python-pycryptopp
  + Add versioned depends for python-pbr.
  + Add python-testscenarios as a build dependency.
* debian/patches/default-sqlite.patch: Dropped no longer needed.

[ Yolanda Robla ]
* debian/control: Added python-heatclient as a build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
    'resource_properties',
83
83
)
84
84
 
 
85
NOTIFY_KEYS = (
 
86
    NOTIFY_TENANT_ID,
 
87
    NOTIFY_USER_ID,
 
88
    NOTIFY_STACK_ID,
 
89
    NOTIFY_STACK_NAME,
 
90
    NOTIFY_STATE,
 
91
    NOTIFY_STATE_REASON,
 
92
    NOTIFY_CREATE_AT,
 
93
) = (
 
94
    'tenant_id',
 
95
    'user_id',
 
96
    STACK_ID,
 
97
    STACK_NAME,
 
98
    'state',
 
99
    'state_reason',
 
100
    'create_at',
 
101
)
 
102
 
85
103
# This is the representation of a watch we expose to the API via RPC
86
104
WATCH_KEYS = (
87
105
    WATCH_ACTIONS_ENABLED, WATCH_ALARM_ACTIONS, WATCH_TOPIC,