Skip to content

Commit 26b9b31

Browse files
AutorestCIlmazuel
authored andcommitted
[AutoPR] compute/resource-manager (#2982)
* Generated from e5a65ec23a4d0a2102a5a0f1a56ab71672e2730f (#2980) Revert "updated description of sku name values (#3467)" This reverts commit aa50b23. * [AutoPR compute/resource-manager] [Compute] add zone and rolling upgrade. (#3148) * Generated from 8f16e79b245d1c099de8ba5252eee3950d22f3c9 Update compute.json and disk.json for some issues and add zone and rolling upgrade. * Generated from 88a505b7a2de9272891f77bbf24c4eeeb34aa0d2 Update compute.json and disk.json for some issues and add zone and rolling upgrade. * Generated from ad08836a41b5c4ea212ffcd06af67ba8eb6a3fdb (#3195) RDBug 13056055 Public documentation should be updated to reflect that VMSizesController.GetVMSizes api is deprecated * Generated from 8741aed33b77989e144e30c2229e44db19aa1265 (#3223) Added the replica count change. * Generated from 8075c104d20105cdae5434e5d808f827dd9f19de (#3278) Fix description for disk size * Compute 4.1.0 * Packaging update of azure-mgmt-compute * [AutoPR compute/resource-manager] Swagger spec for disk.json 2018-06 (#3310) * Generated from f128ff0876f538e2cba5b92988bc54b3c041b623 Update readme.md * Packaging update of azure-mgmt-compute * Change default API * Generated from c5cdad53036869893fca1fc5c7658a1dd85e3e59 deleting duplicates * Fix tests * ChangeLog
1 parent 07a9108 commit 26b9b31

File tree

142 files changed

+4114
-720
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+4114
-720
lines changed

azure-mgmt-compute/HISTORY.rst

+19
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
Release History
44
===============
55

6+
4.1.0 (2018-09-12)
7+
++++++++++++++++++
8+
9+
2018-06-01 for 'disks' and 'snapshots' (new default)
10+
11+
**Features**
12+
13+
- Model DiskUpdate has a new parameter disk_iops_read_write
14+
- Model DiskUpdate has a new parameter disk_mbps_read_write
15+
- Model VirtualMachineUpdate has a new parameter additional_capabilities (ultraSSDEnabled attribute)
16+
- Model VirtualMachineScaleSetVM has a new parameter additional_capabilities (ultraSSDEnabled attribute)
17+
- Model VirtualMachineScaleSetPublicIPAddressConfiguration has a new parameter public_ip_prefix
18+
- Model Disk has a new parameter disk_iops_read_write
19+
- Model Disk has a new parameter disk_mbps_read_write
20+
- Model VirtualMachineScaleSetVMProfile has a new parameter additional_capabilities (ultraSSDEnabled attribute)
21+
- Model VirtualMachine has a new parameter additional_capabilities (ultraSSDEnabled attribute)
22+
- Added operation VirtualMachineScaleSetRollingUpgradesOperations.start_extension_upgrade
23+
- New enum value UltraSSD_LRS for StorageAccountTypes
24+
625
4.0.1 (2018-07-23)
726
++++++++++++++++++
827

azure-mgmt-compute/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is the Microsoft Azure Compute Management Client Library.
66
Azure Resource Manager (ARM) is the next generation of management APIs that
77
replace the old Azure Service Management (ASM).
88

9-
This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.
9+
This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.
1010

1111
For the older Azure Service Management (ASM) libraries, see
1212
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.

azure-mgmt-compute/azure/mgmt/compute/compute_management_client.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ class ComputeManagementClient(MultiApiClientMixin, SDKClient):
8484
_PROFILE_TAG = "azure.mgmt.compute.ComputeManagementClient"
8585
LATEST_PROFILE = ProfileDefinition({
8686
_PROFILE_TAG: {
87-
'disks': '2018-04-01',
8887
'resource_skus': '2017-09-01',
89-
'snapshots': '2018-04-01',
9088
None: DEFAULT_API_VERSION
9189
}},
9290
_PROFILE_TAG + " latest"
@@ -145,7 +143,7 @@ def models(cls, api_version=DEFAULT_API_VERSION):
145143
from .v2018_06_01 import models
146144
return models
147145
raise NotImplementedError("APIVersion {} is not available".format(api_version))
148-
146+
149147
@property
150148
def availability_sets(self):
151149
"""Instance depends on the API version:
@@ -184,6 +182,7 @@ def disks(self):
184182
* 2016-04-30-preview: :class:`DisksOperations<azure.mgmt.compute.v2016_04_30_preview.operations.DisksOperations>`
185183
* 2017-03-30: :class:`DisksOperations<azure.mgmt.compute.v2017_03_30.operations.DisksOperations>`
186184
* 2018-04-01: :class:`DisksOperations<azure.mgmt.compute.v2018_04_01.operations.DisksOperations>`
185+
* 2018-06-01: :class:`DisksOperations<azure.mgmt.compute.v2018_06_01.operations.DisksOperations>`
187186
"""
188187
api_version = self._get_api_version('disks')
189188
if api_version == '2016-04-30-preview':
@@ -192,6 +191,8 @@ def disks(self):
192191
from .v2017_03_30.operations import DisksOperations as OperationClass
193192
elif api_version == '2018-04-01':
194193
from .v2018_04_01.operations import DisksOperations as OperationClass
194+
elif api_version == '2018-06-01':
195+
from .v2018_06_01.operations import DisksOperations as OperationClass
195196
else:
196197
raise NotImplementedError("APIVersion {} is not available".format(api_version))
197198
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -321,6 +322,7 @@ def snapshots(self):
321322
* 2016-04-30-preview: :class:`SnapshotsOperations<azure.mgmt.compute.v2016_04_30_preview.operations.SnapshotsOperations>`
322323
* 2017-03-30: :class:`SnapshotsOperations<azure.mgmt.compute.v2017_03_30.operations.SnapshotsOperations>`
323324
* 2018-04-01: :class:`SnapshotsOperations<azure.mgmt.compute.v2018_04_01.operations.SnapshotsOperations>`
325+
* 2018-06-01: :class:`SnapshotsOperations<azure.mgmt.compute.v2018_06_01.operations.SnapshotsOperations>`
324326
"""
325327
api_version = self._get_api_version('snapshots')
326328
if api_version == '2016-04-30-preview':
@@ -329,6 +331,8 @@ def snapshots(self):
329331
from .v2017_03_30.operations import SnapshotsOperations as OperationClass
330332
elif api_version == '2018-04-01':
331333
from .v2018_04_01.operations import SnapshotsOperations as OperationClass
334+
elif api_version == '2018-06-01':
335+
from .v2018_06_01.operations import SnapshotsOperations as OperationClass
332336
else:
333337
raise NotImplementedError("APIVersion {} is not available".format(api_version))
334338
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))

azure-mgmt-compute/azure/mgmt/compute/models.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import warnings
88

99
from .v2017_09_01.models import *
10-
from .v2018_04_01.models import *
1110
from .v2018_06_01.models import * # Note that this line is overriding some models of 2018-04-01. See link below for details.
1211

1312
warnings.warn("Import models from this file is deprecated. See https://aka.ms/pysdkmodels",

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DataDisk(Model):
4646
:type create_option: str or
4747
~azure.mgmt.compute.v2015_06_15.models.DiskCreateOptionTypes
4848
:param disk_size_gb: Specifies the size of an empty data disk in
49-
gigabytes. This element can be used to overwrite the name of the disk in a
49+
gigabytes. This element can be used to overwrite the size of the disk in a
5050
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5151
:type disk_size_gb: int
5252
"""

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DataDisk(Model):
4646
:type create_option: str or
4747
~azure.mgmt.compute.v2015_06_15.models.DiskCreateOptionTypes
4848
:param disk_size_gb: Specifies the size of an empty data disk in
49-
gigabytes. This element can be used to overwrite the name of the disk in a
49+
gigabytes. This element can be used to overwrite the size of the disk in a
5050
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5151
:type disk_size_gb: int
5252
"""

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/os_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OSDisk(Model):
5555
:type create_option: str or
5656
~azure.mgmt.compute.v2015_06_15.models.DiskCreateOptionTypes
5757
:param disk_size_gb: Specifies the size of an empty data disk in
58-
gigabytes. This element can be used to overwrite the name of the disk in a
58+
gigabytes. This element can be used to overwrite the size of the disk in a
5959
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6060
:type disk_size_gb: int
6161
"""

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/os_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OSDisk(Model):
5555
:type create_option: str or
5656
~azure.mgmt.compute.v2015_06_15.models.DiskCreateOptionTypes
5757
:param disk_size_gb: Specifies the size of an empty data disk in
58-
gigabytes. This element can be used to overwrite the name of the disk in a
58+
gigabytes. This element can be used to overwrite the size of the disk in a
5959
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6060
:type disk_size_gb: int
6161
"""

azure-mgmt-compute/azure/mgmt/compute/v2016_03_30/models/data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DataDisk(Model):
4646
:type create_option: str or
4747
~azure.mgmt.compute.v2016_03_30.models.DiskCreateOptionTypes
4848
:param disk_size_gb: Specifies the size of an empty data disk in
49-
gigabytes. This element can be used to overwrite the name of the disk in a
49+
gigabytes. This element can be used to overwrite the size of the disk in a
5050
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5151
:type disk_size_gb: int
5252
"""

azure-mgmt-compute/azure/mgmt/compute/v2016_03_30/models/data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DataDisk(Model):
4646
:type create_option: str or
4747
~azure.mgmt.compute.v2016_03_30.models.DiskCreateOptionTypes
4848
:param disk_size_gb: Specifies the size of an empty data disk in
49-
gigabytes. This element can be used to overwrite the name of the disk in a
49+
gigabytes. This element can be used to overwrite the size of the disk in a
5050
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5151
:type disk_size_gb: int
5252
"""

azure-mgmt-compute/azure/mgmt/compute/v2016_03_30/models/os_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OSDisk(Model):
5555
:type create_option: str or
5656
~azure.mgmt.compute.v2016_03_30.models.DiskCreateOptionTypes
5757
:param disk_size_gb: Specifies the size of an empty data disk in
58-
gigabytes. This element can be used to overwrite the name of the disk in a
58+
gigabytes. This element can be used to overwrite the size of the disk in a
5959
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6060
:type disk_size_gb: int
6161
"""

azure-mgmt-compute/azure/mgmt/compute/v2016_03_30/models/os_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OSDisk(Model):
5555
:type create_option: str or
5656
~azure.mgmt.compute.v2016_03_30.models.DiskCreateOptionTypes
5757
:param disk_size_gb: Specifies the size of an empty data disk in
58-
gigabytes. This element can be used to overwrite the name of the disk in a
58+
gigabytes. This element can be used to overwrite the size of the disk in a
5959
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6060
:type disk_size_gb: int
6161
"""

azure-mgmt-compute/azure/mgmt/compute/v2016_04_30_preview/models/data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class DataDisk(Model):
4848
:type create_option: str or
4949
~azure.mgmt.compute.v2016_04_30_preview.models.DiskCreateOptionTypes
5050
:param disk_size_gb: Specifies the size of an empty data disk in
51-
gigabytes. This element can be used to overwrite the name of the disk in a
51+
gigabytes. This element can be used to overwrite the size of the disk in a
5252
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5353
:type disk_size_gb: int
5454
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2016_04_30_preview/models/data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class DataDisk(Model):
4848
:type create_option: str or
4949
~azure.mgmt.compute.v2016_04_30_preview.models.DiskCreateOptionTypes
5050
:param disk_size_gb: Specifies the size of an empty data disk in
51-
gigabytes. This element can be used to overwrite the name of the disk in a
51+
gigabytes. This element can be used to overwrite the size of the disk in a
5252
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5353
:type disk_size_gb: int
5454
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2016_04_30_preview/models/os_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class OSDisk(Model):
5757
:type create_option: str or
5858
~azure.mgmt.compute.v2016_04_30_preview.models.DiskCreateOptionTypes
5959
:param disk_size_gb: Specifies the size of an empty data disk in
60-
gigabytes. This element can be used to overwrite the name of the disk in a
60+
gigabytes. This element can be used to overwrite the size of the disk in a
6161
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6262
:type disk_size_gb: int
6363
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2016_04_30_preview/models/os_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class OSDisk(Model):
5757
:type create_option: str or
5858
~azure.mgmt.compute.v2016_04_30_preview.models.DiskCreateOptionTypes
5959
:param disk_size_gb: Specifies the size of an empty data disk in
60-
gigabytes. This element can be used to overwrite the name of the disk in a
60+
gigabytes. This element can be used to overwrite the size of the disk in a
6161
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6262
:type disk_size_gb: int
6363
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2016_04_30_preview/models/virtual_machine_scale_set_data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class VirtualMachineScaleSetDataDisk(Model):
3434
:type create_option: str or
3535
~azure.mgmt.compute.v2016_04_30_preview.models.DiskCreateOptionTypes
3636
:param disk_size_gb: Specifies the size of an empty data disk in
37-
gigabytes. This element can be used to overwrite the name of the disk in a
37+
gigabytes. This element can be used to overwrite the size of the disk in a
3838
virtual machine image. <br><br> This value cannot be larger than 1023 GB
3939
:type disk_size_gb: int
4040
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2016_04_30_preview/models/virtual_machine_scale_set_data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class VirtualMachineScaleSetDataDisk(Model):
3434
:type create_option: str or
3535
~azure.mgmt.compute.v2016_04_30_preview.models.DiskCreateOptionTypes
3636
:param disk_size_gb: Specifies the size of an empty data disk in
37-
gigabytes. This element can be used to overwrite the name of the disk in a
37+
gigabytes. This element can be used to overwrite the size of the disk in a
3838
virtual machine image. <br><br> This value cannot be larger than 1023 GB
3939
:type disk_size_gb: int
4040
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_03_30/models/data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DataDisk(Model):
4646
:type create_option: str or
4747
~azure.mgmt.compute.v2017_03_30.models.DiskCreateOptionTypes
4848
:param disk_size_gb: Specifies the size of an empty data disk in
49-
gigabytes. This element can be used to overwrite the name of the disk in a
49+
gigabytes. This element can be used to overwrite the size of the disk in a
5050
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5151
:type disk_size_gb: int
5252
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_03_30/models/data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class DataDisk(Model):
4646
:type create_option: str or
4747
~azure.mgmt.compute.v2017_03_30.models.DiskCreateOptionTypes
4848
:param disk_size_gb: Specifies the size of an empty data disk in
49-
gigabytes. This element can be used to overwrite the name of the disk in a
49+
gigabytes. This element can be used to overwrite the size of the disk in a
5050
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5151
:type disk_size_gb: int
5252
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_03_30/models/os_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OSDisk(Model):
5555
:type create_option: str or
5656
~azure.mgmt.compute.v2017_03_30.models.DiskCreateOptionTypes
5757
:param disk_size_gb: Specifies the size of an empty data disk in
58-
gigabytes. This element can be used to overwrite the name of the disk in a
58+
gigabytes. This element can be used to overwrite the size of the disk in a
5959
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6060
:type disk_size_gb: int
6161
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_03_30/models/os_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class OSDisk(Model):
5555
:type create_option: str or
5656
~azure.mgmt.compute.v2017_03_30.models.DiskCreateOptionTypes
5757
:param disk_size_gb: Specifies the size of an empty data disk in
58-
gigabytes. This element can be used to overwrite the name of the disk in a
58+
gigabytes. This element can be used to overwrite the size of the disk in a
5959
virtual machine image. <br><br> This value cannot be larger than 1023 GB
6060
:type disk_size_gb: int
6161
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_03_30/models/virtual_machine_scale_set_data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class VirtualMachineScaleSetDataDisk(Model):
3333
:type create_option: str or
3434
~azure.mgmt.compute.v2017_03_30.models.DiskCreateOptionTypes
3535
:param disk_size_gb: Specifies the size of an empty data disk in
36-
gigabytes. This element can be used to overwrite the name of the disk in a
36+
gigabytes. This element can be used to overwrite the size of the disk in a
3737
virtual machine image. <br><br> This value cannot be larger than 1023 GB
3838
:type disk_size_gb: int
3939
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_03_30/models/virtual_machine_scale_set_data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class VirtualMachineScaleSetDataDisk(Model):
3333
:type create_option: str or
3434
~azure.mgmt.compute.v2017_03_30.models.DiskCreateOptionTypes
3535
:param disk_size_gb: Specifies the size of an empty data disk in
36-
gigabytes. This element can be used to overwrite the name of the disk in a
36+
gigabytes. This element can be used to overwrite the size of the disk in a
3737
virtual machine image. <br><br> This value cannot be larger than 1023 GB
3838
:type disk_size_gb: int
3939
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_12_01/models/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@
6363
from .virtual_machine_identity_py3 import VirtualMachineIdentity
6464
from .maintenance_redeploy_status_py3 import MaintenanceRedeployStatus
6565
from .virtual_machine_instance_view_py3 import VirtualMachineInstanceView
66-
from .virtual_machine_health_status_py3 import VirtualMachineHealthStatus
67-
from .virtual_machine_scale_set_vm_instance_view_py3 import VirtualMachineScaleSetVMInstanceView
6866
from .virtual_machine_py3 import VirtualMachine
6967
from .virtual_machine_update_py3 import VirtualMachineUpdate
7068
from .auto_os_upgrade_policy_py3 import AutoOSUpgradePolicy
@@ -117,6 +115,8 @@
117115
from .rolling_upgrade_progress_info_py3 import RollingUpgradeProgressInfo
118116
from .upgrade_operation_historical_status_info_properties_py3 import UpgradeOperationHistoricalStatusInfoProperties
119117
from .upgrade_operation_historical_status_info_py3 import UpgradeOperationHistoricalStatusInfo
118+
from .virtual_machine_health_status_py3 import VirtualMachineHealthStatus
119+
from .virtual_machine_scale_set_vm_instance_view_py3 import VirtualMachineScaleSetVMInstanceView
120120
from .virtual_machine_scale_set_vm_py3 import VirtualMachineScaleSetVM
121121
from .rolling_upgrade_running_status_py3 import RollingUpgradeRunningStatus
122122
from .rolling_upgrade_status_info_py3 import RollingUpgradeStatusInfo
@@ -191,8 +191,6 @@
191191
from .virtual_machine_identity import VirtualMachineIdentity
192192
from .maintenance_redeploy_status import MaintenanceRedeployStatus
193193
from .virtual_machine_instance_view import VirtualMachineInstanceView
194-
from .virtual_machine_health_status import VirtualMachineHealthStatus
195-
from .virtual_machine_scale_set_vm_instance_view import VirtualMachineScaleSetVMInstanceView
196194
from .virtual_machine import VirtualMachine
197195
from .virtual_machine_update import VirtualMachineUpdate
198196
from .auto_os_upgrade_policy import AutoOSUpgradePolicy
@@ -245,6 +243,8 @@
245243
from .rolling_upgrade_progress_info import RollingUpgradeProgressInfo
246244
from .upgrade_operation_historical_status_info_properties import UpgradeOperationHistoricalStatusInfoProperties
247245
from .upgrade_operation_historical_status_info import UpgradeOperationHistoricalStatusInfo
246+
from .virtual_machine_health_status import VirtualMachineHealthStatus
247+
from .virtual_machine_scale_set_vm_instance_view import VirtualMachineScaleSetVMInstanceView
248248
from .virtual_machine_scale_set_vm import VirtualMachineScaleSetVM
249249
from .rolling_upgrade_running_status import RollingUpgradeRunningStatus
250250
from .rolling_upgrade_status_info import RollingUpgradeStatusInfo
@@ -358,8 +358,6 @@
358358
'VirtualMachineIdentity',
359359
'MaintenanceRedeployStatus',
360360
'VirtualMachineInstanceView',
361-
'VirtualMachineHealthStatus',
362-
'VirtualMachineScaleSetVMInstanceView',
363361
'VirtualMachine',
364362
'VirtualMachineUpdate',
365363
'AutoOSUpgradePolicy',
@@ -412,6 +410,8 @@
412410
'RollingUpgradeProgressInfo',
413411
'UpgradeOperationHistoricalStatusInfoProperties',
414412
'UpgradeOperationHistoricalStatusInfo',
413+
'VirtualMachineHealthStatus',
414+
'VirtualMachineScaleSetVMInstanceView',
415415
'VirtualMachineScaleSetVM',
416416
'RollingUpgradeRunningStatus',
417417
'RollingUpgradeStatusInfo',

azure-mgmt-compute/azure/mgmt/compute/v2017_12_01/models/data_disk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class DataDisk(Model):
4949
:type create_option: str or
5050
~azure.mgmt.compute.v2017_12_01.models.DiskCreateOptionTypes
5151
:param disk_size_gb: Specifies the size of an empty data disk in
52-
gigabytes. This element can be used to overwrite the name of the disk in a
52+
gigabytes. This element can be used to overwrite the size of the disk in a
5353
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5454
:type disk_size_gb: int
5555
:param managed_disk: The managed disk parameters.

azure-mgmt-compute/azure/mgmt/compute/v2017_12_01/models/data_disk_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class DataDisk(Model):
4949
:type create_option: str or
5050
~azure.mgmt.compute.v2017_12_01.models.DiskCreateOptionTypes
5151
:param disk_size_gb: Specifies the size of an empty data disk in
52-
gigabytes. This element can be used to overwrite the name of the disk in a
52+
gigabytes. This element can be used to overwrite the size of the disk in a
5353
virtual machine image. <br><br> This value cannot be larger than 1023 GB
5454
:type disk_size_gb: int
5555
:param managed_disk: The managed disk parameters.

0 commit comments

Comments
 (0)