Skip to content

Commit 12bcad3

Browse files
Add include files
1 parent de6722f commit 12bcad3

12 files changed

+42
-38
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Get Blob](/rest/api/storageservices/get-blob#authorization)
2828
- The package **azure-storage-blob** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and Java](storage-blob-java-get-started.md#set-up-your-project).
2929

30-
## About downloading blobs
31-
32-
The [Get Blob](/rest/api/storageservices/put-blob) operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).
30+
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
3331

3432
## Download a blob
3533

articles/storage/blobs/storage-blob-download-javascript.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Get Blob](/rest/api/storageservices/get-blob#authorization)
2828
- The package **@azure/storage-blob** installed to your project directory. To learn more about setting up your project, see [Get started with Azure Blob Storage and JavaScript](storage-blob-javascript-get-started.md).
2929

30-
## About downloading blobs
31-
32-
The [Get Blob](/rest/api/storageservices/put-blob) operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).
30+
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
3331

3432
## Download a blob
3533

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Get Blob](/rest/api/storageservices/get-blob#authorization)
2828
- The package **azure-storage-blob** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and Java](storage-blob-java-get-started.md#set-up-your-project).
2929

30-
## About downloading blobs
31-
32-
The [Get Blob](/rest/api/storageservices/put-blob) operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).
30+
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
3331

3432
## Download a blob
3533

articles/storage/blobs/storage-blob-download-typescript.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Get Blob](/rest/api/storageservices/get-blob#authorization)
2828
- The package **@azure/storage-blob** installed to your project directory. To learn more about setting up your project, see [Get started with Azure Blob Storage and TypeScript](storage-blob-typescript-get-started.md).
2929

30-
## About downloading blobs
31-
32-
The [Get Blob](/rest/api/storageservices/put-blob) operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).
30+
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
3331

3432
## Download a blob
3533

articles/storage/blobs/storage-blob-download.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Get Blob](/rest/api/storageservices/get-blob#authorization)
2828
- The package **Azure.Storage.Blobs** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and .NET](storage-blob-dotnet-get-started.md#set-up-your-project).
2929

30-
## About downloading blobs
31-
32-
The [Get Blob](/rest/api/storageservices/put-blob) operation reads or downloads a blob from Azure Storage, including its metadata and properties. To learn more about the `Get Blob` operation, including timeout parameters and error conditions, see [Get Blob remarks](/rest/api/storageservices/get-blob#remarks).
30+
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
3331

3432
## Download a blob
3533

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@ To work with the code examples in this article, make sure you have:
2828
- [Put Block](/rest/api/storageservices/put-block#authorization)
2929
- The package **azure-storage-blob** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and Java](storage-blob-java-get-started.md#set-up-your-project).
3030

31-
## About uploading blobs
32-
33-
The [Put Blob](/rest/api/storageservices/put-blob) operation creates a new block blob, page blob, or append blob, or updates the content of an existing block blob. If you're updating an existing block blob, any existing metadata on the blob is overwritten. To learn more about the `Put Blob` operation, including blob size limitations for write operations, see [Put Blob remarks](/rest/api/storageservices/put-blob#remarks).
34-
35-
The [Put Block](/rest/api/storageservices/put-block) operation creates a new block to be committed as part of a blob.
31+
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
3632

3733
## Upload data to a block blob
3834

articles/storage/blobs/storage-blob-upload-javascript.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Put Block](/rest/api/storageservices/put-block#authorization)
2828
- The package **@azure/storage-blob** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and JavaScript](storage-blob-javascript-get-started.md#set-up-your-project).
2929

30-
## About uploading blobs
31-
32-
The [Put Blob](/rest/api/storageservices/put-blob) operation creates a new block blob, page blob, or append blob, or updates the content of an existing block blob. If you're updating an existing block blob, any existing metadata on the blob is overwritten. To learn more about the `Put Blob` operation, including blob size limitations for write operations, see [Put Blob remarks](/rest/api/storageservices/put-blob#remarks).
33-
34-
The [Put Block](/rest/api/storageservices/put-block) operation creates a new block to be committed as part of a blob.
30+
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
3531

3632
## Upload data to a block blob
3733

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@ To work with the code examples in this article, make sure you have:
2828
- [Put Block](/rest/api/storageservices/put-block#authorization)
2929
- The package **azure-storage-blob** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and Python](storage-blob-python-get-started.md#set-up-your-project).
3030

31-
## About uploading blobs
32-
33-
The [Put Blob](/rest/api/storageservices/put-blob) operation creates a new block blob, page blob, or append blob, or updates the content of an existing block blob. If you're updating an existing block blob, any existing metadata on the blob is overwritten. To learn more about the `Put Blob` operation, including blob size limitations for write operations, see [Put Blob remarks](/rest/api/storageservices/put-blob#remarks).
34-
35-
The [Put Block](/rest/api/storageservices/put-block) operation creates a new block to be committed as part of a blob.
31+
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
3632

3733
## Upload data to a block blob
3834

articles/storage/blobs/storage-blob-upload-typescript.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ To work with the code examples in this article, make sure you have:
2929

3030
## About uploading blobs
3131

32-
The [Put Blob](/rest/api/storageservices/put-blob) operation creates a new block blob, page blob, or append blob, or updates the content of an existing block blob. If you're updating an existing block blob, any existing metadata on the blob is overwritten. To learn more about the `Put Blob` operation, including blob size limitations for write operations, see [Put Blob remarks](/rest/api/storageservices/put-blob#remarks).
33-
34-
The [Put Block](/rest/api/storageservices/put-block) operation creates a new block to be committed as part of a blob.
32+
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
3533

3634
## Upload data to a block blob
3735

articles/storage/blobs/storage-blob-upload.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ To work with the code examples in this article, make sure you have:
2727
- [Put Block](/rest/api/storageservices/put-block#authorization)
2828
- The package **Azure.Storage.Blobs** installed to your project directory. To learn more about setting up your project, see [Get Started with Azure Storage and .NET](storage-blob-dotnet-get-started.md#set-up-your-project).
2929

30-
## About uploading blobs
31-
32-
The [Put Blob](/rest/api/storageservices/put-blob) operation creates a new block blob, page blob, or append blob, or updates the content of an existing block blob. If you're updating an existing block blob, any existing metadata on the blob is overwritten. To learn more about the `Put Blob` operation, including blob size limitations for write operations, see [Put Blob remarks](/rest/api/storageservices/put-blob#remarks).
33-
34-
The [Put Block](/rest/api/storageservices/put-block) operation creates a new block to be committed as part of a blob.
30+
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
3531

3632
## Upload data to a block blob
3733

0 commit comments

Comments
 (0)