Skip to content

Commit c224167

Browse files
authored
Merge pull request #96454 from mhopkins-msft/master
Version updates
2 parents 4c8fb4f + c310a85 commit c224167

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

articles/cosmos-db/table-storage-how-to-use-c-plus.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ In this guide, you use storage features from a C++ application. To do so, instal
4343

4444
To install the Azure Storage Client Library for C++, use the following methods:
4545

46-
* Linux. Follow the instructions given in [Azure Storage Client Library for C++](https://github.com/Azure/azure-storage-cpp/blob/master/README.md).
47-
* Windows. In Visual Studio, select **Tools > NuGet Package Manager > Package Manager Console**. Run the following command in the **Package Management Console**:
46+
* **Linux:** Follow the instructions given in the [Azure Storage Client Library for C++ README: Getting Started on Linux](https://github.com/Azure/azure-storage-cpp#getting-started-on-linux) page.
47+
* **Windows:** On Windows, use [vcpkg](https://github.com/microsoft/vcpkg) as the dependency manager. Follow the [quick-start](https://github.com/microsoft/vcpkg#quick-start) to initialize vcpkg. Then, use the following command to install the library:
4848

49-
```powershell
50-
Install-Package wastorage
51-
```
49+
```powershell
50+
.\vcpkg.exe install azure-storage-cpp
51+
```
5252

53-
For more information about **Package Management Console**, see [Install and manage packages with the Package Manager Console in Visual Studio](/nuget/tools/package-manager-console).
53+
You can find a guide for how to build the source code and export to Nuget in the [README](https://github.com/Azure/azure-storage-cpp#download--install) file.
5454

5555
### Configure access to the Table client library
5656

articles/storage/blobs/storage-c-plus-plus-how-to-use-blobs.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,14 @@ To do so, you will need to install the Azure Storage Client Library for C++ and
2828

2929
To install the Azure Storage Client Library for C++, you can use the following methods:
3030

31-
* **Linux:** Follow the instructions given in the [Azure Storage Client Library for C++ README](https://github.com/Azure/azure-storage-cpp/blob/master/README.md) page.
32-
* **Windows:** In Visual Studio, click **Tools > NuGet Package Manager > Package Manager Console**. Type the following command into the [NuGet Package Manager console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console) and press **ENTER**.
33-
34-
Install-Package wastorage
31+
* **Linux:** Follow the instructions given in the [Azure Storage Client Library for C++ README: Getting Started on Linux](https://github.com/Azure/azure-storage-cpp#getting-started-on-linux) page.
32+
* **Windows:** On Windows, use [vcpkg](https://github.com/microsoft/vcpkg) as the dependency manager. Follow the [quick-start](https://github.com/microsoft/vcpkg#quick-start) to initialize vcpkg. Then, use the following command to install the library:
33+
34+
```powershell
35+
.\vcpkg.exe install azure-storage-cpp
36+
```
37+
38+
You can find a guide for how to build the source code and export to Nuget in the [README](https://github.com/Azure/azure-storage-cpp#download--install) file.
3539

3640
## Configure your application to access Blob storage
3741
Add the following include statements to the top of the C++ file where you want to use the Azure storage APIs to access blobs:

articles/storage/queues/storage-c-plus-plus-how-to-use-queues.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ To do so, you will need to install the Azure Storage Client Library for C++ and
3535

3636
To install the Azure Storage Client Library for C++, you can use the following methods:
3737

38-
* **Linux:** Follow the instructions given in the [Azure Storage Client Library for C++ README](https://github.com/Azure/azure-storage-cpp/blob/master/README.md) page.
39-
* **Windows:** In Visual Studio, click **Tools > NuGet Package Manager > Package Manager Console**. Type the following command into the [NuGet Package Manager console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console) and press **ENTER**.
38+
* **Linux:** Follow the instructions given in the [Azure Storage Client Library for C++ README: Getting Started on Linux](https://github.com/Azure/azure-storage-cpp#getting-started-on-linux) page.
39+
* **Windows:** On Windows, use [vcpkg](https://github.com/microsoft/vcpkg) as the dependency manager. Follow the [quick-start](https://github.com/microsoft/vcpkg#quick-start) to initialize vcpkg. Then, use the following command to install the library:
4040

4141
```powershell
42-
Install-Package wastorage
42+
.\vcpkg.exe install azure-storage-cpp
4343
```
4444

45+
You can find a guide for how to build the source code and export to Nuget in the [README](https://github.com/Azure/azure-storage-cpp#download--install) file.
46+
4547
## Configure your application to access Queue Storage
4648
Add the following include statements to the top of the C++ file where you want to use the Azure storage APIs to access queues:
4749

articles/storage/queues/storage-python-how-to-use-queue-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: How to use Azure Queue storage from Python - Azure Storage
3-
description: Learn how to use the Azure Queue service from Python to create and delete queues, and insert, get, and delete messages.
2+
title: How to use Azure Queue storage v2.1 from Python - Azure Storage
3+
description: Learn how to use the Azure Queue service v2.1 from Python to create and delete queues, and insert, get, and delete messages.
44
author: mhopkins-msft
55
ms.service: storage
66

@@ -13,7 +13,7 @@ ms.reviewer: cbrooks
1313
ms.custom: seo-javascript-october2019
1414
---
1515

16-
# How to use Azure Queue storage from Python
16+
# How to use Azure Queue storage v2.1 from Python
1717

1818
[!INCLUDE [storage-selector-queue-include](../../../includes/storage-selector-queue-include.md)]
1919

@@ -38,7 +38,7 @@ The [Azure Storage SDK for Python](https://github.com/azure/azure-storage-python
3838
To install via the Python Package Index (PyPI), type:
3939

4040
```bash
41-
pip install azure-storage-queue
41+
pip install azure-storage-blob==2.1.0
4242
```
4343

4444
> [!NOTE]

0 commit comments

Comments
 (0)