Skip to content

Commit 9f1718b

Browse files
Merge pull request #247271 from pauljewellmsft/pauljewell-devguide-cleanup
Blob dev guide cleanup items
2 parents a10084d + 1c4548c commit 9f1718b

13 files changed

+39
-88
lines changed

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,7 @@ Blobs in Azure Storage are organized into containers. Before you can upload a bl
2323
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to create a blob container. To learn more, see the authorization guidance for the following REST API operation:
2424
- [Create Container](/rest/api/storageservices/create-container#authorization)
2525

26-
## Name a container
27-
28-
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
29-
30-
- Container names can be between 3 and 63 characters long.
31-
- Container names must start with a letter or number, and can contain only lowercase letters, numbers, and the dash (-) character.
32-
- Two or more consecutive dash characters aren't permitted in container names.
33-
34-
The URI for a container is in this format:
35-
36-
`https://accountname.blob.core.windows.net/containername`
26+
[!INCLUDE [storage-dev-guide-about-container-naming](../../../includes/storage-dev-guides/storage-dev-guide-about-container-naming.md)]
3727

3828
## Create a container
3929

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,7 @@ Blobs in Azure Storage are organized into containers. Before you can upload a bl
2222
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to create a blob container. To learn more, see the authorization guidance for the following REST API operation:
2323
- [Create Container](/rest/api/storageservices/create-container#authorization)
2424

25-
## Name a container
26-
27-
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
28-
29-
- Container names can be between 3 and 63 characters long.
30-
- Container names must start with a letter or number, and can contain only lowercase letters, numbers, and the dash (-) character.
31-
- Two or more consecutive dash characters aren't permitted in container names.
32-
33-
The URI for a container is in this format:
34-
35-
`https://myaccount.blob.core.windows.net/mycontainer`
25+
[!INCLUDE [storage-dev-guide-about-container-naming](../../../includes/storage-dev-guides/storage-dev-guide-about-container-naming.md)]
3626

3727
## Create a container
3828

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,7 @@ Blobs in Azure Storage are organized into containers. Before you can upload a bl
2323
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to create a blob container. To learn more, see the authorization guidance for the following REST API operation:
2424
- [Create Container](/rest/api/storageservices/create-container#authorization)
2525

26-
## Container names
27-
28-
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
29-
30-
- Container names can be between 3 and 63 characters long.
31-
- Container names must start with a letter or number, and can contain only lowercase letters, numbers, and the dash (-) character.
32-
- Two or more consecutive dash characters aren't permitted in container names.
33-
34-
The URI for a container is in this format:
35-
36-
`https://accountname.blob.core.windows.net/containername`
26+
[!INCLUDE [storage-dev-guide-about-container-naming](../../../includes/storage-dev-guides/storage-dev-guide-about-container-naming.md)]
3727

3828
## Create a container
3929

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,7 @@ Blobs in Azure Storage are organized into containers. Before you can upload a bl
2222
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to create a blob container. To learn more, see the authorization guidance for the following REST API operation:
2323
- [Create Container](/rest/api/storageservices/create-container#authorization)
2424

25-
## Name a container
26-
27-
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
28-
29-
- Container names can be between 3 and 63 characters long.
30-
- Container names must start with a letter or number, and can contain only lowercase letters, numbers, and the dash (-) character.
31-
- Two or more consecutive dash characters aren't permitted in container names.
32-
33-
The URI for a container is in this format:
34-
35-
`https://myaccount.blob.core.windows.net/mycontainer`
25+
[!INCLUDE [storage-dev-guide-about-container-naming](../../../includes/storage-dev-guides/storage-dev-guide-about-container-naming.md)]
3626

3727
## Create a container
3828

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,7 @@ Blobs in Azure Storage are organized into containers. Before you can upload a bl
2323
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to create a blob container. To learn more, see the authorization guidance for the following REST API operation:
2424
- [Create Container](/rest/api/storageservices/create-container#authorization)
2525

26-
## Name a container
27-
28-
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
29-
30-
- Container names can be between 3 and 63 characters long.
31-
- Container names must start with a letter or number, and can contain only lowercase letters, numbers, and the dash (-) character.
32-
- Two or more consecutive dash characters aren't permitted in container names.
33-
34-
The URI for a container is in this format:
35-
36-
`https://myaccount.blob.core.windows.net/mycontainer`
26+
[!INCLUDE [storage-dev-guide-about-container-naming](../../../includes/storage-dev-guides/storage-dev-guide-about-container-naming.md)]
3727

3828
## Create a container
3929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When you list the containers in an Azure Storage account from your code, you can
2323
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to list blob containers. To learn more, see the authorization guidance for the following REST API operation:
2424
- [List Containers](/rest/api/storageservices/list-containers2#authorization)
2525

26-
## Understand container listing options
26+
## About container listing options
2727

2828
To list containers in your storage account, call the following method:
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ When you list the containers in an Azure Storage account from your code, you can
2424
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to list blob containers. To learn more, see the authorization guidance for the following REST API operation:
2525
- [List Containers](/rest/api/storageservices/list-containers2#authorization)
2626

27-
## Understand container listing options
27+
## About container listing options
2828

2929
To list containers in your storage account, create a [BlobServiceClient](storage-blob-javascript-get-started.md#create-a-blobserviceclient-object) object then call the following method:
3030

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When you list the containers in an Azure Storage account from your code, you can
2323
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to list blob containers. To learn more, see the authorization guidance for the following REST API operation:
2424
- [List Containers](/rest/api/storageservices/list-containers2#authorization)
2525

26-
## Container listing options
26+
## About container listing options
2727

2828
To list containers in your storage account, call the following method:
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ When you list the containers in an Azure Storage account from your code, you can
2424
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to list blob containers. To learn more, see the authorization guidance for the following REST API operation:
2525
- [List Containers](/rest/api/storageservices/list-containers2#authorization)
2626

27-
## Understand container listing options
27+
## About container listing options
2828

2929
To list containers in your storage account, create a [BlobServiceClient](storage-blob-typescript-get-started.md#create-a-blobserviceclient-object) object then call the following method:
3030

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When you list the containers in an Azure Storage account from your code, you can
2323
- The [authorization mechanism](../common/authorize-data-access.md) must have permissions to list blob containers. To learn more, see the authorization guidance for the following REST API operation:
2424
- [List Containers](/rest/api/storageservices/list-containers2#authorization)
2525

26-
## Understand container listing options
26+
## About container listing options
2727

2828
To list containers in your storage account, call one of the following methods:
2929

0 commit comments

Comments
 (0)