Skip to content

Commit b0fa9ca

Browse files
Merge pull request #285301 from pauljewellmsft/next-steps-java
Add next steps to dev guide articles - Java
2 parents f53bffc + 309f700 commit b0fa9ca

21 files changed

+136
-81
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,16 @@ The following example creates a new `BlobContainerClient` object with the contai
6161

6262
To learn more about creating a container using the Azure Blob Storage client library for Java, see the following resources.
6363

64+
### Code samples
65+
66+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerCreate.java)
67+
6468
### REST API operations
6569

6670
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for creating a container use the following REST API operation:
6771

6872
- [Create Container](/rest/api/storageservices/create-container) (REST API)
6973

70-
### Code samples
71-
72-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerCreate.java)
73-
7474
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
75+
76+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,22 @@ The following example finds a deleted container, gets the version of that delete
6262

6363
To learn more about deleting a container using the Azure Blob Storage client library for Java, see the following resources.
6464

65+
### Code samples
66+
67+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerDelete.java)
68+
6569
### REST API operations
6670

6771
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for deleting or restoring a container use the following REST API operations:
6872

6973
- [Delete Container](/rest/api/storageservices/delete-container) (REST API)
7074
- [Restore Container](/rest/api/storageservices/restore-container) (REST API)
7175

72-
### Code samples
73-
74-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerDelete.java)
75-
7676
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
7777

7878
### See also
7979

8080
- [Soft delete for containers](soft-delete-container-overview.md)
8181
- [Enable and manage soft delete for containers](soft-delete-container-enable.md)
82+
83+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

articles/storage/blobs/storage-blob-container-lease-java.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,20 @@ The following example breaks the lease on a container:
8585

8686
To learn more about leasing a container using the Azure Blob Storage client library for Java, see the following resources.
8787

88+
### Code samples
89+
90+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerLease.java)
91+
8892
### REST API operations
8993

9094
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for leasing a container use the following REST API operation:
9195

9296
- [Lease Container](/rest/api/storageservices/lease-container) (REST API)
9397

94-
### Code samples
95-
96-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerLease.java)
97-
9898
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
9999

100100
## See also
101101

102102
- [Managing Concurrency in Blob storage](concurrency-manage.md)
103+
104+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ The following example reads in metadata values:
6969

7070
To learn more about setting and retrieving container properties and metadata using the Azure Blob Storage client library for Java, see the following resources.
7171

72+
### Code samples
73+
74+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerPropertiesMetadata.java)
75+
7276
### REST API operations
7377

7478
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for setting and retrieving properties and metadata use the following REST API operations:
@@ -79,8 +83,6 @@ The Azure SDK for Java contains libraries that build on top of the Azure REST AP
7983

8084
The `getProperties` method retrieves container properties and metadata by calling both the [Get Blob Properties](/rest/api/storageservices/get-blob-properties) operation and the [Get Blob Metadata](/rest/api/storageservices/get-blob-metadata) operation.
8185

82-
### Code samples
83-
84-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerPropertiesMetadata.java)
85-
8686
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
87+
88+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

articles/storage/blobs/storage-blob-container-user-delegation-sas-create-java.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,21 @@ The following code example shows how to use the user delegation SAS created in t
5252

5353
To learn more about creating a user delegation SAS using the Azure Blob Storage client library for Java, see the following resources.
5454

55+
### Code samples
56+
57+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobSAS.java)
58+
5559
### REST API operations
5660

5761
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library method for getting a user delegation key uses the following REST API operation:
5862

5963
- [Get User Delegation Key](/rest/api/storageservices/get-user-delegation-key) (REST API)
6064

61-
### Code samples
62-
63-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobSAS.java)
64-
6565
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
6666

6767
### See also
6868

6969
- [Grant limited access to Azure Storage resources using shared access signatures (SAS)](../common/storage-sas-overview.md)
7070
- [Create a user delegation SAS](/rest/api/storageservices/create-user-delegation-sas)
71+
72+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,20 @@ You can also return a smaller set of results, by specifying the size of the page
8383

8484
To learn more about listing containers using the Azure Blob Storage client library for Java, see the following resources.
8585

86+
### Code samples
87+
88+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerList.java)
89+
8690
### REST API operations
8791

8892
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for listing containers use the following REST API operation:
8993

9094
- [List Containers](/rest/api/storageservices/list-containers2) (REST API)
9195

92-
### Code samples
93-
94-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-containers/src/main/java/com/blobs/devguide/containers/ContainerList.java)
95-
9696
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
9797

9898
## See also
9999

100100
- [Enumerating Blob Resources](/rest/api/storageservices/enumerating-blob-resources)
101+
102+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,17 @@ This method wraps the [Abort Copy Blob](/rest/api/storageservices/abort-copy-blo
8181

8282
To learn more about copying blobs using the Azure Blob Storage client library for Java, see the following resources.
8383

84+
### Code samples
85+
86+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobCopy.java)
87+
8488
### REST API operations
8589

8690
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods covered in this article use the following REST API operations:
8791

8892
- [Copy Blob](/rest/api/storageservices/copy-blob) (REST API)
8993
- [Abort Copy Blob](/rest/api/storageservices/abort-copy-blob) (REST API)
9094

91-
### Code samples
92-
93-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobCopy.java)
94-
9595
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
96+
97+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,5 @@ The Azure SDK for Java contains libraries that build on top of the Azure REST AP
7676
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobCopy.java)
7777

7878
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
79+
80+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,20 +131,22 @@ This method restores the content and metadata of a soft-deleted blob and any ass
131131

132132
To learn more about how to delete blobs and restore deleted blobs using the Azure Blob Storage client library for Java, see the following resources.
133133

134+
### Code samples
135+
136+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobDelete.java)
137+
134138
### REST API operations
135139

136140
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for deleting blobs and restoring deleted blobs use the following REST API operations:
137141

138142
- [Delete Blob](/rest/api/storageservices/delete-blob) (REST API)
139143
- [Undelete Blob](/rest/api/storageservices/undelete-blob) (REST API)
140144

141-
### Code samples
142-
143-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobDelete.java)
144-
145145
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
146146

147147
### See also
148148

149149
- [Soft delete for blobs](soft-delete-blob-overview.md)
150150
- [Blob versioning](versioning-overview.md)
151+
152+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,16 @@ To learn more about tuning data transfer options, see [Performance tuning for up
8484

8585
To learn more about how to download blobs using the Azure Blob Storage client library for Java, see the following resources.
8686

87+
### Code samples
88+
89+
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobDownload.java)
90+
8791
### REST API operations
8892

8993
The Azure SDK for Java contains libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar Java paradigms. The client library methods for downloading blobs use the following REST API operation:
9094

9195
- [Get Blob](/rest/api/storageservices/get-blob) (REST API)
9296

93-
### Code samples
94-
95-
- [View code samples from this article (GitHub)](https://github.com/Azure-Samples/AzureStorageSnippets/blob/master/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobDownload.java)
96-
9797
[!INCLUDE [storage-dev-guide-resources-java](../../../includes/storage-dev-guides/storage-dev-guide-resources-java.md)]
98+
99+
[!INCLUDE [storage-dev-guide-next-steps-java](../../../includes/storage-dev-guides/storage-dev-guide-next-steps-java.md)]

0 commit comments

Comments
 (0)