You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-container-properties-metadata-javascript.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Use JavaScript/TypeScript to manage properties and metadata for a blob container
2
+
title: Use JavaScript or TypeScript to manage properties and metadata for a blob container
3
3
titleSuffix: Azure Storage
4
4
description: Learn how to set and retrieve system properties and store custom metadata on blob containers in your Azure Storage account using the JavaScript client library.
@@ -24,9 +24,9 @@ Copy operations can be used to move data within a storage account, between stora
24
24
25
25
| REST API operation | When to use | Client library methods | Guidance |
26
26
| --- | --- | --- | --- |
27
-
|[Put Blob From URL](/rest/api/storageservices/put-blob-from-url)| This operation is preferred for scenarios where you want to move data into a storage account and have a URL for the source object. This operation completes synchronously. |[syncUploadFromURL](/javascript/api/@azure/storage-blob/blockblobclient#@azure-storage-blob-blockblobclient-syncuploadfromurl)|[Copy a blob from a source object URL with JavaScript/TypeScript](storage-blob-copy-url-javascript.md)|
28
-
|[Put Block From URL](/rest/api/storageservices/put-block-from-url)| For large objects, you can use [Put Block From URL](/rest/api/storageservices/put-block-from-url) to write individual blocks to Blob Storage, and then call [Put Block List](/rest/api/storageservices/put-block-list) to commit those blocks to a block blob. This operation completes synchronously. |[stageBlockFromURL](/javascript/api/@azure/storage-blob/blockblobclient#@azure-storage-blob-blockblobclient-stageblockfromurl)|[Copy a blob from a source object URL with JavaScript/TypeScript](storage-blob-copy-url-javascript.md)|
29
-
|[Copy Blob](/rest/api/storageservices/copy-blob)| This operation can be used when you want asynchronous scheduling for a copy operation. |[beginCopyFromURL](/javascript/api/@azure/storage-blob/blobclient#@azure-storage-blob-blobclient-begincopyfromurl)|[Copy a blob with asynchronous scheduling using JavaScript/TypeScript](storage-blob-copy-async-javascript.md)|
27
+
|[Put Blob From URL](/rest/api/storageservices/put-blob-from-url)| This operation is preferred for scenarios where you want to move data into a storage account and have a URL for the source object. This operation completes synchronously. |[syncUploadFromURL](/javascript/api/@azure/storage-blob/blockblobclient#@azure-storage-blob-blockblobclient-syncuploadfromurl)|[Copy a blob from a source object URL with JavaScript or TypeScript](storage-blob-copy-url-javascript.md)|
28
+
|[Put Block From URL](/rest/api/storageservices/put-block-from-url)| For large objects, you can use [Put Block From URL](/rest/api/storageservices/put-block-from-url) to write individual blocks to Blob Storage, and then call [Put Block List](/rest/api/storageservices/put-block-list) to commit those blocks to a block blob. This operation completes synchronously. |[stageBlockFromURL](/javascript/api/@azure/storage-blob/blockblobclient#@azure-storage-blob-blockblobclient-stageblockfromurl)|[Copy a blob from a source object URL with JavaScript or TypeScript](storage-blob-copy-url-javascript.md)|
29
+
|[Copy Blob](/rest/api/storageservices/copy-blob)| This operation can be used when you want asynchronous scheduling for a copy operation. |[beginCopyFromURL](/javascript/api/@azure/storage-blob/blobclient#@azure-storage-blob-blobclient-begincopyfromurl)|[Copy a blob with asynchronous scheduling using JavaScript or TypeScript](storage-blob-copy-async-javascript.md)|
30
30
31
31
For append blobs, you can use the [Append Block From URL](/rest/api/storageservices/append-block-from-url) operation to commit a new block of data to the end of an existing append blob. The following client library method wraps this operation:
> The examples in this article assume that you've created a [BlobServiceClient](/javascript/api/@azure/storage-blob/blobserviceclient) object by using the guidance in the [Get started with Azure Blob Storage and JavaScript/TypeScript](storage-blob-javascript-get-started.md) article.
24
+
> The examples in this article assume that you've created a [BlobServiceClient](/javascript/api/@azure/storage-blob/blobserviceclient) object by using the guidance in the [Get started with Azure Blob Storage and JavaScript or TypeScript](storage-blob-javascript-get-started.md) article.
0 commit comments