updating azure compute mgmt package to the latest version (#51259)

pull/51271/head
Zim Kalinowski 6 years ago committed by GitHub
parent de542394af
commit db37be66fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,7 +57,7 @@ AZURE_API_PROFILES = {
'ComputeManagementClient': dict( 'ComputeManagementClient': dict(
default_api_version='2018-10-01', default_api_version='2018-10-01',
resource_skus='2018-10-01', resource_skus='2018-10-01',
disks='2018-10-01', disks='2018-06-01',
snapshots='2018-10-01', snapshots='2018-10-01',
virtual_machine_run_commands='2018-10-01' virtual_machine_run_commands='2018-10-01'
), ),
@ -204,7 +204,7 @@ AZURE_PKG_VERSIONS = {
}, },
'ComputeManagementClient': { 'ComputeManagementClient': {
'package_name': 'compute', 'package_name': 'compute',
'expected_version': '4.3.1' 'expected_version': '4.4.0'
}, },
'ContainerInstanceManagementClient': { 'ContainerInstanceManagementClient': {
'package_name': 'containerinstance', 'package_name': 'containerinstance',
@ -826,13 +826,13 @@ class AzureRMModuleBase(object):
if not self._compute_client: if not self._compute_client:
self._compute_client = self.get_mgmt_svc_client(ComputeManagementClient, self._compute_client = self.get_mgmt_svc_client(ComputeManagementClient,
base_url=self._cloud_environment.endpoints.resource_manager, base_url=self._cloud_environment.endpoints.resource_manager,
api_version='2017-03-30') api_version='2018-06-01')
return self._compute_client return self._compute_client
@property @property
def compute_models(self): def compute_models(self):
self.log("Getting compute models") self.log("Getting compute models")
return ComputeManagementClient.models("2017-03-30") return ComputeManagementClient.models("2018-06-01")
@property @property
def dns_client(self): def dns_client(self):

@ -169,11 +169,11 @@ def managed_disk_to_dict(managed_disk):
name=managed_disk.name, name=managed_disk.name,
location=managed_disk.location, location=managed_disk.location,
tags=managed_disk.tags, tags=managed_disk.tags,
create_option=create_data.create_option.value.lower(), create_option=create_data.create_option.lower(),
source_uri=create_data.source_uri or create_data.source_resource_id, source_uri=create_data.source_uri or create_data.source_resource_id,
disk_size_gb=managed_disk.disk_size_gb, disk_size_gb=managed_disk.disk_size_gb,
os_type=managed_disk.os_type.value.lower() if managed_disk.os_type else None, os_type=managed_disk.os_type.lower() if managed_disk.os_type else None,
storage_account_type=managed_disk.sku.name.value if managed_disk.sku else None, storage_account_type=managed_disk.sku.name if managed_disk.sku else None,
managed_by=managed_disk.managed_by managed_by=managed_disk.managed_by
) )

@ -129,11 +129,11 @@ def managed_disk_to_dict(managed_disk):
name=managed_disk.name, name=managed_disk.name,
location=managed_disk.location, location=managed_disk.location,
tags=managed_disk.tags, tags=managed_disk.tags,
create_option=create_data.create_option.value.lower(), create_option=create_data.create_option.lower(),
source_uri=create_data.source_uri or create_data.source_resource_id, source_uri=create_data.source_uri or create_data.source_resource_id,
disk_size_gb=managed_disk.disk_size_gb, disk_size_gb=managed_disk.disk_size_gb,
os_type=managed_disk.os_type.value.lower() if managed_disk.os_type else None, os_type=managed_disk.os_type.lower() if managed_disk.os_type else None,
storage_account_type=managed_disk.sku.name.value if managed_disk.sku else None, storage_account_type=managed_disk.sku.name if managed_disk.sku else None,
managed_by=managed_disk.managed_by managed_by=managed_disk.managed_by
) )

@ -5,7 +5,7 @@ azure-cli-nspkg==3.0.2
azure-common==1.1.11 azure-common==1.1.11
azure-mgmt-batch==4.1.0 azure-mgmt-batch==4.1.0
azure-mgmt-cdn==3.0.0 azure-mgmt-cdn==3.0.0
azure-mgmt-compute==4.3.1 azure-mgmt-compute==4.4.0
azure-mgmt-containerinstance==0.4.0 azure-mgmt-containerinstance==0.4.0
azure-mgmt-containerregistry==2.0.0 azure-mgmt-containerregistry==2.0.0
azure-mgmt-containerservice==4.2.2 azure-mgmt-containerservice==4.2.2

@ -5,7 +5,7 @@ azure-cli-nspkg==3.0.2
azure-common==1.1.11 azure-common==1.1.11
azure-mgmt-batch==4.1.0 azure-mgmt-batch==4.1.0
azure-mgmt-cdn==3.0.0 azure-mgmt-cdn==3.0.0
azure-mgmt-compute==4.3.1 azure-mgmt-compute==4.4.0
azure-mgmt-containerinstance==0.4.0 azure-mgmt-containerinstance==0.4.0
azure-mgmt-containerregistry==2.0.0 azure-mgmt-containerregistry==2.0.0
azure-mgmt-containerservice==4.2.2 azure-mgmt-containerservice==4.2.2

Loading…
Cancel
Save