Add support_status for OS::Cinder::VolumeType

Add support_status for new resource OS::Cinder::VolumeType.

Change-Id: I0f679f35de0bbec1d9263cccd97d2a5531c9dcd1
This commit is contained in:
huangtianhua 2014-12-26 16:07:18 +08:00
parent ae6dbda552
commit d84dfa0ec1

View File

@ -14,6 +14,7 @@
from heat.common.i18n import _ from heat.common.i18n import _
from heat.engine import properties from heat.engine import properties
from heat.engine import resource from heat.engine import resource
from heat.engine import support
class CinderVolumeType(resource.Resource): class CinderVolumeType(resource.Resource):
@ -23,6 +24,7 @@ class CinderVolumeType(resource.Resource):
Note that default cinder security policy usage of this resource Note that default cinder security policy usage of this resource
is limited to being used by administrators only. is limited to being used by administrators only.
""" """
support_status = support.SupportStatus(version='2015.1')
PROPERTIES = ( PROPERTIES = (
NAME, METADATA, NAME, METADATA,