cloudstack: add CS_HYPERVISORS constant
This commit is contained in:
parent
0e551e6d46
commit
6c641fb6a8
1 changed files with 12 additions and 0 deletions
|
@ -35,6 +35,18 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
has_lib_cs = False
|
has_lib_cs = False
|
||||||
|
|
||||||
|
CS_HYPERVISORS = [
|
||||||
|
"KVM", "kvm",
|
||||||
|
"VMware", "vmware",
|
||||||
|
"BareMetal", "baremetal",
|
||||||
|
"XenServer", "xenserver",
|
||||||
|
"LXC", "lxc",
|
||||||
|
"HyperV", "hyperv",
|
||||||
|
"UCS", "ucs",
|
||||||
|
"OVM", "ovm",
|
||||||
|
"Simulator", "simulator",
|
||||||
|
]
|
||||||
|
|
||||||
def cs_argument_spec():
|
def cs_argument_spec():
|
||||||
return dict(
|
return dict(
|
||||||
api_key = dict(default=None),
|
api_key = dict(default=None),
|
||||||
|
|
Loading…
Reference in a new issue