neutron/neutron/objects
Jenkins d8e3596259 Merge "[TrivialFix] Fix comment typo error" 2017-01-05 13:34:46 +00:00
..
db objects: add delete_objects public method 2016-12-13 17:35:47 +00:00
extensions Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
plugins OVO for FlatAllocation 2016-12-22 13:25:50 +00:00
port Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
qos Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
README.rst Objects: Add README for neutron/objects directory tree 2016-10-07 15:12:20 +00:00
__init__.py First QoS versioned objects, ever 2015-07-02 09:21:45 +03:00
address_scope.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
agent.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
base.py Merge "Set standard_attr_id as property in DeclarativeObject." 2016-12-21 15:04:54 +00:00
common_types.py Merge "OVO for VlanAllocation" 2016-12-13 23:00:33 +00:00
exceptions.py Move OVO exceptions to neutron/objects/exceptions 2016-11-10 10:25:06 -07:00
floatingip.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
network.py Merge "objects: add delete_objects public method" 2016-12-15 14:40:56 +00:00
ports.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
provisioning_blocks.py OVO for Provisioning Block DB Model 2016-11-22 19:15:51 +00:00
rbac_db.py Refactor/prepare db common utils for neutron-lib 2016-10-28 10:53:11 -04:00
router.py [TrivialFix] Fix comment typo error 2017-01-02 12:45:13 +08:00
securitygroup.py Sort and Remove duplicate field types 2016-12-20 10:38:41 -06:00
servicetype.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
subnet.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
subnetpool.py Sort and Remove duplicate field types 2016-12-20 10:38:41 -06:00
trunk.py Make UUIDField actually validate UUIDs 2016-12-07 15:11:43 +00:00
utils.py objects: introduce a util function to handle tenant_id filter 2016-08-03 08:42:38 +00:00

README.rst

Neutron Objects

Directory

This directory is designed to contain all modules which have objects definitions shipped with core Neutron. The files and directories located inside of this directory should follow the guidelines below.

Structure

The Neutron objects tree should have the following structure:

  • The expected directory structure is flat, except for the ML2 plugins. All ML2 plugin objects should fall under the plugins subdirectory (i.e. plugins/ml2/gre_allocation).
  • Module names should use singular forms for nouns (network.py, not networks.py).