neutron/neutron/objects
Rodolfo Alonso Hernandez 59b2ac0c2a Replace "tenant_id" with "project_id" in OVO base
This is part of the remaining technical debt of the specs
https://specs.openstack.org/openstack/neutron-specs/specs/newton/moving-to-keystone-v3.html

Blueprint: https://blueprints.launchpad.net/neutron/+spec/keystone-v3

Change-Id: I714d97449c41c9dd889d1842c0fa9b78ffa0f9f2
2021-10-28 15:37:07 +00:00
..
db Improve "objects.db.api.count" method 2021-04-28 07:50:56 +00:00
extensions use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
logapi use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
plugins Randomize segmentation ID assignation 2021-03-24 13:56:09 +00:00
port [DVR] Send allowed address pairs info to the L3 agents 2021-05-18 12:58:23 +02:00
qos Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
README.rst Objects: Add README for neutron/objects directory tree 2016-10-07 15:12:20 +00:00
__init__.py Bump pylint version to support python 3.8 2020-08-06 16:00:30 +02:00
address_group.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
address_scope.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
agent.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
auto_allocate.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
base.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
conntrack_helper.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
flavor.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
floatingip.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
ipam.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
l3_hamode.py Finish the new DB engine facade migration 2020-11-24 09:20:35 +00:00
l3agent.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
metering.py Add source_ip_prefix and destination_ip_prefix to metering label rules 2020-09-29 09:06:03 -03:00
network.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
network_segment_range.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
port_forwarding.py In OVO PortForwarding, retrieve FIP info from db_obj 2021-01-16 00:06:49 +00:00
ports.py Merge "Remove FIP agent's gw port when L3 agent is deleted" 2021-06-24 06:38:48 +00:00
provisioning_blocks.py [OVO] Switch to use own registry 2017-11-22 17:44:22 +01:00
quota.py Do not fail when releasing a quota reservation 2021-08-25 13:18:17 +00:00
rbac.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
rbac_db.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
router.py Get only FIP ID on network delete 2021-04-13 11:27:14 +03:00
securitygroup.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
servicetype.py use objects common_types from neutron-lib 2019-11-26 15:34:18 +01:00
stdattrs.py Use neutron-lib standard_attr 2021-09-15 09:19:26 +00:00
subnet.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
subnetpool.py Replace "tenant_id" with "project_id" in OVO base 2021-10-28 15:37:07 +00:00
tag.py Use neutron-lib standard_attr 2021-09-15 09:19:26 +00:00
trunk.py Provide object tagging using the tag plugin 2021-01-18 11:57:39 +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).