
This new extension exposes the "enable_snat" flag of a router. The "enable_snat" flag can be updated using the external gateway API commands. However this is a router global configuration property that is stored directly on the router register. As described in the ``update-external-gateways-of-router`` API section [1]: "The enable_snat field does not have any effect for extra gateways except for the first external gateway in the list." [1]https://docs.openstack.org/api-ref/network/v2/index.html#update-external-gateways-of-router Related-Bug: #2124252 Signed-off-by: Rodolfo Alonso Hernandez <ralonsoh@redhat.com> Change-Id: I0ab856f56ff4e03cfff30075de938ae7178ebbff
48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
# Copyright (c) 2025 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from neutron_lib.api import converters
|
|
from neutron_lib.api.definitions import l3
|
|
|
|
|
|
ENABLE_SNAT = 'enable_snat'
|
|
|
|
ALIAS = 'router-enable-snat'
|
|
IS_SHIM_EXTENSION = False
|
|
IS_STANDARD_ATTR_EXTENSION = False
|
|
NAME = 'Exposes the router "enable_snat" read-only configuration flag'
|
|
API_PREFIX = ''
|
|
DESCRIPTION = 'Exposes the router "enable_snat" read-only configuration flag'
|
|
UPDATED_TIMESTAMP = '2025-09-18T18:00:00-00:00'
|
|
RESOURCE_NAME = l3.ROUTER
|
|
COLLECTION_NAME = l3.ROUTERS
|
|
RESOURCE_ATTRIBUTE_MAP = {
|
|
COLLECTION_NAME: {
|
|
ENABLE_SNAT: {'allow_post': False,
|
|
'allow_put': False,
|
|
'default': True,
|
|
'convert_to': converters.convert_to_boolean,
|
|
'required_by_policy': True,
|
|
'is_filter': True,
|
|
'is_sort_key': True,
|
|
'is_visible': True
|
|
},
|
|
},
|
|
}
|
|
SUB_RESOURCE_ATTRIBUTE_MAP = {}
|
|
ACTION_MAP = {}
|
|
REQUIRED_EXTENSIONS = []
|
|
OPTIONAL_EXTENSIONS = []
|
|
ACTION_STATUS = {}
|