You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-container-properties-metadata-go.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,4 +87,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
87
87
88
88
The `get_container_properties` method retrieves container properties and metadata by calling both the [Get Container Properties](/rest/api/storageservices/get-container-properties) operation and the [Get Container Metadata](/rest/api/storageservices/get-container-metadata) operation.
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-go-get-started.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ Blob client module information:
59
59
60
60
## Authorize access and connect to Blob Storage
61
61
62
-
To connect an application to Blob Storage, create a client object using [azblob.NewClient](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob#NewClient). This object is your starting point to interact with data resources at the storage account level. You can use it to operate on the storage account and its containers.
62
+
To connect an app to Blob Storage, create a client object using [azblob.NewClient](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob#NewClient). This object is your starting point to interact with data resources at the storage account level. You can use it to operate on the storage account and its containers.
63
63
64
64
To learn more about creating and managing client objects, including best practices, see [Create and manage client objects that interact with data resources](storage-blob-client-management.md).
65
65
@@ -107,23 +107,25 @@ For information about how to obtain account keys and best practice guidelines fo
107
107
108
108
---
109
109
110
-
## Build your application
110
+
## Build your app
111
111
112
-
As you build applications to work with data resources in Azure Blob Storage, your code primarily interacts with three resource types: storage accounts, containers, and blobs. To learn more about these resource types, how they relate to one another, and how apps interact with resources, see [Understand how apps interact with Blob Storage data resources](storage-blob-object-model.md).
112
+
As you build apps to work with data resources in Azure Blob Storage, your code primarily interacts with three resource types: storage accounts, containers, and blobs. To learn more about these resource types, how they relate to one another, and how apps interact with resources, see [Understand how apps interact with Blob Storage data resources](storage-blob-object-model.md).
113
113
114
-
The following guides show you how to work with data resources and perform specific actions using the Azure Blob Storage client module for Go:
114
+
The following guides show you how to access data and perform specific actions using the Azure Blob Storage client module for Go:
115
115
116
116
| Guide | Description |
117
-
|--|---|
117
+
| --- | --- |
118
+
|[Configure a retry policy](storage-retry-policy-python.md)| Implement retry policies for client operations. |
119
+
|[Copy blobs](storage-blob-copy-go.md)| Copy a blob from one location to another. |
118
120
|[Create a container](storage-blob-container-create-go.md)| Create containers. |
121
+
|[Delete and restore blobs](storage-blob-delete-go.md)| Delete blobs, and if soft-delete is enabled, restore deleted blobs. |
119
122
|[Delete and restore containers](storage-blob-container-delete-go.md)| Delete containers, and if soft-delete is enabled, restore deleted containers. |
120
-
|[List containers](storage-blob-containers-list-go.md)| List containers in an account and the various options available to customize a listing. |
121
-
|[Manage properties and metadata (containers)](storage-blob-container-properties-metadata-go.md)| Manage container properties and metadata. |
122
-
|[Upload blobs](storage-blob-upload-go.md)| Learn how to upload blobs by using strings, streams, file paths, and other methods. |
123
123
|[Download blobs](storage-blob-download-go.md)| Download blobs by using strings, streams, and file paths. |
124
-
|[List blobs](storage-blobs-list-go.md)| List blobs in different ways. |
125
-
|[Delete and restore blobs](storage-blob-delete-go.md)| Delete blobs, and if soft-delete is enabled, restore deleted blobs. |
126
124
|[Find blobs using tags](storage-blob-tags-go.md)| Set and retrieve tags, and use tags to find blobs. |
125
+
|[List blobs](storage-blobs-list-go.md)| List blobs in different ways. |
126
+
|[List containers](storage-blob-containers-list-go.md)| List containers in an account and the various options available to customize a listing. |
127
127
|[Manage properties and metadata (blobs)](storage-blob-properties-metadata-go.md)| Manage container properties and metadata. |
128
+
|[Manage properties and metadata (containers)](storage-blob-container-properties-metadata-go.md)| Manage container properties and metadata. |
129
+
|[Upload blobs](storage-blob-upload-go.md)| Learn how to upload blobs by using strings, streams, file paths, and other methods. |
0 commit comments