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 DataDisk(Model):
"""Data Disk settings which will be used by the data disks associated to
Compute Nodes in the pool.
:param lun: The logical unit number. The lun is used to uniquely identify
each data disk. If attaching multiple disks, each should have a distinct
lun.
:type lun: int
:param caching: The type of caching to be enabled for the data disks.
Values are:
none - The caching mode for the disk is not enabled.
readOnly - The caching mode for the disk is read only.
readWrite - The caching mode for the disk is read and write.
The default value for caching is none. For information about the caching
options see:
https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
Possible values include: 'None', 'ReadOnly', 'ReadWrite'
:type caching: str or ~azure.mgmt.batch.models.CachingType
:param disk_size_gb: The initial disk size in GB when creating new data
disk.
:type disk_size_gb: int
:param storage_account_type: The storage account type to be used for the
data disk. If omitted, the default is "Standard_LRS". Values are:
Standard_LRS - The data disk should use standard locally redundant
storage.
Premium_LRS - The data disk should use premium locally redundant storage.
Possible values include: 'Standard_LRS', 'Premium_LRS'
:type storage_account_type: str or
~azure.mgmt.batch.models.StorageAccountType
"""
_validation = {
'lun': {'required': True},
'disk_size_gb': {'required': True},
}
_attribute_map = {
'lun': {'key': 'lun', 'type': 'int'},
'caching': {'key': 'caching', 'type': 'CachingType'},
'disk_size_gb': {'key': 'diskSizeGB', 'type': 'int'},
'storage_account_type': {'key': 'storageAccountType', 'type': 'StorageAccountType'},
}
def __init__(self, lun, disk_size_gb, caching=None, storage_account_type=None):
super(DataDisk, self).__init__()
self.lun = lun
self.caching = caching
self.disk_size_gb = disk_size_gb
self.storage_account_type = storage_account_type
|