Skip to content

Commit 1a610b4

Browse files
Final review updates
1 parent d10a2a0 commit 1a610b4

12 files changed

+5
-56
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
31-
3230
## Download a blob
3331

3432
You can use any of the following methods to download a blob:

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
31-
3230
## Download a blob
3331

3432
You can use any of the following methods to download a blob:

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
31-
3230
## Download a blob
3331

3432
You can use the following method to download a blob:

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
31-
3230
## Download a blob
3331

3432
You can use any of the following methods to download a blob:

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-download](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-download.md)]
31-
3230
## Download a blob
3331

3432
You can use any of the following methods to download a blob:

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
32-
3331
## Upload data to a block blob
3432

3533
To upload a block blob from a stream or a binary object, use the following method:
@@ -75,7 +73,7 @@ To learn more about uploading blobs using the Azure Blob Storage client library
7573
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 uploading blobs use the following REST API operations:
7674

7775
- [Put Blob](/rest/api/storageservices/put-blob) (REST API)
78-
- [Put Blob From URL](/rest/api/storageservices/put-blob-from-url) (REST API)
76+
- [Put Block](/rest/api/storageservices/put-block) (REST API)
7977

8078
### Code samples
8179

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
31-
3230
## Upload data to a block blob
3331

3432
You can use any of the following methods to upload data to a block blob:
@@ -137,7 +135,7 @@ To learn more about uploading blobs using the Azure Blob Storage client library
137135
The Azure SDK for JavaScript contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar JavaScript paradigms. The client library methods for uploading blobs use the following REST API operations:
138136

139137
- [Put Blob](/rest/api/storageservices/put-blob) (REST API)
140-
- [Put Blob From URL](/rest/api/storageservices/put-blob-from-url) (REST API)
138+
- [Put Block](/rest/api/storageservices/put-block) (REST API)
141139

142140
### Code samples
143141

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
32-
3331
## Upload data to a block blob
3432

3533
To upload a blob using a stream or a binary object, use the following method:
@@ -69,7 +67,7 @@ To learn more about uploading blobs using the Azure Blob Storage client library
6967
The Azure SDK for Python contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Python paradigms. The client library methods for uploading blobs use the following REST API operations:
7068

7169
- [Put Blob](/rest/api/storageservices/put-blob) (REST API)
72-
- [Put Blob From URL](/rest/api/storageservices/put-blob-from-url) (REST API)
70+
- [Put Block](/rest/api/storageservices/put-block) (REST API)
7371

7472
### Code samples
7573

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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 TypeScript](storage-blob-typescript-get-started.md#set-up-your-project).
2929

30-
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
31-
3230
## Upload data to a block blob
3331

3432
You can use any of the following methods to upload data to a block blob:
@@ -143,7 +141,7 @@ To learn more about uploading blobs using the Azure Blob Storage client library
143141
The Azure SDK for JavaScript contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar JavaScript paradigms. The client library methods for uploading blobs use the following REST API operations:
144142

145143
- [Put Blob](/rest/api/storageservices/put-blob) (REST API)
146-
- [Put Blob From URL](/rest/api/storageservices/put-blob-from-url) (REST API)
144+
- [Put Block](/rest/api/storageservices/put-block) (REST API)
147145

148146
### Code samples
149147

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ 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-
[!INCLUDE [storage-dev-guide-about-blob-upload](../../../includes/storage-dev-guides/storage-dev-guide-about-blob-upload.md)]
31-
3230
## Upload data to a block blob
3331

3432
You can use either of the following methods to upload data to a block blob:
@@ -94,6 +92,7 @@ To learn more about uploading blobs using the Azure Blob Storage client library
9492
The Azure SDK for .NET contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar .NET paradigms. The client library methods for uploading blobs use the following REST API operations:
9593

9694
- [Put Blob](/rest/api/storageservices/put-blob) (REST API)
95+
- [Put Block](/rest/api/storageservices/put-block) (REST API)
9796

9897
### Code samples
9998

0 commit comments

Comments
 (0)