This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit bc7b6fe2c1b01d088232ad52d4bc478c9e88cc3c Author: Tomaz Muraus <[email protected]> AuthorDate: Sun Oct 4 20:00:21 2020 +0200 Add missing changes. --- libcloud/compute/providers.py | 2 ++ libcloud/compute/types.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/libcloud/compute/providers.py b/libcloud/compute/providers.py index 8ecd205..7679296 100644 --- a/libcloud/compute/providers.py +++ b/libcloud/compute/providers.py @@ -128,6 +128,8 @@ DRIVERS = { ('libcloud.compute.drivers.outscale', 'OutscaleNodeDriver'), Provider.PROFIT_BRICKS: ('libcloud.compute.drivers.profitbricks', 'ProfitBricksNodeDriver'), + Provider.VSPHERE: + ('libcloud.compute.drivers.vsphere', 'VSphereNodeDriver'), Provider.VULTR: ('libcloud.compute.drivers.vultr', 'VultrNodeDriver'), Provider.AURORACOMPUTE: diff --git a/libcloud/compute/types.py b/libcloud/compute/types.py index 2211f55..c7d3f3c 100644 --- a/libcloud/compute/types.py +++ b/libcloud/compute/types.py @@ -88,6 +88,7 @@ class Provider(Type): :cvar VCL: VCL driver :cvar VCLOUD: vmware vCloud :cvar VPSNET: VPS.net + :cvar VSphere: VSphere driver. :cvar VULTR: vultr driver. """ AZURE = 'azure' @@ -159,6 +160,7 @@ class Provider(Type): VCLOUD = 'vcloud' VOXEL = 'voxel' VPSNET = 'vpsnet' + VSPHERE = 'vsphere' VULTR = 'vultr' # OpenStack based providers
