/opt/imh-python/lib/python3.9/site-packages/libcloud/loadbalancer/drivers
NameSizeModeActions
__pycache__/-0755rm
alb.py374480644editdlrm
brightbox.py48310644editdlrm
cloudstack.py77350644editdlrm
dimensiondata.py433880644editdlrm
elb.py142540644editdlrm
gce.py136720644editdlrm
gogrid.py83600644editdlrm
ninefold.py11730644editdlrm
nttcis.py618490644editdlrm
rackspace.py568830644editdlrm
slb.py305180644editdlrm
softlayer.py151320644editdlrm
__init__.py8400644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/libcloud/loadbalancer/drivers/ninefold.py (1173B)
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You 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 libcloud.loadbalancer.providers import Provider from libcloud.loadbalancer.drivers.cloudstack import CloudStackLBDriver class NinefoldLBDriver(CloudStackLBDriver): """Driver for load balancers on Ninefold's Compute platform.""" host = 'api.ninefold.com' path = '/compute/v1.0/' type = Provider.NINEFOLD name = 'Ninefold LB' website = 'http://ninefold.com/'