neutron/neutron/objects
Sławek Kapłoński 5e08a9b0e7 [OVO] Switch to use own registry
Neutron will now use own registry for versionedobjects.
It avoids problems with loading wrong OVO objects from
different projects (like os_vif) when names are the same.

Change-Id: I9d4fab591fbe52271c613251321a6d03078976f7
Closes-Bug: #1731948
2017-11-22 17:44:22 +01:00
..
db Use Agent OVO in agents_db and test_agents_db 2017-11-03 16:46:09 +07:00
extensions Tag mechanism supports resources with standard attribute 2017-07-25 08:14:04 +09:00
logapi [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
plugins [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
port [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
qos [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
README.rst Objects: Add README for neutron/objects directory tree 2016-10-07 15:12:20 +00:00
__init__.py Use dirname in object recursive import 2017-04-20 04:35:10 -07:00
address_scope.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
agent.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
auto_allocate.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
base.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
common_types.py Support protocol numbers in security group API 2017-11-10 17:06:02 -05:00
flavor.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
floatingip.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
ipam.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
l3_hamode.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
l3agent.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
metering.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
network.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
ports.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
provisioning_blocks.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
quota.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
rbac_db.py use neutron-lib callbacks 2017-04-26 12:12:53 -06:00
router.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
securitygroup.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
servicetype.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
subnet.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
subnetpool.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
tag.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
trunk.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
utils.py Add initialization in StringMatchingFilterObj class 2017-11-03 13:25:21 +09: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).