Skip to content

Commit da6edcc

Browse files
committed
Update docs metadata
1 parent a0fda72 commit da6edcc

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

api/overview/azure/latest/storage.blobs-readme.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Azure Storage Blobs client library for .NET
33
keywords: Azure, dotnet, SDK, API, Azure.Storage.Blobs, storage
44
author: seanmcc-msft
55
ms.author: seanmcc
6-
ms.date: 07/11/2023
6+
ms.date: 09/12/2023
77
ms.topic: reference
88
ms.devlang: dotnet
99
ms.service: storage
1010
---
11-
# Azure Storage Blobs client library for .NET - version 12.17.0
11+
# Azure Storage Blobs client library for .NET - version 12.18.0
1212

1313

1414
> Server Version: 2021-02-12, 2020-12-06, 2020-10-02, 2020-08-04, 2020-06-12, 2020-04-08, 2020-02-10, 2019-12-12, 2019-07-07, and 2019-02-02
@@ -72,19 +72,19 @@ Blob storage offers three types of resources:
7272
- A _container_ in the storage account used via `BlobContainerClient`
7373
- A _blob_ in a container used via `BlobClient`
7474

75-
Learn more about options for authentication _(including Connection Strings, Shared Key, Shared Key Signatures, Active Directory, and anonymous public access)_ [in our samples.](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs)
75+
Learn more about options for authentication _(including Connection Strings, Shared Key, Shared Key Signatures, Active Directory, and anonymous public access)_ [in our samples.](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs)
7676

7777
### Thread safety
7878
We guarantee that all client instance methods are thread-safe and independent of each other ([guideline](https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-service-methods-thread-safety)). This ensures that the recommendation of reusing client instances is always safe, even across threads.
7979

8080
### Additional concepts
8181
<!-- CLIENT COMMON BAR -->
82-
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
83-
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
84-
[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) |
85-
[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) |
86-
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/samples/Diagnostics.md) |
87-
[Mocking](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/README.md#mocking) |
82+
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
83+
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
84+
[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) |
85+
[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) |
86+
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/core/Azure.Core/samples/Diagnostics.md) |
87+
[Mocking](https://learn.microsoft.com/dotnet/azure/sdk/unit-testing-mocking) |
8888
[Client lifetime](https://devblogs.microsoft.com/azure-sdk/lifetime-management-and-thread-safety-guarantees-of-azure-sdk-net-clients/)
8989
<!-- CLIENT COMMON BAR -->
9090

@@ -196,8 +196,8 @@ catch (RequestFailedException ex)
196196

197197
Get started with our [Blob samples][samples]:
198198

199-
1. [Hello World](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/storage/Azure.Storage.Blobs/samples/Sample01a_HelloWorld.cs): Upload, download, and list blobs (or [asynchronously](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs))
200-
2. [Auth](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs): Authenticate with connection strings, public access, shared keys, shared access signatures, and Azure Active Directory.
199+
1. [Hello World](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/storage/Azure.Storage.Blobs/samples/Sample01a_HelloWorld.cs): Upload, download, and list blobs (or [asynchronously](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/storage/Azure.Storage.Blobs/samples/Sample01b_HelloWorldAsync.cs))
200+
2. [Auth](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs): Authenticate with connection strings, public access, shared keys, shared access signatures, and Azure Active Directory.
201201

202202
## Contributing
203203

@@ -217,7 +217,7 @@ additional questions or comments.
217217
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-net%2Fsdk%2Fstorage%2FAzure.Storage.Blobs%2FREADME.png)
218218

219219
<!-- LINKS -->
220-
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Storage.Blobs_12.17.0/sdk/storage/Azure.Storage.Blobs/src
220+
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Storage.Blobs_12.18.0/sdk/storage/Azure.Storage.Blobs/src
221221
[package]: https://www.nuget.org/packages/Azure.Storage.Blobs/
222222
[docs]: /dotnet/api/azure.storage.blobs
223223
[rest_docs]: /rest/api/storageservices/blob-service-rest-api
@@ -229,13 +229,13 @@ additional questions or comments.
229229
[storage_account_create_portal]: /azure/storage/common/storage-quickstart-create-account?tabs=azure-portal
230230
[azure_cli]: /cli/azure
231231
[azure_sub]: https://azure.microsoft.com/free/dotnet/
232-
[identity]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Storage.Blobs_12.17.0/sdk/identity/Azure.Identity/README.md
232+
[identity]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Storage.Blobs_12.18.0/sdk/identity/Azure.Identity/README.md
233233
[storage_ad]: /azure/storage/common/storage-auth-aad
234234
[storage_ad_sample]: samples/Sample02c_Auth_ActiveDirectory.cs
235-
[RequestFailedException]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Storage.Blobs_12.17.0/sdk/core/Azure.Core/src/RequestFailedException.cs
235+
[RequestFailedException]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Storage.Blobs_12.18.0/sdk/core/Azure.Core/src/RequestFailedException.cs
236236
[error_codes]: /rest/api/storageservices/blob-service-error-codes
237-
[samples]: https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/storage/Azure.Storage.Blobs/samples/
238-
[storage_contrib]: https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.17.0/sdk/storage/CONTRIBUTING.md
237+
[samples]: https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/storage/Azure.Storage.Blobs/samples/
238+
[storage_contrib]: https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.18.0/sdk/storage/CONTRIBUTING.md
239239
[cla]: https://cla.microsoft.com
240240
[coc]: https://opensource.microsoft.com/codeofconduct/
241241
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/

metadata/latest/Azure.Storage.Blobs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "Azure.Storage.Blobs",
3-
"Version": "12.17.0",
3+
"Version": "12.18.0",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/storage/Azure.Storage.Blobs",
66
"ServiceDirectory": "storage",
@@ -10,7 +10,7 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "Azure.Storage.Blobs",
13-
"ReleaseStatus": "2023-07-11",
13+
"ReleaseStatus": "2023-09-12",
1414
"Namespaces": [
1515
"Azure.Storage.Blobs",
1616
"Azure.Storage.Blobs.Models",

0 commit comments

Comments
 (0)