Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR compute/resource-manager] added link to disk properties for UltraSSD values #4287

Merged
merged 2 commits into from
Feb 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions azure-mgmt-compute/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,6 @@ For the older Azure Service Management (ASM) libraries, see
For a more complete set of Azure libraries, see the `azure <https://pypi.python.org/pypi/azure>`__ bundle package.


Compatibility
=============

**IMPORTANT**: If you have an earlier version of the azure package
(version < 1.0), you should uninstall it before installing this package.

You can check the version using pip:

.. code:: shell

pip freeze

If you see azure==0.11.0 (or any version below 1.0), uninstall it first:

.. code:: shell

pip uninstall azure


Usage
=====

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,15 @@ class Disk(Resource):
:vartype provisioning_state: str
:param disk_iops_read_write: The number of IOPS allowed for this disk;
only settable for UltraSSD disks. One operation can transfer between 4k
and 256k bytes.
and 256k bytes. For a description of the range of values you can set, see
[Ultra SSD Managed Disk
Offerings](https://docs.microsoft.com/azure/virtual-machines/windows/disks-ultra-ssd#ultra-ssd-managed-disk-offerings).
:type disk_iops_read_write: long
:param disk_mbps_read_write: The bandwidth allowed for this disk; only
settable for UltraSSD disks. MBps means millions of bytes per second - MB
here uses the ISO notation, of powers of 10.
here uses the ISO notation, of powers of 10. For a description of the
range of values you can set, see [Ultra SSD Managed Disk
Offerings](https://docs.microsoft.com/azure/virtual-machines/windows/disks-ultra-ssd#ultra-ssd-managed-disk-offerings).
:type disk_mbps_read_write: int
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,15 @@ class Disk(Resource):
:vartype provisioning_state: str
:param disk_iops_read_write: The number of IOPS allowed for this disk;
only settable for UltraSSD disks. One operation can transfer between 4k
and 256k bytes.
and 256k bytes. For a description of the range of values you can set, see
[Ultra SSD Managed Disk
Offerings](https://docs.microsoft.com/azure/virtual-machines/windows/disks-ultra-ssd#ultra-ssd-managed-disk-offerings).
:type disk_iops_read_write: long
:param disk_mbps_read_write: The bandwidth allowed for this disk; only
settable for UltraSSD disks. MBps means millions of bytes per second - MB
here uses the ISO notation, of powers of 10.
here uses the ISO notation, of powers of 10. For a description of the
range of values you can set, see [Ultra SSD Managed Disk
Offerings](https://docs.microsoft.com/azure/virtual-machines/windows/disks-ultra-ssd#ultra-ssd-managed-disk-offerings).
:type disk_mbps_read_write: int
"""

Expand Down