From d8e45933bcd14339b8fe07507d8b3362ba520375 Mon Sep 17 00:00:00 2001 From: Rabi Mishra Date: Wed, 15 Apr 2015 12:59:05 +0530 Subject: [PATCH] Clarify `attributes` support status for AutoScalingGroup Clarify that latest HOT is required for path based get_attr calls using 'outputs' and 'outputs_list'. Change-Id: I44de426a61726d27616f6dd8a38e676fb2a6fbcc Closes-Bug: #1444286 --- .../engine/resources/openstack/heat/autoscaling_group.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/heat/engine/resources/openstack/heat/autoscaling_group.py b/heat/engine/resources/openstack/heat/autoscaling_group.py index 9c9597956f..3be4be61b0 100644 --- a/heat/engine/resources/openstack/heat/autoscaling_group.py +++ b/heat/engine/resources/openstack/heat/autoscaling_group.py @@ -19,6 +19,7 @@ from heat.engine import constraints from heat.engine import properties from heat.engine.resources.aws.autoscaling import autoscaling_group as aws_asg from heat.engine import rsrc_defn +from heat.engine import support class AutoScalingResourceGroup(aws_asg.AutoScalingGroup): @@ -114,10 +115,14 @@ class AutoScalingResourceGroup(aws_asg.AutoScalingGroup): attributes_schema = { OUTPUTS: attributes.Schema( _("A map of resource names to the specified attribute of each " - "individual resource.") + "individual resource. " + "Requires heat_template_version: 2014-10-16 or higher."), + support_status=support.SupportStatus(version='2014.2') ), OUTPUTS_LIST: attributes.Schema( - _("A list of the specified attribute of each individual resource.") + _("A list of the specified attribute of each individual resource. " + "Requires heat_template_version: 2014-10-16 or higher."), + support_status=support.SupportStatus(version='2014.2') ), CURRENT_SIZE: attributes.Schema( _("The current size of AutoscalingResourceGroup.")