heat/heat/engine/resources/quantum/router.py

103 lines
3.6 KiB
Python

# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# 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 heat.engine.resources.quantum import quantum
from heat.openstack.common import log as logging
logger = logging.getLogger('heat.engine.quantum')
class Router(quantum.QuantumResource):
properties_schema = {'name': {'Type': 'String'},
'value_specs': {'Type': 'Map',
'Default': {}},
'admin_state_up': {'Type': 'Boolean',
'Default': True},
}
def __init__(self, name, json_snippet, stack):
super(Router, self).__init__(name, json_snippet, stack)
def handle_create(self):
props = self.prepare_properties(self.properties, self.name)
router = self.quantum().create_router({'router': props})['router']
self.instance_id_set(router['id'])
def handle_delete(self):
client = self.quantum()
try:
client.delete_router(self.instance_id)
except:
pass
def FnGetAtt(self, key):
attributes = self.quantum().show_router(
self.instance_id)['router']
return self.handle_get_attributes(self.name, key, attributes)
class RouterInterface(quantum.QuantumResource):
properties_schema = {'router_id': {'Type': 'String',
'Required': True},
'subnet_id': {'Type': 'String',
'Required': True},
}
def __init__(self, name, json_snippet, stack):
super(RouterInterface, self).__init__(name, json_snippet, stack)
def handle_create(self):
router_id = self.properties.get('router_id')
subnet_id = self.properties.get('subnet_id')
self.quantum().add_interface_router(router_id,
{'subnet_id': subnet_id})
self.instance_id_set('%s:%s' % (router_id, subnet_id))
def handle_delete(self):
client = self.quantum()
try:
(router_id, subnet_id) = self.instance_id.split(':')
client.remove_interface_router(router_id,
{'subnet_id': subnet_id})
except:
pass
class RouterGateway(quantum.QuantumResource):
properties_schema = {'router_id': {'Type': 'String',
'Required': True},
'network_id': {'Type': 'String',
'Required': True},
}
def __init__(self, name, json_snippet, stack):
super(RouterGateway, self).__init__(name, json_snippet, stack)
def handle_create(self):
router_id = self.properties.get('router_id')
network_id = self.properties.get('network_id')
self.quantum().add_gateway_router(router_id,
{'network_id': network_id})
self.instance_id_set('%s:%s' % (router_id, network_id))
def handle_delete(self):
client = self.quantum()
try:
(router_id, network_id) = self.instance_id.split(':')
client.remove_gateway_router(router_id)
except:
pass