Class: Azure::Storage::Mgmt::V2021_01_01::Models::EncryptionIdentity
- Inherits:
-
Object
- Object
- Azure::Storage::Mgmt::V2021_01_01::Models::EncryptionIdentity
- Includes:
- MsRestAzure
- Defined in:
- lib/2021-01-01/generated/azure_mgmt_storage/models/encryption_identity.rb
Overview
Encryption identity for the storage account.
Instance Attribute Summary collapse
-
#encryption_user_assigned_identity ⇒ String
associated with server-side encryption on the storage account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EncryptionIdentity class as Ruby Hash.
Instance Attribute Details
#encryption_user_assigned_identity ⇒ String
associated with server-side encryption on the storage account.
17 18 19 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption_identity.rb', line 17 def encryption_user_assigned_identity @encryption_user_assigned_identity end |
Class Method Details
.mapper ⇒ Object
Mapper for EncryptionIdentity class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption_identity.rb', line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EncryptionIdentity', type: { name: 'Composite', class_name: 'EncryptionIdentity', model_properties: { encryption_user_assigned_identity: { client_side_validation: true, required: false, serialized_name: 'userAssignedIdentity', type: { name: 'String' } } } } } end |