Orchestrator API

dispatcher.lib.cloud_factory.drivers.ec2

Contents

Source code for dispatcher.lib.cloud_factory.drivers.ec2

# -*- coding:utf-8 -*-

# Copyright 2015 CRS4
# All Rights Reserved.
#
#    Licensed under the GNU General Public License, version 2 (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.gnu.org/licenses/gpl-2.0.html
#
#    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 libcloud.compute.types import Provider
from libcloud.compute.providers import get_driver

from . import GenericDriver

[docs]class AmazonDriver(GenericDriver): """ Amazon Generic region base node driver """ def __init__(self, creds): """ @param creds: Credentials """ super(EC2_US_WEST_Driver, self).__init__(creds) self.driver = get_driver(Provider.EC2_US_WEST)
[docs] def connect(self, **kwargs): driver = self.driver(self.user, self.password, **self.extra) return driver
[docs]class EC2_US_WEST_Driver(AmazonDriver): """ Amazon US WEST region base node driver """ def __init__(self, creds): """ @param creds: Credentials """ super(EC2_US_WEST_Driver, self).__init__(creds)
[docs]class EC2_US_EAST_Driver(AmazonDriver): """ Amazon US EAST region base node driver """ def __init__(self, creds): """ @param creds: Credentials """ super(EC2_US_WEST_Driver, self).__init__(creds) self.driver = get_driver(Provider.EC2_US_EAST)
[docs]class EC2_EU_EAST_Driver(AmazonDriver): """ Amazon EU EAST region base node driver """ def __init__(self, creds): """ @param creds: Credentials """ super(EC2_EU_WEST_Driver, self).__init__(creds) self.driver = get_driver(Provider.EC2_EU_EAST)
[docs]class EC2_EU_WEST_Driver(AmazonDriver): """ Amazon EU WEST region base node driver """ def __init__(self, creds): """ @param creds: Credentials """ super(EC2_EU_WEST_Driver, self).__init__(creds) self.driver = get_driver(Provider.EC2_EU_WEST)

Contents