Skip to content

Commit 0e7d048

Browse files
Update metadata, H1s, and intros for consistency across languages
1 parent 3e76e14 commit 0e7d048

35 files changed

+75
-60
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Create a blob container with Java - Azure Storage
2+
title: Create a blob container with Java
3+
titleSuffix: Azure Storage
34
description: Learn how to create a blob container in your Azure Storage account using the Java client library.
45
services: storage
56
author: pauljewellmsft
@@ -13,7 +14,7 @@ ms.devlang: java
1314
ms.custom: devx-track-java, devguide-java
1415
---
1516

16-
# Create a container in Azure Storage using the Java client library
17+
# Create a blob container with Java
1718

1819
Blobs in Azure Storage are organized into containers. Before you can upload a blob, you must first create a container. This article shows how to create containers with the [Azure Storage client library for Java](/java/api/overview/azure/storage-blob-readme).
1920

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.devlang: javascript
1313
ms.custom: devx-track-js, devguide-js
1414
---
1515

16-
# Create a container in Azure Storage with JavaScript
16+
# Create a blob container with JavaScript
1717

1818
Blobs in Azure Storage are organized into containers. Before you can upload a blob, you must first create a container. This article shows how to create containers with the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob).
1919

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.devlang: csharp
1414
ms.custom: devx-track-csharp, devguide-csharp
1515
---
1616

17-
# Create a container in Azure Storage with .NET
17+
# Create a blob container with .NET
1818

1919
Blobs in Azure Storage are organized into containers. Before you can upload a blob, you must first create a container. This article shows how to create containers with the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage).
2020

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Delete and restore a blob container with Java - Azure Storage
2+
title: Delete and restore a blob container with Java
3+
titleSuffix: Azure Storage
34
description: Learn how to delete and restore a blob container in your Azure Storage account using the Java client library.
45
services: storage
56
author: pauljewellmsft
@@ -13,7 +14,7 @@ ms.devlang: java
1314
ms.custom: devx-track-java, devguide-java
1415
---
1516

16-
# Delete and restore a container in Azure Storage using the Java client library
17+
# Delete and restore a blob container with Java
1718

1819
This article shows how to delete containers with the [Azure Storage client library for Java](/java/api/overview/azure/storage-blob-readme). If you've enabled [container soft delete](soft-delete-container-overview.md), you can restore deleted containers.
1920

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ms.devlang: javascript
1414
ms.custom: devx-track-js, devguide-js
1515
---
1616

17-
# Delete and restore a container in Azure Storage with JavaScript
17+
# Delete and restore a blob container with JavaScript
1818

19-
This article shows how to delete containers with the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob). If you've enabled container soft delete, you can restore deleted containers.
19+
This article shows how to delete containers with the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob). If you've enabled [container soft delete](soft-delete-container-overview.md), you can restore deleted containers.
2020

2121
The [sample code snippets](https://github.com/Azure-Samples/AzureStorageSnippets/tree/master/blobs/howto/JavaScript/NodeJS-v12/dev-guide) are available in GitHub as runnable Node.js files.
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ms.devlang: csharp
1515
ms.custom: devx-track-csharp, devguide-csharp
1616
---
1717

18-
# Delete and restore a container in Azure Storage with .NET
18+
# Delete and restore a blob container with .NET
1919

20-
This article shows how to delete containers with the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage). If you've enabled container soft delete, you can restore deleted containers.
20+
This article shows how to delete containers with the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage). If you've enabled [container soft delete](soft-delete-container-overview.md), you can restore deleted containers.
2121

2222
> [!NOTE]
2323
> The examples in this article assume that you've created a [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) object by using the guidance in the [Get started with Azure Blob Storage and .NET](storage-blob-dotnet-get-started.md) article.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Create and manage container leases with Java - Azure Storage
2+
title: Create and manage container leases with Java
3+
titleSuffix: Azure Storage
34
description: Learn how to manage a lock on a container in your Azure Storage account using the Java client library.
45
services: storage
56
author: pauljewellmsft

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Blob containers support system properties and user-defined metadata, in addition
2323

2424
- **User-defined metadata**: User-defined metadata consists of one or more name-value pairs that you specify for a Blob storage resource. You can use metadata to store additional values with the resource. Metadata values are for your own purposes only, and don't affect how the resource behaves.
2525

26-
- **Metadata names**: Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see [Metadata names](/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#metadata-names).
26+
Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see [Metadata names](/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#metadata-names).
2727

2828
## Retrieve container properties
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Blob containers support system properties and user-defined metadata, in addition
2424

2525
- **User-defined metadata**: User-defined metadata consists of one or more name-value pairs that you specify for a Blob storage resource. You can use metadata to store additional values with the resource. Metadata values are for your own purposes only, and do not affect how the resource behaves.
2626

27-
- **Metadata names**: Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see [Metadata names](/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#metadata-names).
27+
Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see [Metadata names](/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#metadata-names).
2828

2929
## Retrieve container properties
3030

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Blob containers support system properties and user-defined metadata, in addition
2323

2424
- **User-defined metadata**: User-defined metadata consists of one or more name-value pairs that you specify for a Blob storage resource. You can use metadata to store additional values with the resource. Metadata values are for your own purposes only, and don't affect how the resource behaves.
2525

26-
- **Metadata names**: Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see [Metadata names](/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#metadata-names).
26+
Metadata name/value pairs are valid HTTP headers and should adhere to all restrictions governing HTTP headers. For more information about metadata naming requirements, see [Metadata names](/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#metadata-names).
2727

2828
## Retrieve container properties
2929

0 commit comments

Comments
 (0)