octavia.controller.queue.endpoint

Source code for octavia.controller.queue.endpoint

# Copyright 2014 Rackspace
#
#    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 oslo_config import cfg
from oslo_log import log as logging
import oslo_messaging as messaging
from stevedore import driver as stevedore_driver

from octavia.common import constants

CONF = cfg.CONF

LOG = logging.getLogger(__name__)


[docs]class Endpoint(object): # API version history: # 1.0 - Initial version. target = messaging.Target( namespace=constants.RPC_NAMESPACE_CONTROLLER_AGENT, version='1.0') def __init__(self): self.worker = stevedore_driver.DriverManager( namespace='octavia.plugins', name=CONF.octavia_plugins, invoke_on_load=True ).driver
[docs] def create_load_balancer(self, context, load_balancer_id): LOG.info('Creating load balancer \'%s\'...', load_balancer_id) self.worker.create_load_balancer(load_balancer_id)
[docs] def update_load_balancer(self, context, load_balancer_id, load_balancer_updates): LOG.info('Updating load balancer \'%s\'...', load_balancer_id) self.worker.update_load_balancer(load_balancer_id, load_balancer_updates)
[docs] def delete_load_balancer(self, context, load_balancer_id, cascade=False): LOG.info('Deleting load balancer \'%s\'...', load_balancer_id) self.worker.delete_load_balancer(load_balancer_id, cascade)
[docs] def create_listener(self, context, listener_id): LOG.info('Creating listener \'%s\'...', listener_id) self.worker.create_listener(listener_id)
[docs] def update_listener(self, context, listener_id, listener_updates): LOG.info('Updating listener \'%s\'...', listener_id) self.worker.update_listener(listener_id, listener_updates)
[docs] def delete_listener(self, context, listener_id): LOG.info('Deleting listener \'%s\'...', listener_id) self.worker.delete_listener(listener_id)
[docs] def create_pool(self, context, pool_id): LOG.info('Creating pool \'%s\'...', pool_id) self.worker.create_pool(pool_id)
[docs] def update_pool(self, context, pool_id, pool_updates): LOG.info('Updating pool \'%s\'...', pool_id) self.worker.update_pool(pool_id, pool_updates)
[docs] def delete_pool(self, context, pool_id): LOG.info('Deleting pool \'%s\'...', pool_id) self.worker.delete_pool(pool_id)
[docs] def create_health_monitor(self, context, health_monitor_id): LOG.info('Creating health monitor \'%s\'...', health_monitor_id) self.worker.create_health_monitor(health_monitor_id)
[docs] def update_health_monitor(self, context, health_monitor_id, health_monitor_updates): LOG.info('Updating health monitor \'%s\'...', health_monitor_id) self.worker.update_health_monitor(health_monitor_id, health_monitor_updates)
[docs] def delete_health_monitor(self, context, health_monitor_id): LOG.info('Deleting health monitor \'%s\'...', health_monitor_id) self.worker.delete_health_monitor(health_monitor_id)
[docs] def create_member(self, context, member_id): LOG.info('Creating member \'%s\'...', member_id) self.worker.create_member(member_id)
[docs] def update_member(self, context, member_id, member_updates): LOG.info('Updating member \'%s\'...', member_id) self.worker.update_member(member_id, member_updates)
[docs] def delete_member(self, context, member_id): LOG.info('Deleting member \'%s\'...', member_id) self.worker.delete_member(member_id)
[docs] def create_l7policy(self, context, l7policy_id): LOG.info('Creating l7policy \'%s\'...', l7policy_id) self.worker.create_l7policy(l7policy_id)
[docs] def update_l7policy(self, context, l7policy_id, l7policy_updates): LOG.info('Updating l7policy \'%s\'...', l7policy_id) self.worker.update_l7policy(l7policy_id, l7policy_updates)
[docs] def delete_l7policy(self, context, l7policy_id): LOG.info('Deleting l7policy \'%s\'...', l7policy_id) self.worker.delete_l7policy(l7policy_id)
[docs] def create_l7rule(self, context, l7rule_id): LOG.info('Creating l7rule \'%s\'...', l7rule_id) self.worker.create_l7rule(l7rule_id)
[docs] def update_l7rule(self, context, l7rule_id, l7rule_updates): LOG.info('Updating l7rule \'%s\'...', l7rule_id) self.worker.update_l7rule(l7rule_id, l7rule_updates)
[docs] def delete_l7rule(self, context, l7rule_id): LOG.info('Deleting l7rule \'%s\'...', l7rule_id) self.worker.delete_l7rule(l7rule_id)
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.