Flowdock
method

new

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: AzureStorageService
new(storage_account_name:, storage_access_key:, container:, public: false, **options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/service/azure_storage_service.rb, line 15
    def initialize(storage_account_name,, storage_access_key,, container,, public: false, **options)
      @client = Azure::Storage::Blob::BlobService.create(storage_account_name: storage_account_name, storage_access_key: storage_access_key, **options)
      @signer = Azure::Storage::Common::Core::Auth::SharedAccessSignature.new(storage_account_name, storage_access_key)
      @container = container
      @public = public
    end
Register or log in to add new notes.