Skip to content

Commit d778e01

Browse files
Updated the prerequisites and the front section.
1 parent f234dae commit d778e01

8 files changed

+67
-104
lines changed

articles/storage/blobs/storage-quickstart-blobs-java-legacy.md

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,21 @@ description: Create a storage account and a container in object (Blob) storage.
44
author: mhopkins-msft
55

66
ms.author: mhopkins
7-
ms.date: 10/05/2019
7+
ms.date: 01/24/2020
88
ms.service: storage
99
ms.subservice: blobs
1010
ms.topic: conceptual
1111
---
1212

13-
# Quickstart: Azure Blob storage client library v8 for Java
13+
# Quickstart: Manage blobs with Java v8 SDK
1414

15-
Get started with the Azure Blob Storage client library v8 for Java. Azure Blob Storage is Microsoft's object storage solution for the cloud. Follow steps to install the package and try out example code for basic tasks. Blob storage is optimized for storing massive amounts of unstructured data.
16-
17-
Use the Azure Blob Storage client library for Java to:
18-
19-
* Create a container
20-
* Set permissions on a container
21-
* Create a blob in Azure Storage
22-
* Download the blob to your local computer
23-
* List all of the blobs in a container
24-
* Delete a container
15+
In this quickstart, you learn to manage blobs by using Java. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll upload, download, and list blobs. You'll also create, set permissions on, and delete containers.
2516

2617
## Prerequisites
2718

