Class: Azure::Storage::Mgmt::V2021_01_01::Models::EncryptionIdentity

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#encryption_user_assigned_identityString

associated with server-side encryption on the storage account.

Returns:

  • (String)

    Resource identifier of the UserAssigned identity to be



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

.mapperObject

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