Fix extension description and remove unused exception
Change-Id: Id0a40a8decb46e306256196c7fc79d687d4f8075 Closes-Bug: #1267841
This commit is contained in:
parent
84e8eb06b5
commit
1f9d51bee4
@ -20,14 +20,9 @@
|
|||||||
|
|
||||||
from neutron.api import extensions
|
from neutron.api import extensions
|
||||||
from neutron.api.v2 import attributes as attrs
|
from neutron.api.v2 import attributes as attrs
|
||||||
from neutron.common import exceptions as qexception
|
|
||||||
from neutron.extensions import l3
|
from neutron.extensions import l3
|
||||||
|
|
||||||
|
|
||||||
class RouterDNatDisabled(qexception.BadRequest):
|
|
||||||
message = _("DNat is disabled for the router %(router_id)s. Floating IPs "
|
|
||||||
"cannot be associated.")
|
|
||||||
|
|
||||||
EXTENDED_ATTRIBUTES_2_0 = {
|
EXTENDED_ATTRIBUTES_2_0 = {
|
||||||
'routers': {l3.EXTERNAL_GW_INFO:
|
'routers': {l3.EXTERNAL_GW_INFO:
|
||||||
{'allow_post': True,
|
{'allow_post': True,
|
||||||
@ -56,7 +51,7 @@ class L3_ext_gw_mode(extensions.ExtensionDescriptor):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def get_description(cls):
|
def get_description(cls):
|
||||||
return ("Extension of the router abstraction for specifying whether "
|
return ("Extension of the router abstraction for specifying whether "
|
||||||
"SNAT, DNAT or both should occur on the external gateway")
|
"SNAT should occur on the external gateway")
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_namespace(cls):
|
def get_namespace(cls):
|
||||||
|
Loading…
Reference in New Issue
Block a user