Skip to content

Commit db518bb

Browse files
Update Java samples page
1 parent 68b696a commit db518bb

File tree

2 files changed

+58
-290
lines changed

2 files changed

+58
-290
lines changed

articles/storage/common/storage-samples-dotnet.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: devx-track-dotnet
1313

1414
# Azure Storage samples using .NET client libraries
1515

16-
The following table provides an overview of our samples repository and the scenarios covered in each sample. Click on the links to view the corresponding sample code in GitHub.
16+
This article provides an overview of code sample scenarios found in our developer guides and samples repository. Click on the links to view the corresponding samples, either in our developer guides or in GitHub.
1717

1818
> [!NOTE]
1919
> These samples use the latest Azure Storage .NET v12 library. For legacy v11 code, see [Azure Blob Storage Samples for .NET](https://github.com/Azure-Samples/storage-blob-dotnet-getting-started) in the GitHub repository.
@@ -24,7 +24,8 @@ The following table links to Azure Blob Storage developer guides and samples tha
2424

2525
| Topic | Developer guide | Samples on GitHub |
2626
|-------|-----------------|----------------------|
27-
| Authentication/authorization | [Authorize access and connect to Blob Storage](../blobs/storage-blob-dotnet-get-started.md#authorize-access-and-connect-to-blob-storage)</br></br>[Create a user delegation SAS for a blob](../blobs/storage-blob-user-delegation-sas.md)</br></br>[Create a service SAS for a blob](../blobs/sas-service-create-dotnet.md)</br></br>[Create an account SAS](storage-account-sas-create-dotnet.md) | [Authenticate with Azure Identity](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01a_HelloWorld.cs#L210)</br></br>[Authenticate using an Active Directory token](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs#L177)</br></br>[Authenticate using a connection string](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs#L27)</br></br>[Authenticate using a shared key credential](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs#L91)
27+
| Authentication/authorization | [Authorize access and connect to Blob Storage](../blobs/storage-blob-dotnet-get-started.md#authorize-access-and-connect-to-blob-storage)</br></br>[Create a user delegation SAS for a blob](../blobs/storage-blob-user-delegation-sas.md)</br></br>[Create a service SAS for a blob](../blobs/sas-service-create-dotnet.md)</br></br>[Create an account SAS](storage-account-sas-create-dotnet.md) | [Authenticate with Azure Identity](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01a_HelloWorld.cs#L210)</br></br>[Authenticate using an Active Directory token](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs#L177)</br></br>[Authenticate using a connection string](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs#L27)</br></br>[Authenticate using a shared key credential](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs#L91) |
28+
| Create container | [Create a container](../blobs/storage-blob-container-create.md) | |
2829
| Upload | [Upload a blob](../blobs/storage-blob-upload.md) | [Upload a file to a blob](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs#L21) |
2930
| Download | [Download a blob](../blobs/storage-blob-download.md) | [Download a blob to a file](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs#L66)</br></br>[Download an image](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs#L109) |
3031
| List | [List containers](../blobs/storage-blob-containers-list.md)</br></br>[List blobs](../blobs/storage-blob-list.md) | [List all blobs in a container](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs#L128) |
@@ -36,8 +37,8 @@ The following table links to Azure Blob Storage developer guides and samples tha
3637
| Snapshots | [Create and manage a blob snapshot](../blobs/snapshots-manage-dotnet.md) | |
3738
| Blob versions | [Create and list blob versions](../blobs/versions-manage-dotnet.md) | |
3839
| Append blob | [Append data to an append blob](../blobs/storage-blob-append.md) | |
39-
| Batching | | [Delete several blobs in one request](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L22)</br></br>[Set several blob access tiers in one request](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L56)</br></br>[Fine-grained control in a batch request](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L90)</br></br>[Catch errors from a failed sub-operation](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L136) |
40-
| Troubleshooting | | [Trigger a recoverable error using a container client](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs#L166) |
40+
| Batching | | [Delete several blobs in one request](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L22)</br></br>[Set several blob access tiers in one request](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L56)</br></br>[Fine-grained control in a batch request](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L90)</br></br>[Catch errors from a failed sub-operation](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.Batch/samples/Sample03b_BatchingAsync.cs#L136) |
41+
| Troubleshooting | | [Trigger a recoverable error using a container client](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs#L166) |
4142

4243
## Data Lake Storage samples
4344

0 commit comments

Comments
 (0)