diff --git a/src/scvmm/HISTORY.rst b/src/scvmm/HISTORY.rst index 7f9b6b6a9f9..9e1e652d814 100644 --- a/src/scvmm/HISTORY.rst +++ b/src/scvmm/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.1.1 +++++++ +* [Hotfix] Fixed VMMServer connect command parameter error. + 1.1.0 ++++++ * Security upgrades and fixes. diff --git a/src/scvmm/azext_scvmm/custom.py b/src/scvmm/azext_scvmm/custom.py index b411f419e72..b86abe11838 100644 --- a/src/scvmm/azext_scvmm/custom.py +++ b/src/scvmm/azext_scvmm/custom.py @@ -69,6 +69,7 @@ VirtualNetwork, VirtualNetworkProperties, VmmServer, + VmmServerProperties, VmmCredential, AllocationMethod, NetworkInterface, @@ -207,10 +208,12 @@ def connect_vmmserver( vmmserver = VmmServer( location=location, extended_location=get_extended_location(custom_location_id), - fqdn=fqdn, - port=port, - credentials=username_creds, tags=tags, + properties=VmmServerProperties( + fqdn=fqdn, + credentials=username_creds, + port=port, + ), ) return sdk_no_wait( diff --git a/src/scvmm/setup.py b/src/scvmm/setup.py index 121238f8648..f81b091facd 100644 --- a/src/scvmm/setup.py +++ b/src/scvmm/setup.py @@ -16,7 +16,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") -VERSION = '1.1.0' +VERSION = '1.1.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers