class Azure::Storage::Mgmt::V2021_01_01::Models::EncryptionIdentity

Encryption identity for the storage account.

Attributes

encryption_user_assigned_identity[RW]

@return [String] Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.

Private Class Methods

mapper() click to toggle source

Mapper for EncryptionIdentity class as Ruby Hash. This will be used for serialization/deserialization.

# 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