Skip to content

Commit f2fe760

Browse files
author
Jill Grant
authored
Merge pull request #285274 from pauljewellmsft/next-steps-go
Add next steps to dev guide articles - Go
2 parents 58fdd24 + b13fffc commit f2fe760

14 files changed

+59
-18
lines changed

articles/storage/blobs/storage-blob-container-create-go.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
7171

7272
- [Create Container](/rest/api/storageservices/create-container) (REST API)
7373

74-
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
74+
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
75+
76+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

articles/storage/blobs/storage-blob-container-delete-go.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
7474

7575
- [Soft delete for containers](soft-delete-container-overview.md)
7676
- [Enable and manage soft delete for containers](soft-delete-container-enable.md)
77+
78+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

articles/storage/blobs/storage-blob-container-properties-metadata-go.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
8787

8888
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.
8989

90-
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
90+
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
91+
92+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

articles/storage/blobs/storage-blob-containers-list-go.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
9191

9292
## See also
9393

94-
- [Enumerating Blob Resources](/rest/api/storageservices/enumerating-blob-resources)
94+
- [Enumerating Blob Resources](/rest/api/storageservices/enumerating-blob-resources)
95+
96+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

articles/storage/blobs/storage-blob-copy-async-go.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,5 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
119119
- [Abort Copy Blob](/rest/api/storageservices/abort-copy-blob) (REST API)
120120

121121
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
122+
123+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

articles/storage/blobs/storage-blob-copy-url-go.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,5 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
9696
- [Put Block From URL](/rest/api/storageservices/put-block-from-url) (REST API)
9797

9898
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
99+
100+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
100100
### See also
101101

102102
- [Soft delete for blobs](soft-delete-blob-overview.md)
103-
- [Blob versioning](versioning-overview.md)
103+
- [Blob versioning](versioning-overview.md)
104+
105+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
6565

6666
- [Get Blob](/rest/api/storageservices/get-blob) (REST API)
6767

68-
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
68+
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
69+
70+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

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

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Blob client module information:
5959

6060
## Authorize access and connect to Blob Storage
6161

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.
6363

6464
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).
6565

@@ -107,23 +107,25 @@ For information about how to obtain account keys and best practice guidelines fo
107107
108108
---
109109

110-
## Build your application
110+
## Build your app
111111

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).
113113

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:
115115

116116
| 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. |
118120
| [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. |
119122
| [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. |
123123
| [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. |
126124
| [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. |
127127
| [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. |
128130

129131
[!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-properties-metadata-go.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,6 @@ The Azure SDK for Go contains libraries that build on top of the Azure REST API,
9797
- [Set Blob Metadata](/rest/api/storageservices/set-blob-metadata) (REST API)
9898
- [Get Blob Metadata](/rest/api/storageservices/get-blob-metadata) (REST API)
9999

100-
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
100+
[!INCLUDE [storage-dev-guide-resources-go](../../../includes/storage-dev-guides/storage-dev-guide-resources-go.md)]
101+
102+
[!INCLUDE [storage-dev-guide-next-steps-go](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-go.md)]

0 commit comments

Comments
 (0)