Skip to content

Commit b854408

Browse files
authored
{AzureStorage} fix the typo for the source blob size (Azure#35180)
fixes Azure#35139 This PR has fix for the typo for the source blob size. The Maximum blob size for the source blob is 256 mebibytes (MiB) and not 256 MB. Refer: https://learn.microsoft.com/en-us/dotnet/api/azure.storage.blobs.specialized.blobbaseclient.synccopyfromuriasync?view=azure-dotnet
1 parent 7cbac3d commit b854408

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

sdk/storage/Azure.Storage.Blobs/src/BlobBaseClient.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3941,11 +3941,11 @@ private async Task<Response> AbortCopyFromUriInternal(
39413941
#region CopyFromUri
39423942
/// <summary>
39433943
/// The Copy Blob From URL operation copies a blob to a destination within the storage account synchronously
3944-
/// for source blob sizes up to 256 MB. This API is available starting in version 2018-03-28.
3944+
/// for source blob sizes up to 256 MiB. This API is available starting in version 2018-03-28.
39453945
/// The source for a Copy Blob From URL operation can be any committed block blob in any Azure storage account
39463946
/// which is either public or authorized with a shared access signature.
39473947
///
3948-
/// The size of the source blob can be a maximum length of up to 256 MB.
3948+
/// The size of the source blob can be a maximum length of up to 256 MiB.
39493949
///
39503950
/// For more information, see
39513951
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url">
@@ -3956,7 +3956,7 @@ private async Task<Response> AbortCopyFromUriInternal(
39563956
/// that specifies a blob. The value should be URL-encoded as it would appear in a request URI. The
39573957
/// source blob must either be public or must be authorized via a shared access signature. If the
39583958
/// source blob is public, no authorization is required to perform the operation. If the size of the
3959-
/// source blob is greater than 256 MB, the request will fail with 409 (Conflict). The blob type of
3959+
/// source blob is greater than 256 MiB, the request will fail with 409 (Conflict). The blob type of
39603960
/// the source blob has to be block blob.
39613961
/// </param>
39623962
/// <param name="options">
@@ -3995,11 +3995,11 @@ public virtual Response<BlobCopyInfo> SyncCopyFromUri(
39953995

39963996
/// <summary>
39973997
/// The Copy Blob From URL operation copies a blob to a destination within the storage account synchronously
3998-
/// for source blob sizes up to 256 MB. This API is available starting in version 2018-03-28.
3998+
/// for source blob sizes up to 256 MiB. This API is available starting in version 2018-03-28.
39993999
/// The source for a Copy Blob From URL operation can be any committed block blob in any Azure storage account
40004000
/// which is either public or authorized with a shared access signature.
40014001
///
4002-
/// The size of the source blob can be a maximum length of up to 256 MB.
4002+
/// The size of the source blob can be a maximum length of up to 256 MiB.
40034003
///
40044004
/// For more information, see
40054005
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url">
@@ -4010,7 +4010,7 @@ public virtual Response<BlobCopyInfo> SyncCopyFromUri(
40104010
/// that specifies a blob. The value should be URL-encoded as it would appear in a request URI. The
40114011
/// source blob must either be public or must be authorized via a shared access signature. If the
40124012
/// source blob is public, no authorization is required to perform the operation. If the size of the
4013-
/// source blob is greater than 256 MB, the request will fail with 409 (Conflict). The blob type of
4013+
/// source blob is greater than 256 MiB, the request will fail with 409 (Conflict). The blob type of
40144014
/// the source blob has to be block blob.
40154015
/// </param>
40164016
/// <param name="options">
@@ -4049,11 +4049,11 @@ public virtual async Task<Response<BlobCopyInfo>> SyncCopyFromUriAsync(
40494049

40504050
/// <summary>
40514051
/// The Copy Blob From URL operation copies a blob to a destination within the storage account synchronously
4052-
/// for source blob sizes up to 256 MB. This API is available starting in version 2018-03-28.
4052+
/// for source blob sizes up to 256 MiB. This API is available starting in version 2018-03-28.
40534053
/// The source for a Copy Blob From URL operation can be any committed block blob in any Azure storage account
40544054
/// which is either public or authorized with a shared access signature.
40554055
///
4056-
/// The size of the source blob can be a maximum length of up to 256 MB.
4056+
/// The size of the source blob can be a maximum length of up to 256 MiB.
40574057
///
40584058
/// For more information, see
40594059
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url">
@@ -4064,7 +4064,7 @@ public virtual async Task<Response<BlobCopyInfo>> SyncCopyFromUriAsync(
40644064
/// that specifies a blob. The value should be URL-encoded as it would appear in a request URI. The
40654065
/// source blob must either be public or must be authorized via a shared access signature. If the
40664066
/// source blob is public, no authorization is required to perform the operation. If the size of the
4067-
/// source blob is greater than 256 MB, the request will fail with 409 (Conflict). The blob type of
4067+
/// source blob is greater than 256 MiB, the request will fail with 409 (Conflict). The blob type of
40684068
/// the source blob has to be block blob.
40694069
/// </param>
40704070
/// <param name="metadata">

0 commit comments

Comments
 (0)