Remove deprectaion warnings for db models
Change-Id: I597695f60083fade117af7ca73457be544e11590
This commit is contained in:
parent
dd376dead4
commit
33031263ee
@ -18,7 +18,7 @@ import sqlalchemy as sa
|
|||||||
from sqlalchemy import orm
|
from sqlalchemy import orm
|
||||||
|
|
||||||
from neutron.db import db_base_plugin_v2
|
from neutron.db import db_base_plugin_v2
|
||||||
from neutron.db import securitygroups_db
|
from neutron.db.models import securitygroup
|
||||||
from neutron.extensions import securitygroup as ext_sg
|
from neutron.extensions import securitygroup as ext_sg
|
||||||
from neutron_lib.api import validators
|
from neutron_lib.api import validators
|
||||||
from neutron_lib import exceptions as nexception
|
from neutron_lib import exceptions as nexception
|
||||||
@ -46,7 +46,7 @@ class NsxExtendedSecurityGroupRuleProperties(model_base.BASEV2):
|
|||||||
local_ip_prefix = sa.Column(sa.String(255), nullable=False)
|
local_ip_prefix = sa.Column(sa.String(255), nullable=False)
|
||||||
|
|
||||||
rule = orm.relationship(
|
rule = orm.relationship(
|
||||||
securitygroups_db.SecurityGroupRule,
|
securitygroup.SecurityGroupRule,
|
||||||
backref=orm.backref('ext_properties', lazy='joined',
|
backref=orm.backref('ext_properties', lazy='joined',
|
||||||
uselist=False, cascade='delete'))
|
uselist=False, cascade='delete'))
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ from oslo_db.sqlalchemy import models
|
|||||||
from vmware_nsx.common import nsxv_constants
|
from vmware_nsx.common import nsxv_constants
|
||||||
|
|
||||||
|
|
||||||
class NsxvRouterBinding(model_base.BASEV2, models_v2.HasStatusDescription,
|
class NsxvRouterBinding(model_base.BASEV2, model_base.HasStatusDescription,
|
||||||
models.TimestampMixin):
|
models.TimestampMixin):
|
||||||
"""Represents the mapping between neutron router and vShield Edge."""
|
"""Represents the mapping between neutron router and vShield Edge."""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user