summaryrefslogtreecommitdiff
path: root/heat/rpc
diff options
context:
space:
mode:
authorMiguel Grinberg <miguelgrinberg50@gmail.com>2015-05-27 21:13:21 -0700
committerMiguel Grinberg <miguelgrinberg50@gmail.com>2015-05-27 21:13:21 -0700
commitbcf607325002f2a2bb2493f32112a4b69974eee0 (patch)
tree13a1e2f8ba6dcf15f45b341fc20e06a26844af3a /heat/rpc
parent6cf94a3ece89d77b839f61292e5f023c3f192c82 (diff)
downloadheat-bcf607325002f2a2bb2493f32112a4b69974eee0.tar.gz
Include support status in resource schema
This change adds support status information to the resource schema returned by the /resource_types/{resource_name} endpoint. Change-Id: I1d030544630bcaed06aa6fa60ea2554861033384 Closes-Bug: #1459486
Diffstat (limited to 'heat/rpc')
-rw-r--r--heat/rpc/api.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/heat/rpc/api.py b/heat/rpc/api.py
index a36c6d741..283fa74e7 100644
--- a/heat/rpc/api.py
+++ b/heat/rpc/api.py
@@ -76,8 +76,9 @@ RES_KEYS = (
RES_SCHEMA_KEYS = (
RES_SCHEMA_RES_TYPE, RES_SCHEMA_PROPERTIES, RES_SCHEMA_ATTRIBUTES,
+ RES_SCHEMA_SUPPORT_STATUS,
) = (
- RES_TYPE, 'properties', 'attributes',
+ RES_TYPE, 'properties', 'attributes', 'support_status'
)
EVENT_KEYS = (