python-octaviaclient/octaviaclient/api/load_balancer_v2.py

41 lines
1.2 KiB
Python

# 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.
#
"""Load Balancer v2 API Library"""
from osc_lib.api import api
class APIv2(api.BaseAPI):
"""Load Balancer v2 API"""
_endpoint_suffix = '/v2.0/lbaas'
def __init__(self, endpoint=None, **kwargs):
super(APIv2, self).__init__(endpoint=endpoint, **kwargs)
self.endpoint = self.endpoint.rstrip('/')
self._build_url()
def _build_url(self):
if not self.endpoint.endswith(self._endpoint_suffix):
self.endpoint = self.endpoint + self._endpoint_suffix
def load_balancer_list(
self,
**filter
):
url = '/loadbalancers'
load_balancer_list = self.list(url, **filter)['loadbalancers']
return load_balancer_list