neutron/neutron/objects
Jenkins ff6aded74d Merge "Introduce objects_exist method in neutron/objects/base.py" 2016-11-28 23:43:27 +00:00
..
db Adopt neutron-lib plugin directory 2016-11-23 04:45:33 -07:00
extensions Introduce ovo objects for ports 2016-09-28 20:46:19 +00:00
port Introduce ovo objects for ports 2016-09-28 20:46:19 +00:00
qos Adopt neutron-lib plugin directory 2016-11-23 04:45:33 -07: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 Relocate AddressScope DB model 2016-08-17 14:43:44 -07:00
agent.py Agent to OVO 2016-11-10 07:25:17 +00:00
base.py Introduce objects_exist method in neutron/objects/base.py 2016-11-28 16:32:25 +00:00
common_types.py Move OVO exceptions to neutron/objects/exceptions 2016-11-10 10:25:06 -07:00
exceptions.py Move OVO exceptions to neutron/objects/exceptions 2016-11-10 10:25:06 -07:00
floatingip.py Add OVO for dns Objects 2016-10-27 17:39:45 +00:00
network.py Add OVO for dns Objects 2016-10-27 17:39:45 +00:00
ports.py Agent to OVO 2016-11-10 07:25:17 +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 OVO for Router Extra Attributes 2016-10-18 16:54:56 +00:00
securitygroup.py objects: remove support for multiple db models in from_db_object 2016-08-29 17:28:46 +00:00
servicetype.py ProviderResourceAssociation to OVO 2016-11-18 13:09:29 -06:00
subnet.py OVO: add SubnetServiceType object and code integration. 2016-11-28 14:54:06 +01:00
subnetpool.py Merge "objects: expose database model for NeutronDbObject instances" 2016-09-14 11:43:03 +00:00
trunk.py Move OVO exceptions to neutron/objects/exceptions 2016-11-10 10:25:06 -07: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).