Skip to content

Commit 7c030af

Browse files
Merge pull request #225545 from pauljewellmsft/pauljewell-python-updates
Python dev guides updates
2 parents 1c28d02 + ce96b9b commit 7c030af

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

articles/storage/blobs/storage-blob-container-properties-metadata.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 do not 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-delete-python.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,5 @@ The Azure SDK for Python contains libraries that build on top of the Azure REST
7979

8080
### See also
8181

82-
- [Soft delete for blobs](soft-delete-blob-overview.md)
82+
- [Soft delete for blobs](soft-delete-blob-overview.md)
83+
- [Blob versioning](versioning-overview.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In addition to the data they contain, blobs support system properties and user-d
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 don't 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
> [!NOTE]
3030
> Blob index tags also provide the ability to store arbitrary user-defined key/value attributes alongside an Azure Blob storage resource. While similar to metadata, only blob index tags are automatically indexed and made searchable by the native blob service. Metadata cannot be indexed and queried unless you utilize a separate service such as Azure Search.

articles/storage/blobs/storage-blob-tags-python.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ To learn more about this feature along with known issues and limitations, see [M
2525
## Set tags
2626

2727
You can set index tags if your code has authorized access to blob data through one of the following mechanisms:
28-
- Azure AD built-in role assigned as [Storage Blob Data Owner](../../role-based-access-control/built-in-roles.md#storage-blob-data-owner) or higher
29-
- Azure RBAC action [Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write](../../role-based-access-control/resource-provider-operations.md#microsoftstorage)
28+
- Security principal that is assigned an Azure RBAC role with the [Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write](../../role-based-access-control/resource-provider-operations.md#microsoftstorage) action. The [Storage Blob Data Owner](../../role-based-access-control/built-in-roles.md#storage-blob-data-owner) is a built-in role that includes this action.
3029
- Shared Access Signature with permission to access the blob's tags (`t` permission)
3130
- Account key
3231

@@ -47,8 +46,7 @@ You can delete all tags by passing an empty `dict` object into the `set_blob_tag
4746
## Get tags
4847

4948
You can get index tags if your code has authorized access to blob data through one of the following mechanisms:
50-
- Azure AD built-in role assigned as [Storage Blob Data Owner](../../role-based-access-control/built-in-roles.md#storage-blob-data-owner) or higher
51-
- Azure RBAC action [Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read](../../role-based-access-control/resource-provider-operations.md#microsoftstorage)
49+
- Security principal that is assigned an Azure RBAC role with the [Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read](../../role-based-access-control/resource-provider-operations.md#microsoftstorage) action. The [Storage Blob Data Owner](../../role-based-access-control/built-in-roles.md#storage-blob-data-owner) is a built-in role that includes this action.
5250
- Shared Access Signature with permission to access the blob's tags (`t` permission)
5351
- Account key
5452

@@ -65,8 +63,7 @@ The following example shows how to retrieve and iterate over the blob's tags:
6563
## Filter and find data with blob index tags
6664

6765
You can use index tags to find and filter data if your code has authorized access to blob data through one of the following mechanisms:
68-
- Azure AD built-in role assigned as [Storage Blob Data Owner](../../role-based-access-control/built-in-roles.md#storage-blob-data-owner) or higher
69-
- Azure RBAC action [Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action](../../role-based-access-control/resource-provider-operations.md#microsoftstorage)
66+
- Security principal that is assigned an Azure RBAC role with the [Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action](../../role-based-access-control/resource-provider-operations.md#microsoftstorage) action. The [Storage Blob Data Owner](../../role-based-access-control/built-in-roles.md#storage-blob-data-owner) is a built-in role that includes this action.
7067
- Shared Access Signature with permission to find blobs by tags (`f` permission)
7168
- Account key
7269

0 commit comments

Comments
 (0)