Skip to content

Commit 682885e

Browse files
AutorestCIlmazuel
authored andcommitted
[AutoPR] compute/resource-manager (Azure#4151)
* [AutoPR compute/resource-manager] Update ComputerName definition for OsProfile (Azure#4130) * Generated from 62657d7a76ec36b1fdae6a0b6ee2676e1a80ead1 Update ComputerName description * Generated from dadaa318ccc39f4341a01928027ef10ad7c3db90 ComputerName definition update on previous version of stable swagger file * [AutoPR compute/resource-manager] added link to disk properties for UltraSSD values (Azure#4287) * Generated from 61e1a2c597d6594dea7e25748088fb131bb7ec0f added link to disk properties for UltraSSD values * Packaging update of azure-mgmt-compute * Generated from c4a48f49fc7042734e1375fbcd7a6dc2e03f879a (Azure#4296) Update compute.json Add ProtectFromScaleIn property to VMScaleSetVM properties * Generated from 9c74a388fce9a2d27a83921d6738321ac015aaaf (Azure#4312) fixes for reference documentation * [AutoPR compute/resource-manager] update description. (Azure#4499) * Generated from f31198b9d79d5009fd45c2862571e94dc57f24ef update description. * Packaging update of azure-mgmt-compute * Generated from 4e512832f57a270ccf072eca98e8288b451a0be2 (Azure#4667) Add Disk 2018-09 to Python * [AutoPR compute/resource-manager] Remove deprecated property from VMScaleSetVM properties (Azure#4514) * Generated from dd6ace8d622d857e4c375486ca24f365aa8fd1d3 Remove deprecated property from VMScaleSetVM properties * Packaging update of azure-mgmt-compute * Generated from dd6ace8d622d857e4c375486ca24f365aa8fd1d3 Remove deprecated property from VMScaleSetVM properties * Update to latest API version * Record tests * 4.5.0 * ChangeLog fix
1 parent 2a1223d commit 682885e

File tree

97 files changed

+4496
-1057
lines changed

Some content is hidden

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

97 files changed

+4496
-1057
lines changed

azure-mgmt-compute/HISTORY.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
Release History
44
===============
55

6+
4.5.0 (2019-03-28)
7+
++++++++++++++++++
8+
9+
**New version of Managed Disks**
10+
11+
- Disks/Snapshots have a new optional property HyperVGeneration which may be set to V1 or V2.
12+
- EncryptionSettings on a disk are now a collection instead of a single value. This allows multiple volumes on an encrypted disk.
13+
- There is a new CreateOption (Upload) for disks. To upload disks customers
14+
15+
- PUT a disk with CreateOption.Upload.
16+
- Use GrantAccess API with AccessLevel.Write to a get a write SAS to the disk. This is a new access level and it can only be used when uploading to a new disk. Customers can then use storage API to upload the bits for the disk.
17+
- There are new DiskStates (DiskState.ReadyToUpload and DiskState.ActiveUpload) that are associated with the upload process.
18+
619
4.4.0 (2018-01-04)
720
++++++++++++++++++
821

azure-mgmt-compute/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
recursive-include tests *.py *.yaml
12
include *.rst
23
include azure/__init__.py
34
include azure/mgmt/__init__.py

azure-mgmt-compute/README.rst

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,6 @@ For the older Azure Service Management (ASM) libraries, see
1414
For a more complete set of Azure libraries, see the `azure <https://pypi.python.org/pypi/azure>`__ bundle package.
1515

1616

17-
Compatibility
18-
=============
19-
20-
**IMPORTANT**: If you have an earlier version of the azure package
21-
(version < 1.0), you should uninstall it before installing this package.
22-
23-
You can check the version using pip:
24-
25-
.. code:: shell
26-
27-
pip freeze
28-
29-
If you see azure==0.11.0 (or any version below 1.0), uninstall it first:
30-
31-
.. code:: shell
32-
33-
pip uninstall azure
34-
35-
3617
Usage
3718
=====
3819

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

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ class ComputeManagementClient(MultiApiClientMixin, SDKClient):
8585
LATEST_PROFILE = ProfileDefinition({
8686
_PROFILE_TAG: {
8787
'resource_skus': '2017-09-01',
88-
'disks': '2018-06-01',
89-
'snapshots': '2018-06-01',
88+
'disks': '2018-09-30',
89+
'snapshots': '2018-09-30',
9090
None: DEFAULT_API_VERSION
9191
}},
9292
_PROFILE_TAG + " latest"
@@ -119,6 +119,7 @@ def models(cls, api_version=DEFAULT_API_VERSION):
119119
* 2017-12-01: :mod:`v2017_12_01.models<azure.mgmt.compute.v2017_12_01.models>`
120120
* 2018-04-01: :mod:`v2018_04_01.models<azure.mgmt.compute.v2018_04_01.models>`
121121
* 2018-06-01: :mod:`v2018_06_01.models<azure.mgmt.compute.v2018_06_01.models>`
122+
* 2018-09-30: :mod:`v2018_09_30.models<azure.mgmt.compute.v2018_09_30.models>`
122123
* 2018-10-01: :mod:`v2018_10_01.models<azure.mgmt.compute.v2018_10_01.models>`
123124
"""
124125
if api_version == '2015-06-15':
@@ -145,6 +146,9 @@ def models(cls, api_version=DEFAULT_API_VERSION):
145146
elif api_version == '2018-06-01':
146147
from .v2018_06_01 import models
147148
return models
149+
elif api_version == '2018-09-30':
150+
from .v2018_09_30 import models
151+
return models
148152
elif api_version == '2018-10-01':
149153
from .v2018_10_01 import models
150154
return models
@@ -192,6 +196,7 @@ def disks(self):
192196
* 2017-03-30: :class:`DisksOperations<azure.mgmt.compute.v2017_03_30.operations.DisksOperations>`
193197
* 2018-04-01: :class:`DisksOperations<azure.mgmt.compute.v2018_04_01.operations.DisksOperations>`
194198
* 2018-06-01: :class:`DisksOperations<azure.mgmt.compute.v2018_06_01.operations.DisksOperations>`
199+
* 2018-09-30: :class:`DisksOperations<azure.mgmt.compute.v2018_09_30.operations.DisksOperations>`
195200
"""
196201
api_version = self._get_api_version('disks')
197202
if api_version == '2016-04-30-preview':
@@ -202,6 +207,8 @@ def disks(self):
202207
from .v2018_04_01.operations import DisksOperations as OperationClass
203208
elif api_version == '2018-06-01':
204209
from .v2018_06_01.operations import DisksOperations as OperationClass
210+
elif api_version == '2018-09-30':
211+
from .v2018_09_30.operations import DisksOperations as OperationClass
205212
else:
206213
raise NotImplementedError("APIVersion {} is not available".format(api_version))
207214
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
@@ -341,6 +348,7 @@ def snapshots(self):
341348
* 2017-03-30: :class:`SnapshotsOperations<azure.mgmt.compute.v2017_03_30.operations.SnapshotsOperations>`
342349
* 2018-04-01: :class:`SnapshotsOperations<azure.mgmt.compute.v2018_04_01.operations.SnapshotsOperations>`
343350
* 2018-06-01: :class:`SnapshotsOperations<azure.mgmt.compute.v2018_06_01.operations.SnapshotsOperations>`
351+
* 2018-09-30: :class:`SnapshotsOperations<azure.mgmt.compute.v2018_09_30.operations.SnapshotsOperations>`
344352
"""
345353
api_version = self._get_api_version('snapshots')
346354
if api_version == '2016-04-30-preview':
@@ -351,6 +359,8 @@ def snapshots(self):
351359
from .v2018_04_01.operations import SnapshotsOperations as OperationClass
352360
elif api_version == '2018-06-01':
353361
from .v2018_06_01.operations import SnapshotsOperations as OperationClass
362+
elif api_version == '2018-09-30':
363+
from .v2018_09_30.operations import SnapshotsOperations as OperationClass
354364
else:
355365
raise NotImplementedError("APIVersion {} is not available".format(api_version))
356366
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import warnings
88

99
from .v2017_09_01.models import *
10-
from .v2018_06_01.models import *
11-
from .v2018_10_01.models import * # Note that this line is overriding some models of 2018-06-01. See link below for details.
10+
from .v2018_09_01.models import *
11+
from .v2018_10_01.models import * # Note that this line is overriding some models of 2018-09-01. See link below for details.
1212

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

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

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ class HardwareProfile(Model):
2121
<br><br> The available VM sizes depend on region and availability set. For
2222
a list of available sizes use these APIs: <br><br> [List all available
2323
virtual machine sizes in an availability
24-
set](virtualmachines-list-sizes-availability-set.md) <br><br> [List all
25-
available virtual machine sizes in a
26-
region](virtualmachines-list-sizes-region.md) <br><br> [List all available
27-
virtual machine sizes for
28-
resizing](virtualmachines-list-sizes-for-resizing.md). Possible values
29-
include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4',
30-
'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4',
31-
'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', 'Standard_A9',
32-
'Standard_A10', 'Standard_A11', 'Standard_D1', 'Standard_D2',
33-
'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12',
34-
'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2',
35-
'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2',
36-
'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_DS1',
37-
'Standard_DS2', 'Standard_DS3', 'Standard_DS4', 'Standard_DS11',
38-
'Standard_DS12', 'Standard_DS13', 'Standard_DS14', 'Standard_G1',
39-
'Standard_G2', 'Standard_G3', 'Standard_G4', 'Standard_G5',
40-
'Standard_GS1', 'Standard_GS2', 'Standard_GS3', 'Standard_GS4',
41-
'Standard_GS5'
24+
set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes)
25+
<br><br> [List all available virtual machine sizes in a
26+
region](https://docs.microsoft.com/rest/api/compute/virtualmachinesizes/list)
27+
<br><br> [List all available virtual machine sizes for
28+
resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes).
29+
Possible values include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3',
30+
'Basic_A4', 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3',
31+
'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8',
32+
'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_D1',
33+
'Standard_D2', 'Standard_D3', 'Standard_D4', 'Standard_D11',
34+
'Standard_D12', 'Standard_D13', 'Standard_D14', 'Standard_D1_v2',
35+
'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2',
36+
'Standard_D11_v2', 'Standard_D12_v2', 'Standard_D13_v2',
37+
'Standard_D14_v2', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3',
38+
'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13',
39+
'Standard_DS14', 'Standard_G1', 'Standard_G2', 'Standard_G3',
40+
'Standard_G4', 'Standard_G5', 'Standard_GS1', 'Standard_GS2',
41+
'Standard_GS3', 'Standard_GS4', 'Standard_GS5'
4242
:type vm_size: str or
4343
~azure.mgmt.compute.v2015_06_15.models.VirtualMachineSizeTypes
4444
"""

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

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ class HardwareProfile(Model):
2121
<br><br> The available VM sizes depend on region and availability set. For
2222
a list of available sizes use these APIs: <br><br> [List all available
2323
virtual machine sizes in an availability
24-
set](virtualmachines-list-sizes-availability-set.md) <br><br> [List all
25-
available virtual machine sizes in a
26-
region](virtualmachines-list-sizes-region.md) <br><br> [List all available
27-
virtual machine sizes for
28-
resizing](virtualmachines-list-sizes-for-resizing.md). Possible values
29-
include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4',
30-
'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4',
31-
'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', 'Standard_A9',
32-
'Standard_A10', 'Standard_A11', 'Standard_D1', 'Standard_D2',
33-
'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12',
34-
'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2',
35-
'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2',
36-
'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_DS1',
37-
'Standard_DS2', 'Standard_DS3', 'Standard_DS4', 'Standard_DS11',
38-
'Standard_DS12', 'Standard_DS13', 'Standard_DS14', 'Standard_G1',
39-
'Standard_G2', 'Standard_G3', 'Standard_G4', 'Standard_G5',
40-
'Standard_GS1', 'Standard_GS2', 'Standard_GS3', 'Standard_GS4',
41-
'Standard_GS5'
24+
set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes)
25+
<br><br> [List all available virtual machine sizes in a
26+
region](https://docs.microsoft.com/rest/api/compute/virtualmachinesizes/list)
27+
<br><br> [List all available virtual machine sizes for
28+
resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes).
29+
Possible values include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3',
30+
'Basic_A4', 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3',
31+
'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8',
32+
'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_D1',
33+
'Standard_D2', 'Standard_D3', 'Standard_D4', 'Standard_D11',
34+
'Standard_D12', 'Standard_D13', 'Standard_D14', 'Standard_D1_v2',
35+
'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2',
36+
'Standard_D11_v2', 'Standard_D12_v2', 'Standard_D13_v2',
37+
'Standard_D14_v2', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3',
38+
'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13',
39+
'Standard_DS14', 'Standard_G1', 'Standard_G2', 'Standard_G3',
40+
'Standard_G4', 'Standard_G5', 'Standard_GS1', 'Standard_GS2',
41+
'Standard_GS3', 'Standard_GS4', 'Standard_GS5'
4242
:type vm_size: str or
4343
~azure.mgmt.compute.v2015_06_15.models.VirtualMachineSizeTypes
4444
"""

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ class OSProfile(Model):
1616
"""Specifies the operating system settings for the virtual machine.
1717
1818
:param computer_name: Specifies the host OS name of the virtual machine.
19-
<br><br> **Max-length (Windows):** 15 characters <br><br> **Max-length
20-
(Linux):** 64 characters. <br><br> For naming conventions and restrictions
21-
see [Azure infrastructure services implementation
19+
<br><br> This name cannot be updated after the VM is created. <br><br>
20+
**Max-length (Windows):** 15 characters <br><br> **Max-length (Linux):**
21+
64 characters. <br><br> For naming conventions and restrictions see [Azure
22+
infrastructure services implementation
2223
guidelines](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-infrastructure-subscription-accounts-guidelines?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json#1-naming-conventions).
2324
:type computer_name: str
2425
:param admin_username: Specifies the name of the administrator account.

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ class OSProfile(Model):
1616
"""Specifies the operating system settings for the virtual machine.
1717
1818
:param computer_name: Specifies the host OS name of the virtual machine.
19-
<br><br> **Max-length (Windows):** 15 characters <br><br> **Max-length
20-
(Linux):** 64 characters. <br><br> For naming conventions and restrictions
21-
see [Azure infrastructure services implementation
19+
<br><br> This name cannot be updated after the VM is created. <br><br>
20+
**Max-length (Windows):** 15 characters <br><br> **Max-length (Linux):**
21+
64 characters. <br><br> For naming conventions and restrictions see [Azure
22+
infrastructure services implementation
2223
guidelines](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-infrastructure-subscription-accounts-guidelines?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json#1-naming-conventions).
2324
:type computer_name: str
2425
:param admin_username: Specifies the name of the administrator account.

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ class VaultCertificate(Model):
2929
on the Virtual Machine to which the certificate should be added. The
3030
specified certificate store is implicitly in the LocalMachine account.
3131
<br><br>For Linux VMs, the certificate file is placed under the
32-
/var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt
33-
for the X509 certificate file and <UppercaseThumbprint>.prv for private
34-
key. Both of these files are .pem formatted.
32+
/var/lib/waagent directory, with the file name
33+
&lt;UppercaseThumbprint&gt;.crt for the X509 certificate file and
34+
&lt;UppercaseThumbprint&gt;.prv for private key. Both of these files are
35+
.pem formatted.
3536
:type certificate_store: str
3637
"""
3738

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ class VaultCertificate(Model):
2929
on the Virtual Machine to which the certificate should be added. The
3030
specified certificate store is implicitly in the LocalMachine account.
3131
<br><br>For Linux VMs, the certificate file is placed under the
32-
/var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt
33-
for the X509 certificate file and <UppercaseThumbprint>.prv for private
34-
key. Both of these files are .pem formatted.
32+
/var/lib/waagent directory, with the file name
33+
&lt;UppercaseThumbprint&gt;.crt for the X509 certificate file and
34+
&lt;UppercaseThumbprint&gt;.prv for private key. Both of these files are
35+
.pem formatted.
3536
:type certificate_store: str
3637
"""
3738

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

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,27 @@ class HardwareProfile(Model):
2121
<br><br> The available VM sizes depend on region and availability set. For
2222
a list of available sizes use these APIs: <br><br> [List all available
2323
virtual machine sizes in an availability
24-
set](virtualmachines-list-sizes-availability-set.md) <br><br> [List all
25-
available virtual machine sizes in a
26-
region](virtualmachines-list-sizes-region.md) <br><br> [List all available
27-
virtual machine sizes for
28-
resizing](virtualmachines-list-sizes-for-resizing.md). Possible values
29-
include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4',
30-
'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4',
31-
'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', 'Standard_A9',
32-
'Standard_A10', 'Standard_A11', 'Standard_D1', 'Standard_D2',
33-
'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12',
34-
'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2',
35-
'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2',
36-
'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2',
37-
'Standard_D15_v2', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3',
38-
'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13',
39-
'Standard_DS14', 'Standard_DS1_v2', 'Standard_DS2_v2', 'Standard_DS3_v2',
40-
'Standard_DS4_v2', 'Standard_DS5_v2', 'Standard_DS11_v2',
41-
'Standard_DS12_v2', 'Standard_DS13_v2', 'Standard_DS14_v2',
42-
'Standard_DS15_v2', 'Standard_G1', 'Standard_G2', 'Standard_G3',
43-
'Standard_G4', 'Standard_G5', 'Standard_GS1', 'Standard_GS2',
44-
'Standard_GS3', 'Standard_GS4', 'Standard_GS5'
24+
set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes)
25+
<br><br> [List all available virtual machine sizes in a
26+
region](https://docs.microsoft.com/rest/api/compute/virtualmachinesizes/list)
27+
<br><br> [List all available virtual machine sizes for
28+
resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes).
29+
Possible values include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3',
30+
'Basic_A4', 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3',
31+
'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8',
32+
'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_D1',
33+
'Standard_D2', 'Standard_D3', 'Standard_D4', 'Standard_D11',
34+
'Standard_D12', 'Standard_D13', 'Standard_D14', 'Standard_D1_v2',
35+
'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2',
36+
'Standard_D11_v2', 'Standard_D12_v2', 'Standard_D13_v2',
37+
'Standard_D14_v2', 'Standard_D15_v2', 'Standard_DS1', 'Standard_DS2',
38+
'Standard_DS3', 'Standard_DS4', 'Standard_DS11', 'Standard_DS12',
39+
'Standard_DS13', 'Standard_DS14', 'Standard_DS1_v2', 'Standard_DS2_v2',
40+
'Standard_DS3_v2', 'Standard_DS4_v2', 'Standard_DS5_v2',
41+
'Standard_DS11_v2', 'Standard_DS12_v2', 'Standard_DS13_v2',
42+
'Standard_DS14_v2', 'Standard_DS15_v2', 'Standard_G1', 'Standard_G2',
43+
'Standard_G3', 'Standard_G4', 'Standard_G5', 'Standard_GS1',
44+
'Standard_GS2', 'Standard_GS3', 'Standard_GS4', 'Standard_GS5'
4545
:type vm_size: str or
4646
~azure.mgmt.compute.v2016_03_30.models.VirtualMachineSizeTypes
4747
"""

0 commit comments

Comments
 (0)