~ubuntu-branches/ubuntu/wily/heat/wily

« back to all changes in this revision

Viewing changes to heat/engine/resources/openstack/neutron/firewall.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-10-12 21:44:47 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20151012214447-sasm1jdws1lj7ab8
Tags: 1:5.0.0~rc2-0ubuntu1
* New upstream release candidate for OpenStack Liberty.
* Don't clean heat.egg-info ensuring that non-py resources actually
  get installed (LP: #1505444).

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
    PROPERTIES = (
28
28
        NAME, DESCRIPTION, ADMIN_STATE_UP, FIREWALL_POLICY_ID,
29
 
        SHARED,
 
29
        VALUE_SPECS, SHARED,
30
30
    ) = (
31
31
        'name', 'description', 'admin_state_up', 'firewall_policy_id',
32
 
        'shared',
 
32
        'value_specs', 'shared',
33
33
    )
34
34
 
35
35
    ATTRIBUTES = (
66
66
            required=True,
67
67
            update_allowed=True
68
68
        ),
 
69
        VALUE_SPECS: properties.Schema(
 
70
            properties.Schema.MAP,
 
71
            _('Extra parameters to include in the "firewall" object in the '
 
72
              'creation request. Parameters are often specific to installed '
 
73
              'hardware or extensions.'),
 
74
            support_status=support.SupportStatus(version='5.0.0'),
 
75
            default={}
 
76
        ),
69
77
        SHARED: properties.Schema(
70
78
            properties.Schema.BOOLEAN,
71
79
            _('Whether this firewall should be shared across all tenants. '