Method: Azure::Service::StorageService#initialize
- Defined in:
- lib/azure/service/storage_service.rb
#initialize(signer = Core::Auth::SharedKey.new, account_name = Azure.config.storage_account_name) ⇒ StorageService
Create a new instance of the StorageService
signer - Azure::Core::Auth::Signer. An implementation of Signer used for signing requests. (optional, Default=Azure::Core::Auth::SharedKey.new) account_name - String. The account name (optional, Default=Azure.config.storage_account_name)
25 26 27 |
# File 'lib/azure/service/storage_service.rb', line 25 def initialize(signer=Core::Auth::SharedKey.new, account_name=Azure.config.storage_account_name) super(signer, account_name) end |