Azurex.Blob.get_blob

You're seeing just the function get_blob, go back to Azurex.Blob module for more information.
Link to this function

get_blob(name, container \\ nil, params \\ [])

View Source

Download a blob

Examples

iex> get_blob("filename.txt")
{:ok, "file contents"}

iex> get_blob("filename.txt", "container")
{:ok, "file contents"}

iex> get_blob("filename.txt", nil, timeout: 10)
{:ok, "file contents"}

iex> get_blob("filename.txt")
{:error, %HTTPoison.Response{}}