Skip to content

Commit 4e2b0d0

Browse files
authored
[Storage] Allowed to clear blob tags (#21560)
1 parent c1ba6f2 commit 4e2b0d0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Storage/Storage.Management/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
* Added warning messages for an upcoming cmdlet breaking change
3030
- `New-AzStorageAccount`
3131
- `Set-AzStorageAccount`
32+
* Allowed to clear blob tags on a blob
33+
- `Set-AzStorageBlobTag`
3234
* Updated Azure.Core to 1.31.0
3335

3436
## Version 5.5.0

src/Storage/Storage/Blob/Cmdlet/SetAzStorageBlobTag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public string Container
7474
private string ContainerName = String.Empty;
7575

7676
[Parameter(HelpMessage = "Blob Tags", Mandatory = true)]
77-
[ValidateNotNullOrEmpty]
77+
[ValidateNotNull]
7878
public Hashtable Tag
7979
{
8080
get

0 commit comments

Comments
 (0)