neutron/neutron/extensions/dns_domain_ports.py
Boden R 284bbce66e use dns domain ports api def from neutron-lib
The dns domain ports extension's API definition was rehomed into
neutron-lib with I79a96e72daa5baf579fcece2a703a47b8059423e
This patch consumes it by removing the rehomed code and using the
APIExtensionDescriptor for the extensions parent class.

NeutronLibImpact

Change-Id: I8517a5b7c1ae7f4909f4c9829cf8ddea865f5210
2017-11-16 12:02:04 +00:00

24 lines
888 B
Python

# Copyright (c) 2017 IBM
# All Rights Reserved.
#
# 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.definitions import dns_domain_ports as apidef
from neutron_lib.api import extensions
class Dns_domain_ports(extensions.APIExtensionDescriptor):
"""Extension class supporting dns_domain attribute for ports."""
api_definition = apidef