AzureStorage Build Status

Elixir Azure Storage Rest API Client. Support Azure Blob, Queue, Fileshare and Table Storage.

Installation

The package can be installed by adding ex_azure_storage to your list of dependencies in mix.exs:

def deps do
  [
    {:ex_azure_storage, "~> 0.1.2"}
  ]
end

Usage

Common usage

{:ok, context} = AzureStorage.create_queue_service("azure-account-name", "azure-account-key")
queue_name="sampleq"

context
  |> AzureStorage.Queue.get_messages(queue_name, [number_of_messages: 25, visibility_timeout: 60])
  |> IO.inspect()

Full documentation can be found at https://hexdocs.pm/ex_azure_storage.