From c9b8c0174e6215a50210e7b51cb8cbeb24beb457 Mon Sep 17 00:00:00 2001 From: Jordan Cole <33663+stilist@users.noreply.github.com> Date: Thu, 25 Apr 2024 10:05:45 -0700 Subject: [PATCH 1/2] Document 'Copy Blob from URL' size limit --- lib/azurex/blob.ex | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/azurex/blob.ex b/lib/azurex/blob.ex index 0214858..19ff0cd 100644 --- a/lib/azurex/blob.ex +++ b/lib/azurex/blob.ex @@ -169,6 +169,9 @@ defmodule Azurex.Blob do @doc """ Copies a blob to a destination. + + Note: Azure’s ‘[Copy Blob from URL](https://learn.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url)’ + operation has a maximum size of 256 MiB. """ @spec copy_blob(String.t(), String.t(), optional_string) :: {:ok, HTTPoison.Response.t()} | {:error, term()} From 438fa7522e9e2add80729d6d75bc6bb3a122edc3 Mon Sep 17 00:00:00 2001 From: Jakob Haahr Taankvist Date: Wed, 1 May 2024 08:57:09 +0200 Subject: [PATCH 2/2] Ran the formatter --- lib/azurex/blob.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/azurex/blob.ex b/lib/azurex/blob.ex index 19ff0cd..3cf1bd9 100644 --- a/lib/azurex/blob.ex +++ b/lib/azurex/blob.ex @@ -169,7 +169,7 @@ defmodule Azurex.Blob do @doc """ Copies a blob to a destination. - + Note: Azure’s ‘[Copy Blob from URL](https://learn.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url)’ operation has a maximum size of 256 MiB. """