Skip to content

Commit 6c3521c

Browse files
Edits
1 parent 3b8c53a commit 6c3521c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/storage/blobs/storage-blob-copy-java.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To copy a blob, use the following method:
4444

4545
- [copyFromUrl](/java/api/com.azure.storage.blob.specialized.blobclientbase)
4646

47-
This method synchronously copies the data at the source URL to a blob and waits for the copy to complete before returning a response. The source must be a block blob no larger than 256 MB. The source URL must include a SAS token that provides permissions to read the source blob. To learn more about the underlying operation, see [Copy Blob From URL](/rest/api/storageservices/copy-blob-from-url).
47+
This method synchronously copies the data at the source URL to a blob and waits for the copy to complete before returning a response. The source must be a block blob no larger than 256 MB. The source URL must include a SAS token that provides permissions to read the source blob. To learn more about the underlying operation, see [REST API operations](#rest-api-operations).
4848

4949
The following code example gets a `BlobClient` object representing an existing blob and copies it to a new blob in a different container. This example also gets a lease on the source blob before copying so that no other client can modify the blob until the copy is complete and the lease is broken.
5050

@@ -65,7 +65,7 @@ You can also copy a blob using the following method:
6565

6666
- [beginCopy](/java/api/com.azure.storage.blob.specialized.blobclientbase)
6767

68-
This method triggers a long-running, asynchronous operation. The source may be another blob or an Azure File resource. If the source is in another storage account, the source must either be public or authorized with a SAS token. To learn more about the underlying operation, see [Copy Blob](/rest/api/storageservices/copy-blob).
68+
This method triggers a long-running, asynchronous operation. The source may be another blob or an Azure File resource. If the source is in another storage account, the source must either be public or authorized with a SAS token. To learn more about the underlying operation, see [REST API operations](#rest-api-operations).
6969

7070
:::code language="java" source="~/azure-storage-snippets/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobCopy.java" id="Snippet_CopyBlobBeginCopy":::
7171

@@ -95,6 +95,7 @@ To learn more about copying blobs using the Azure Blob Storage client library fo
9595

9696
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for copying blobs use the following REST API operations:
9797

98+
- [Copy Blob](/rest/api/storageservices/copy-blob) (REST API)
9899
- [Copy Blob From URL](/rest/api/storageservices/copy-blob-from-url) (REST API)
99100
- [Abort Copy Blob](/rest/api/storageservices/abort-copy-blob) (REST API)
100101

0 commit comments

Comments
 (0)