Skip to content

Commit d557760

Browse files
committed
incorp feedback
1 parent 9f7ca09 commit d557760

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

articles/storage/blobs/versioning-overview.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ The following diagram shows how write operations affect blob versions. When a bl
6060
6161
### Versioning on delete operations
6262

63-
When you delete a blob, Azure Storage creates a version to save the state of the blob immediately prior to deletion. All existing previous versions of the blob are preserved when the blob is deleted.
63+
When you delete a blob, the current version of the blob becomes a previous version, and the base blob is deleted. All existing previous versions of the blob are preserved when the blob is deleted.
6464

65-
You can also delete a specific version of the blob by specifying its version ID. However, you cannot delete the current version of the blob using its version ID.
65+
Calling the [Delete Blob](/rest/api/storageservices/delete-blob) operation without a version ID deletes the base blob. To delete a specific version, provide the ID for that version on the delete operation.
6666

67-
The following diagram shows the effect of a delete operation on a versioned blob. The current version blob is deleted, but the prior versions persist.
67+
The following diagram shows the effect of a delete operation on a versioned blob:
6868

6969
:::image type="content" source="media/versioning-overview/delete-versioned-base-blob.png" alt-text="Diagram showing deletion of versioned blob":::
7070

@@ -89,7 +89,7 @@ The following operations do not trigger the creation of a new version. To captur
8989
- [Put Page](/rest/api/storageservices/put-page) (page blob)
9090
- [Append Block](/rest/api/storageservices/append-block) (append blob)
9191

92-
All versions of a blob must be of the same blob type. When blob versioning is enabled, you cannot overwrite a blob of one type with another type unless you first delete the blob and all its versions.
92+
All versions of a blob must be of the same blob type. If a blob has previous versions, you cannot overwrite a blob of one type with another type unless you first delete the blob and all its versions.
9393

9494
### Access tiers
9595

@@ -247,6 +247,9 @@ To check the status of your registration with PowerShell, call the [Get-AzProvid
247247
```powershell
248248
Get-AzProviderFeature -ProviderNamespace Microsoft.Storage `
249249
-FeatureName Versioning
250+
251+
# Refresh the Azure Storage provider namespace
252+
Register-AzResourceProvider -ProviderNamespace Microsoft.Storage
250253
```
251254

252255
# [Azure CLI](#tab/azure-cli)

0 commit comments

Comments
 (0)