Class: Azure::Compute::Mgmt::V2020_09_30::Models::SnapshotSku
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2020_09_30::Models::SnapshotSku
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-09-30/generated/azure_mgmt_compute/models/snapshot_sku.rb
Overview
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
Instance Attribute Summary collapse
-
#name ⇒ SnapshotStorageAccountTypes
include: 'Standard_LRS', 'Premium_LRS', 'Standard_ZRS'.
-
#tier ⇒ String
The sku tier.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SnapshotSku class as Ruby Hash.
Instance Attribute Details
#name ⇒ SnapshotStorageAccountTypes
include: 'Standard_LRS', 'Premium_LRS', 'Standard_ZRS'
20 21 22 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/snapshot_sku.rb', line 20 def name @name end |
#tier ⇒ String
Returns The sku tier.
23 24 25 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/snapshot_sku.rb', line 23 def tier @tier end |
Class Method Details
.mapper ⇒ Object
Mapper for SnapshotSku class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/snapshot_sku.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SnapshotSku', type: { name: 'Composite', class_name: 'SnapshotSku', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, tier: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tier', type: { name: 'String' } } } } } end |