Skip to content

Commit 770c8c0

Browse files
Update copy article
1 parent 56ac3cc commit 770c8c0

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,7 @@ To copy a blob, use the following method:
4444

4545
- [BlobClient.start_copy_from_url](/python/api/azure-storage-blob/azure.storage.blob.blobclient#azure-storage-blob-blobclient-start-copy-from-url)
4646

47-
This method returns a dictionary containing *copy_status* and *copy_id*, which can be used to check the status of the copy operation:
48-
- *copy_status* will be 'success' if the copy completed synchronously or 'pending' if the copy has been started asynchronously
49-
- For asynchronous copies, the status can be checked by polling the `get_blob_properties` method and checking *copy_status*
50-
- Set *requires_sync* to True to force the copy to be synchronous
51-
52-
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).
47+
This method returns a dictionary containing *copy_status* and *copy_id*, which can be used to check the status of the copy operation. The *copy_status* property will be 'success' if the copy completed synchronously or 'pending' if the copy has been started asynchronously. For asynchronous copies, the status can be checked by polling the `get_blob_properties` method and checking *copy_status*. To force the copy operation to be synchronous, set *requires_sync* to `True`. To learn more about the underlying operation, see [REST API operations](#rest-api-operations).
5348

5449
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.
5550

0 commit comments

Comments
 (0)