Ejemplo n.º 1
0
 def __init__ (self, pid, osci, expid = None) :
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "VCLOUD", \
                           num_credentials = 1, \
                           use_sizes = False, \
                           use_locations = False, \
                           verify_ssl = False, \
                          )
Ejemplo n.º 2
0
 def __init__(self, pid, osci, expid=None):
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "VCLOUD", \
                           num_credentials = 1, \
                           use_sizes = False, \
                           use_locations = False, \
                           verify_ssl = False, \
                          )
Ejemplo n.º 3
0
 def __init__ (self, pid, osci, expid = None) :
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "DIGITAL_OCEAN", \
                           num_credentials = 1, \
                           use_ssh_keys = True, \
                           use_volumes = True, \
                           tldomain = "digitalocean.com", \
                          )
Ejemplo n.º 4
0
 def __init__(self, pid, osci, expid=None):
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "DIGITAL_OCEAN", \
                           num_credentials = 1, \
                           use_ssh_keys = True, \
                           use_volumes = True, \
                           tldomain = "digitalocean.com", \
                          )
Ejemplo n.º 5
0
 def __init__ (self, pid, osci, expid = None) :
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           description = "VCLOUD", \
                           num_credentials = 1, \ # '1' is for the password. The username is assumed to be the first parameter and is included by default as 'tenant' below.
                           use_sizes = False,
                           use_locations = False,
                           verify_ssl = False
                           extra = {"foo" : "bar"} \
                          )
Ejemplo n.º 6
0
 def __init__ (self, pid, osci, expid = None) :
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           description = "DIGITAL_OCEAN", \
                           num_credentials = 1, \
                           use_ssh_keys = True, \
                           use_cloud_init = True, \
                           use_volumes = True, \
                           tldomain = "digitalocean.com", \
                           extra = {"private_networking" : True} \
                          )
Ejemplo n.º 7
0
 def __init__(self, pid, osci, expid=None):
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           description = "DIGITAL_OCEAN", \
                           num_credentials = 1, \
                           use_ssh_keys = True, \
                           use_cloud_init = True, \
                           use_volumes = True, \
                           tldomain = "digitalocean.com", \
                           extra = {"private_networking" : True} \
                          )
Ejemplo n.º 8
0
 def __init__ (self, pid, osci, expid = None) :
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "AZURE", \
                           num_credentials = 1, \
                           use_ssh_keys = False, \
                           use_volumes = False, \
                           use_services = True, \
                           use_get_image = False, \
                           tldomain = "azure.com" \
                          )
Ejemplo n.º 9
0
 def __init__(self, pid, osci, expid=None):
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "AZURE", \
                           num_credentials = 1, \
                           use_ssh_keys = False, \
                           use_volumes = False, \
                           use_services = True, \
                           use_get_image = False, \
                           tldomain = "azure.com" \
                          )
Ejemplo n.º 10
0
 def __init__ (self, pid, osci, expid = None) :
     LibcloudCmds.__init__(self, pid, osci, expid = expid, \
                           provider = "OPENSTACK", \
                           num_credentials = 1, \
                           use_ssh_keys = True, \
                           use_volumes = True, \
                           use_networks = True, \
                           use_security_groups = True, \
                           use_floating_ips = True, \
                           use_public_ips = False, \
                           use_get_image = True, \
                           verify_ssl = False, \
                           tldomain = "openstack.org" \
                          )