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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Corey Bryant, Corey Bryant, James Page
  • Date: 2015-07-07 17:06:19 UTC
  • mfrom: (1.1.26) (45.1.1 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20150707170619-hra2dbjpfofpou4s
Tags: 1:5.0.0~b1-0ubuntu1
[ Corey Bryant ]
* New upstream milestone for OpenStack Liberty:
  - d/control: Align (build-)depends with upstream.
  - d/p/fix-requirements.patch: Rebased.
  - d/p/sudoers_patch.patch: Rebased.

[ James Page ]
* d/s/options: Ignore any removal of egg-info data during package clean.
* d/control: Drop MySQL and PostgreSQL related BD's, not required for unit
  testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
 
80
80
    attributes_schema = {
81
81
        STATUS: attributes.Schema(
82
 
            _("The status of the network.")
 
82
            _("The status of the network."),
 
83
            type=attributes.Schema.STRING
83
84
        ),
84
85
        NAME_ATTR: attributes.Schema(
85
 
            _("The name of the network.")
 
86
            _("The name of the network."),
 
87
            type=attributes.Schema.STRING
86
88
        ),
87
89
        SUBNETS: attributes.Schema(
88
 
            _("Subnets of this network.")
 
90
            _("Subnets of this network."),
 
91
            type=attributes.Schema.LIST
89
92
        ),
90
93
        ADMIN_STATE_UP_ATTR: attributes.Schema(
91
 
            _("The administrative status of the network.")
 
94
            _("The administrative status of the network."),
 
95
            type=attributes.Schema.STRING
92
96
        ),
93
97
        TENANT_ID_ATTR: attributes.Schema(
94
 
            _("The tenant owning this network.")
 
98
            _("The tenant owning this network."),
 
99
            type=attributes.Schema.STRING
95
100
        ),
96
101
        SHOW: attributes.Schema(
97
 
            _("All attributes.")
 
102
            _("All attributes."),
 
103
            type=attributes.Schema.MAP
98
104
        ),
99
105
    }
100
106