AzureStorage (AzureStorage v0.1.2) View Source
Azure Storage REST Client.
Before you can start interacting with Azure Storage services. You need to create a AzureStorage.Request.Context
.
Example
iex> AzureStorage.create_blob_service("account_name", "account_key")
{:ok, %AzureStorage.Request.Context{}}
Link to this section Summary
Functions
Create a new context to interact with Azure Blob Service
Create a new context to interact with Azure Fileshare service
Create a new context to interact with Azure Queue Storage
Create a new context to interact with Azure Table Storage Service
Link to this section Functions
Specs
create_blob_service(String.t(), String.t()) :: {:ok, AzureStorage.Request.Context.t()} | {:error, String.t()}
Create a new context to interact with Azure Blob Service
Specs
create_queue_service(String.t(), String.t()) :: {:ok, AzureStorage.Request.Context.t()} | {:error, String.t()}
Create a new context to interact with Azure Queue Storage
Specs
create_table_service(String.t(), String.t()) :: {:ok, AzureStorage.Request.Context.t()} | {:error, String.t()}
Create a new context to interact with Azure Table Storage Service