Method: Azure::Table::Auth::SharedKey#initialize
- Defined in:
- lib/azure/table/auth/shared_key.rb
#initialize(account_name = Azure.config.storage_account_name, access_key = Azure.config.storage_access_key) ⇒ SharedKey
Public: Initialize the Signer.
account_name - The account name. Defaults to the one in the
global configuration.
access_key - The access_key encoded in Base64. Defaults to the
one in the global configuration.
33 34 35 36 |
# File 'lib/azure/table/auth/shared_key.rb', line 33 def initialize(account_name=Azure.config.storage_account_name, access_key=Azure.config.storage_access_key) @account_name = account_name super(access_key) end |