1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class DiskUpdate(Model):
"""Disk update resource.
:param os_type: the Operating System type. Possible values include:
'Windows', 'Linux'
:type os_type: str or
~azure.mgmt.compute.v2018_06_01.models.OperatingSystemTypes
:param disk_size_gb: If creationData.createOption is Empty, this field is
mandatory and it indicates the size of the VHD to create. If this field is
present for updates or creation with other options, it indicates a resize.
Resizes are only allowed if the disk is not attached to a running VM, and
can only increase the disk's size.
:type disk_size_gb: int
:param encryption_settings: Encryption settings for disk or snapshot
:type encryption_settings:
~azure.mgmt.compute.v2018_06_01.models.EncryptionSettings
: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.
: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.
:type disk_mbps_read_write: int
:param tags: Resource tags
:type tags: dict[str, str]
:param sku:
:type sku: ~azure.mgmt.compute.v2018_06_01.models.DiskSku
"""
_attribute_map = {
'os_type': {'key': 'properties.osType', 'type': 'OperatingSystemTypes'},
'disk_size_gb': {'key': 'properties.diskSizeGB', 'type': 'int'},
'encryption_settings': {'key': 'properties.encryptionSettings', 'type': 'EncryptionSettings'},
'disk_iops_read_write': {'key': 'properties.diskIOPSReadWrite', 'type': 'long'},
'disk_mbps_read_write': {'key': 'properties.diskMBpsReadWrite', 'type': 'int'},
'tags': {'key': 'tags', 'type': '{str}'},
'sku': {'key': 'sku', 'type': 'DiskSku'},
}
def __init__(self, *, os_type=None, disk_size_gb: int=None, encryption_settings=None, disk_iops_read_write: int=None, disk_mbps_read_write: int=None, tags=None, sku=None, **kwargs) -> None:
super(DiskUpdate, self).__init__(**kwargs)
self.os_type = os_type
self.disk_size_gb = disk_size_gb
self.encryption_settings = encryption_settings
self.disk_iops_read_write = disk_iops_read_write
self.disk_mbps_read_write = disk_mbps_read_write
self.tags = tags
self.sku = sku
|