28-
* Azure subscription - [create one for free](https://azure.microsoft.com/free/)
29-
* Azure Storage account - [create a storage account](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account)
30-
* An IDE that has Maven integration.
31-
* Alternatively, install and configure Maven to work from the command line.
32-
33-
This guide uses [Eclipse](https://www.eclipse.org/downloads/) with the "Eclipse IDE for Java Developers" configuration.
19+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
20+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
21+
- An IDE that has Maven integration. This guide uses [Eclipse](https://www.eclipse.org/downloads/) with the "Eclipse IDE for Java Developers" configuration.
3422

3523
## Download the sample application
3624

articles/storage/blobs/storage-quickstart-blobs-java.md

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,30 @@ description: In this quickstart, you learn how to use the Azure Blob storage cli
44
author: mhopkins-msft
55

66
ms.author: mhopkins
7-
ms.date: 11/05/2019
7+
ms.date: 01/27/2020
88
ms.service: storage
99
ms.subservice: blobs
1010
ms.topic: quickstart
1111
---
1212

13-
# Quickstart: Azure Blob storage client library v12 for Java
13+
# Quickstart: Manage blobs with Java v12 SDK
1414

15-
Get started with the Azure Blob storage client library v12 for Java. Azure Blob storage is Microsoft's object storage solution for the cloud. Follow steps to install the package and try out example code for basic tasks. Blob storage is optimized for storing massive amounts of unstructured data.
15+
In this quickstart, you learn to manage blobs by using Java. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll upload, download, and list blobs, and you'll create and delete containers.
1616

17-
> [!NOTE]
18-
> To get started with the previous SDK version, see [Quickstart: Azure Blob storage client library for Java](storage-quickstart-blobs-java-legacy.md).
17+
[API reference documentation](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-blob/12.0.0/index.html) | [Library source code](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-blob) | [Package (Maven)](https://mvnrepository.com/artifact/com.azure/azure-storage-blob?repo=jcenter) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-blob/src/samples/java/com/azure/storage/blob)
1918

20-
Use the Azure Blob storage client library v12 for Java to:
19+
## Prerequisites
2120

22-
* Create a container
23-
* Upload a blob to Azure Storage
24-
* List all of the blobs in a container
25-
* Download a blob to your local computer
26-
* Delete a container
21+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
22+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
23+
- [Java Development Kit (JDK)](/java/azure/jdk/?view=azure-java-stable) version 8 or above.
24+
- [Apache Maven](https://maven.apache.org/download.cgi).
2725

28-
[API reference documentation](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-blob/12.0.0/index.html) | [Library source code](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-blob) | [Package (Maven)](https://mvnrepository.com/artifact/com.azure/azure-storage-blob?repo=jcenter) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-blob/src/samples/java/com/azure/storage/blob)
26+
> [!NOTE]
27+
> To get started with the previous SDK version, see [Quickstart: Manage blobs with Java v8 SDK](storage-quickstart-blobs-java-legacy.md).
2928
3029
[!INCLUDE [storage-multi-protocol-access-preview](../../../includes/storage-multi-protocol-access-preview.md)]
3130

32-
## Prerequisites
33-
34-
* [Java Development Kit (JDK)](/java/azure/jdk/?view=azure-java-stable) version 8 or above
35-
* [Apache Maven](https://maven.apache.org/download.cgi)
36-
* Azure subscription - [create one for free](https://azure.microsoft.com/free/)
37-
* Azure storage account - [create a storage account](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account)
38-
3931
## Setting up
4032

4133
This section walks you through preparing a project to work with the Azure Blob storage client library v12 for Java.

articles/storage/blobs/storage-quickstart-blobs-javascript-client-libraries-legacy.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ author: mhopkins-msft
66
ms.custom: mvc
77
ms.service: storage
88
ms.author: mhopkins
9-
ms.date: 08/29/2019
9+
ms.date: 01/24/2020
1010
ms.topic: quickstart
1111
ms.subservice: blobs
1212
---
1313

1414
<!-- Customer intent: As a web application developer I want to interface with Azure Blob storage entirely on the client so that I can build a SPA application that is able to upload and delete files on blob storage. -->
1515

16-
# Quickstart: Upload, list, and delete blobs using Azure Storage v10 SDK for JavaScript/HTML in the browser
16+
# Quickstart: Manage blobs with JavaScript v10 SDK in browser
1717

18-
In this quickstart, you'll learn to use the [Azure Storage SDK V10 for JavaScript - Blob](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-blob#readme) library to manage blobs from JavaScript code running entirely in the browser. The approach used here shows how to use required security measures to ensure protected access to your blob storage account.
18+
In this quickstart, you learn to manage blobs by using JavaScript code running entirely in the browser. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll use required security measures to ensure protected access to your blob storage account.
1919

2020
## Prerequisites
2121

22-
[!INCLUDE [storage-quickstart-prereq-include](../../../includes/storage-quickstart-prereq-include.md)]
23-
24-
The Azure Storage JavaScript client libraries won't work directly from the file system and must be served from a web server. This topic uses [Node.js](https://nodejs.org) to launch a basic server. If you prefer not to install Node, you can use any other means of running a local web server.
25-
26-
To follow the steps on debugging, you'll need [Visual Studio Code](https://code.visualstudio.com) and either the [Debugger for Chrome](vscode:extension/msjsdiag.debugger-for-chrome) or [Debugger for Microsoft Edge](vscode:extension/msjsdiag.debugger-for-edge) extension.
22+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
23+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
24+
- A local web server. This article uses [Node.js](https://nodejs.org) to open a basic server.
25+
- [Visual Studio Code](https://code.visualstudio.com).
26+
- A VS Code extension for browser debugging, such as [Debugger for Chrome](vscode:extension/msjsdiag.debugger-for-chrome) or [Debugger for Microsoft Edge](vscode:extension/msjsdiag.debugger-for-edge).
2727

2828
## Setting up storage account CORS rules
2929

articles/storage/blobs/storage-quickstart-blobs-javascript-client-libraries.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ author: mhopkins-msft
66
ms.custom: mvc
77
ms.service: storage
88
ms.author: mhopkins
9-
ms.date: 08/29/2019
9+
ms.date: 01/24/2020
1010
ms.topic: quickstart
1111
ms.subservice: blobs
1212
---
1313

1414
<!-- Customer intent: As a web application developer I want to interface with Azure Blob storage entirely on the client so that I can build a SPA application that is able to upload and delete files on blob storage. -->
1515

16-
# Quickstart: Upload, list, and delete blobs using Azure Storage v10 SDK for JavaScript/HTML in the browser
16+
# Quickstart: Manage blobs with JavaScript v10 SDK in browser
1717

18-
In this quickstart, you'll learn to use the [Azure Storage SDK V10 for JavaScript - Blob](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-blob#readme) library to manage blobs from JavaScript code running entirely in the browser. The approach used here shows how to use required security measures to ensure protected access to your blob storage account.
18+
In this quickstart, you learn to manage blobs by using JavaScript code running entirely in the browser. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll use required security measures to ensure protected access to your blob storage account.
1919

2020
## Prerequisites
2121

22-
[!INCLUDE [storage-quickstart-prereq-include](../../../includes/storage-quickstart-prereq-include.md)]
23-
24-
The Azure Storage JavaScript client libraries won't work directly from the file system and must be served from a web server. This topic uses [Node.js](https://nodejs.org) to launch a basic server. If you prefer not to install Node, you can use any other means of running a local web server.
25-
26-
To follow the steps on debugging, you'll need [Visual Studio Code](https://code.visualstudio.com) and either the [Debugger for Chrome](vscode:extension/msjsdiag.debugger-for-chrome) or [Debugger for Microsoft Edge](vscode:extension/msjsdiag.debugger-for-edge) extension.
22+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
23+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
24+
- A local web server. This article uses [Node.js](https://nodejs.org) to open a basic server.
25+
- [Visual Studio Code](https://code.visualstudio.com).
26+
- A VS Code extension for browser debugging, such as [Debugger for Chrome](vscode:extension/msjsdiag.debugger-for-chrome) or [Debugger for Microsoft Edge](vscode:extension/msjsdiag.debugger-for-edge).
2727

2828
## Setting up storage account CORS rules
2929

articles/storage/blobs/storage-quickstart-blobs-nodejs-legacy.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,21 @@ description: Create, upload, and delete blobs and containers in Node.js with the
44
author: mhopkins-msft
55

66
ms.author: mhopkins
7-
ms.date: 09/24/2019
7+
ms.date: 01/24/2020
88
ms.service: storage
99
ms.subservice: blobs
1010
ms.topic: quickstart
1111
---
1212

13-
# Quickstart: Azure Blob storage client library v10 for JavaScript
13+
# Quickstart: Manage blobs with JavaScript v10 SDK in Node.js
1414

15-
In this quickstart, you learn to use the [Azure Storage v10 SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js) in Node.js to upload, download, list, and delete blobs and manage containers.
15+
In this quickstart, you learn to manage blobs by using Node.js. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll upload, download, list, and delete blobs, and you'll manage containers.
1616

1717
## Prerequisites
1818

19-
[!INCLUDE [storage-quickstart-prereq-include](../../../includes/storage-quickstart-prereq-include.md)]
19+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
20+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
21+
- [Node.js](https://nodejs.org/en/download/).
2022

2123
## Download the sample application
2224

articles/storage/blobs/storage-quickstart-blobs-nodejs.md

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,29 @@ description: In this quickstart, you learn how to use the Azure Blob storage cli
44
author: mhopkins-msft
55

66
ms.author: mhopkins
7-
ms.date: 11/19/2019
7+
ms.date: 01/24/2020
88
ms.service: storage
99
ms.subservice: blobs
1010
ms.topic: quickstart
1111
---
1212

13-
# Quickstart: Azure Blob storage client library v12 for JavaScript
13+
# Quickstart: Manage blobs with JavaScript v12 SDK in Node.js
1414

15-
Get started with the Azure Blob storage client library v12 for JavaScript. Azure Blob storage is Microsoft's object storage solution for the cloud. Follow steps to install the package and try out example code for basic tasks. Blob storage is optimized for storing massive amounts of unstructured data.
15+
In this quickstart, you learn to manage blobs by using Node.js. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll upload, download, and list blobs, and you'll create and delete containers.
1616

17-
> [!NOTE]
18-
> To get started with the previous SDK version, see [Quickstart: Azure Blob storage client library for JavaScript](storage-quickstart-blobs-nodejs-legacy.md).
17+
[API reference documentation](/javascript/api/@azure/storage-blob) | [Library source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-blob) | [Package (Node Package Manager)](https://www.npmjs.com/package/@azure/storage-blob) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-blob/samples)
1918

20-
Use the Azure Blob storage client library v12 for JavaScript to:
19+
## Prerequisites
2120

22-
* Create a container
23-
* Upload a blob to Azure Storage
24-
* List all of the blobs in a container
25-
* Download the blob to your local computer
26-
* Delete a container
21+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
22+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
23+
- [Node.js](https://nodejs.org/en/download/).
2724

28-
[API reference documentation](/javascript/api/@azure/storage-blob) | [Library source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-blob) | [Package (Node Package Manager)](https://www.npmjs.com/package/@azure/storage-blob) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-blob/samples)
25+
> [!NOTE]
26+
> To get started with the previous SDK version, see [Quickstart: Manage blobs with JavaScript v10 SDK in Node.js](storage-quickstart-blobs-nodejs-legacy.md).
2927
3028
[!INCLUDE [storage-multi-protocol-access-preview](../../../includes/storage-multi-protocol-access-preview.md)]
3129

32-
## Prerequisites
33-
34-
* Azure subscription - [create one for free](https://azure.microsoft.com/free/)
35-
* Azure storage account - [create a storage account](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account)
36-
* Current [Node.js](https://nodejs.org/en/download/) for your operating system.
37-
3830
## Setting up
3931

4032
This section walks you through preparing a project to work with the Azure Blob storage client library v12 for JavaScript.

articles/storage/blobs/storage-quickstart-blobs-python-legacy.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,25 @@ title: 'Quickstart: Azure Blob storage client library v2.1 for Python'
33
description: In this quickstart, you create a storage account and a container in object (Blob) storage. Then you use the storage client library v2.1 for Python to upload a blob to Azure Storage, download a blob, and list the blobs in a container.
44
author: mhopkins-msft
55
ms.author: mhopkins
6-
ms.date: 09/11/2019
6+
ms.date: 01/24/2020
77
ms.service: storage
88
ms.subservice: blobs
99
ms.topic: quickstart
1010
ms.custom: seo-python-october2019
1111
---
1212

13-
# Quickstart: Azure Blob storage client library v2.1 for Python
13+
# Quickstart: Manage blobs with Python v2.1 SDK
1414

15-
In this article, you use Python to upload, download, and list block blobs in a container in Azure Blob storage. Blobs are simply objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. Blobs in Azure Storage are different from file shares, schema-less tables, and message queues. For more info, see [Introduction to Azure Storage](/azure/storage/common/storage-introduction).
16-
17-
[!INCLUDE [storage-multi-protocol-access-preview](../../../includes/storage-multi-protocol-access-preview.md)]
15+
In this article, you use Python to upload, download, and list block blobs in a container in Azure Blob storage. Blobs are objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. You'll upload, download, and list blobs, and you'll create and delete containers.
1816

1917
## Prerequisites
2018

21-
[!INCLUDE [storage-quickstart-prereq-include](../../../includes/storage-quickstart-prereq-include.md)]
22-
23-
Make sure you have the following additional prerequisites installed:
19+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
20+
- An Azure Storage account. [Create a storage account](../common/storage-account-create.md).
21+
- [Python](https://www.python.org/downloads/).
22+
- [Azure Storage SDK for Python](https://github.com/Azure/azure-sdk-for-python)
2423

25-
* [Python](https://www.python.org/downloads/)
26-
27-
* [Azure Storage SDK for Python](https://github.com/Azure/azure-sdk-for-python)
24+
[!INCLUDE [storage-multi-protocol-access-preview](../../../includes/storage-multi-protocol-access-preview.md)]
2825

2926
## Download the sample application
3027

0 commit comments

Comments
 (0)