Method: Azure::Service::StorageService#initialize

Defined in:
lib/azure/service/storage_service.rb

#initialize(signer = Core::Auth::SharedKey.new, account_name = nil, options = {}) ⇒ StorageService

Create a new instance of the StorageService

(optional, Default=Azure::Core::Auth::SharedKey.new)

Parameters:

  • signer (Azure::Core::Auth::Signer) (defaults to: Core::Auth::SharedKey.new)

    An implementation of Signer used for signing requests.

  • account_name (String) (defaults to: nil)

    The account name (optional, Default=Azure.config.storage_account_name)

  • options (Azure::Configurable) (defaults to: {})

    the client configuration context



27
28
29
# File 'lib/azure/service/storage_service.rb', line 27

def initialize(signer=Core::Auth::SharedKey.new, =nil, options = {})
  super(signer, , options)
end