0613e7773f
neutron_lib should be used instead of the attributes and constants imports. This patch moves to using neutron_lib. This removes all of the deprecated warnings (there are still some from neutron and l2gw - those are addressed in other patches). Change-Id: I796d749c46a69107a1a484e8774c5d501fc4704f
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
# Copyright 2014 VMware, Inc.
|
|
# 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 import validators
|
|
from neutron_lib import exceptions as exception
|
|
from oslo_log import log
|
|
from oslo_serialization import jsonutils
|
|
from oslo_utils import excutils
|
|
import six
|
|
|
|
from vmware_nsx.api_client import exception as api_exc
|
|
from vmware_nsx.common import utils
|
|
from vmware_nsx.nsxlib import mh as nsxlib
|
|
|
|
HTTP_POST = "POST"
|
|
HTTP_DELETE = "DELETE"
|
|
|
|
LQUEUE_RESOURCE = "lqueue"
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
|
|
def create_lqueue(cluster, queue_data):
|
|
params = {
|
|
'name': 'display_name',
|
|
'qos_marking': 'qos_marking',
|
|
'min': 'min_bandwidth_rate',
|
|
'max': 'max_bandwidth_rate',
|
|
'dscp': 'dscp'
|
|
}
|
|
queue_obj = dict(
|
|
(nsx_name, queue_data.get(api_name))
|
|
for api_name, nsx_name in six.iteritems(params)
|
|
if validators.is_attr_set(queue_data.get(api_name))
|
|
)
|
|
if 'display_name' in queue_obj:
|
|
queue_obj['display_name'] = utils.check_and_truncate(
|
|
queue_obj['display_name'])
|
|
|
|
queue_obj['tags'] = utils.get_tags()
|
|
try:
|
|
return nsxlib.do_request(HTTP_POST,
|
|
nsxlib._build_uri_path(LQUEUE_RESOURCE),
|
|
jsonutils.dumps(queue_obj),
|
|
cluster=cluster)['uuid']
|
|
except api_exc.NsxApiException:
|
|
# FIXME(salv-orlando): This should not raise NeutronException
|
|
with excutils.save_and_reraise_exception():
|
|
raise exception.NeutronException()
|
|
|
|
|
|
def delete_lqueue(cluster, queue_id):
|
|
try:
|
|
nsxlib.do_request(HTTP_DELETE,
|
|
nsxlib._build_uri_path(LQUEUE_RESOURCE,
|
|
resource_id=queue_id),
|
|
cluster=cluster)
|
|
except Exception:
|
|
# FIXME(salv-orlando): This should not raise NeutronException
|
|
with excutils.save_and_reraise_exception():
|
|
raise exception.NeutronException()
|