Class: Azure::Compute::Mgmt::V2020_09_30::Models::DiskEncryptionSetUpdate
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2020_09_30::Models::DiskEncryptionSetUpdate
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-09-30/generated/azure_mgmt_compute/models/disk_encryption_set_update.rb
Overview
disk encryption set update resource.
Instance Attribute Summary collapse
- #active_key ⇒ KeyForDiskEncryptionSet
-
#encryption_type ⇒ DiskEncryptionSetType
'EncryptionAtRestWithCustomerKey', 'EncryptionAtRestWithPlatformAndCustomerKeys'.
-
#tags ⇒ Hash{String => String}
Resource tags.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DiskEncryptionSetUpdate class as Ruby Hash.
Instance Attribute Details
#active_key ⇒ KeyForDiskEncryptionSet
21 22 23 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/disk_encryption_set_update.rb', line 21 def active_key @active_key end |
#encryption_type ⇒ DiskEncryptionSetType
'EncryptionAtRestWithCustomerKey', 'EncryptionAtRestWithPlatformAndCustomerKeys'
18 19 20 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/disk_encryption_set_update.rb', line 18 def encryption_type @encryption_type end |
#tags ⇒ Hash{String => String}
Returns Resource tags.
24 25 26 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/disk_encryption_set_update.rb', line 24 def @tags end |
Class Method Details
.mapper ⇒ Object
Mapper for DiskEncryptionSetUpdate class as Ruby Hash. This will be used for serialization/deserialization.
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 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/2020-09-30/generated/azure_mgmt_compute/models/disk_encryption_set_update.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DiskEncryptionSetUpdate', type: { name: 'Composite', class_name: 'DiskEncryptionSetUpdate', model_properties: { encryption_type: { client_side_validation: true, required: false, serialized_name: 'properties.encryptionType', type: { name: 'String' } }, active_key: { client_side_validation: true, required: false, serialized_name: 'properties.activeKey', type: { name: 'Composite', class_name: 'KeyForDiskEncryptionSet' } }, 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' } } } } } } } end |