Skip to content

Commit 00eb5eb

Browse files
Add to TOC
1 parent 5a403f6 commit 00eb5eb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

articles/storage/blobs/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -989,6 +989,8 @@ items:
989989
href: storage-blobs-list-go.md
990990
- name: Delete and restore blobs
991991
href: storage-blob-delete-go.md
992+
- name: Find blobs using tags
993+
href: storage-blob-tags-go.md
992994
- name: Manage blob properties and metadata
993995
href: storage-blob-properties-metadata-go.md
994996
- name: Test with a storage emulator

articles/storage/blobs/storage-blob-go-get-started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: pauljewell
88

99
ms.service: azure-blob-storage
1010
ms.topic: how-to
11-
ms.date: 05/22/2024
11+
ms.date: 06/26/2024
1212
ms.devlang: golang
1313
ms.custom: devx-track-go, devguide-go
1414
---
@@ -123,6 +123,7 @@ The following guides show you how to work with data resources and perform specif
123123
| [Download blobs](storage-blob-download-go.md) | Download blobs by using strings, streams, and file paths. |
124124
| [List blobs](storage-blobs-list-go.md) | List blobs in different ways. |
125125
| [Delete and restore blobs](storage-blob-delete-go.md) | Delete blobs, and if soft-delete is enabled, restore deleted blobs. |
126+
| [Find blobs using tags](storage-blob-tags-go.md) | Set and retrieve tags, and use tags to find blobs. |
126127
| [Manage properties and metadata (blobs)](storage-blob-properties-metadata-go.md) | Manage container properties and metadata. |
127128

128129
[!INCLUDE [storage-dev-guide-code-samples-note-go](../../../includes/storage-dev-guides/storage-dev-guide-code-samples-note-go.md)]

articles/storage/blobs/storage-blob-tags-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 06/10/2024
9+
ms.date: 06/26/2024
1010
ms.service: azure-blob-storage
1111
ms.topic: how-to
1212
ms.devlang: golang
@@ -39,7 +39,7 @@ You can set tags by using the following method:
3939

4040
- [SetTags](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob#Client.SetTags)
4141

42-
The specified tags in this method will replace existing tags. If existing values must be preserved, they must be downloaded and included in the call to this method. The following example shows how to set tags:
42+
The tags specified in this method replace any existing tags. If existing values must be preserved, they must be downloaded and included in the call to this method. The following example shows how to set tags:
4343

4444
:::code language="go" source="~/blob-devguide-go/cmd/blob-index-tags/blob_index_tags.go" id="snippet_set_blob_tags":::
4545

0 commit comments

Comments
 (0)