Class: Azure::Compute::Mgmt::V2016_04_30_preview::Models::SnapshotUpdate
- Inherits:
-
ResourceUpdate
- Object
- ResourceUpdate
- Azure::Compute::Mgmt::V2016_04_30_preview::Models::SnapshotUpdate
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb
Overview
Snapshot update resource.
Instance Attribute Summary collapse
-
#account_type ⇒ StorageAccountTypes
Possible values include: 'Standard_LRS', 'Premium_LRS'.
-
#creation_data ⇒ CreationData
information cannot be changed after the disk has been created.
-
#disk_size_gb ⇒ Integer
mandatory and it indicates the size of the VHD to create.
-
#encryption_settings ⇒ EncryptionSettings
Encryption settings for disk or snapshot.
-
#os_type ⇒ OperatingSystemTypes
values include: 'Windows', 'Linux'.
Attributes inherited from ResourceUpdate
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SnapshotUpdate class as Ruby Hash.
Instance Attribute Details
#account_type ⇒ StorageAccountTypes
Possible values include: 'Standard_LRS', 'Premium_LRS'
17 18 19 |
# File 'lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb', line 17 def account_type @account_type end |
#creation_data ⇒ CreationData
information cannot be changed after the disk has been created.
25 26 27 |
# File 'lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb', line 25 def creation_data @creation_data end |
#disk_size_gb ⇒ Integer
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.
32 33 34 |
# File 'lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb', line 32 def disk_size_gb @disk_size_gb end |
#encryption_settings ⇒ EncryptionSettings
Returns Encryption settings for disk or snapshot.
35 36 37 |
# File 'lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb', line 35 def encryption_settings @encryption_settings end |
#os_type ⇒ OperatingSystemTypes
values include: 'Windows', 'Linux'
21 22 23 |
# File 'lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb', line 21 def os_type @os_type end |
Class Method Details
.mapper ⇒ Object
Mapper for SnapshotUpdate class as Ruby Hash. This will be used for serialization/deserialization.
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/2016-04-30-preview/generated/azure_mgmt_compute/models/snapshot_update.rb', line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SnapshotUpdate', type: { name: 'Composite', class_name: 'SnapshotUpdate', model_properties: { tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, account_type: { client_side_validation: true, required: false, serialized_name: 'properties.accountType', type: { name: 'Enum', module: 'StorageAccountTypes' } }, os_type: { client_side_validation: true, required: false, serialized_name: 'properties.osType', type: { name: 'Enum', module: 'OperatingSystemTypes' } }, creation_data: { client_side_validation: true, required: false, serialized_name: 'properties.creationData', type: { name: 'Composite', class_name: 'CreationData' } }, disk_size_gb: { client_side_validation: true, required: false, serialized_name: 'properties.diskSizeGB', type: { name: 'Number' } }, encryption_settings: { client_side_validation: true, required: false, serialized_name: 'properties.encryptionSettings', type: { name: 'Composite', class_name: 'EncryptionSettings' } } } } } end |