You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
testblob4 BlockBlob 2024 application/octet-stream 2020-07-01 09:42:11Z Hot False 2020-07-01T09:42:11.4283807Z *
82
88
```
83
89
84
-
This command lists all blobs in a storage accoun, which contains a tag with name "tag1" and value "value1", and get the blob properties.
90
+
This command lists all blobs in a storage account, which contains a tag with name "tag1" and value "value1", and get the blob properties.
85
91
Please note, to get blob properties with parameter -GetBlobProperty, each blob will need an addtional request, so the cmdlet runs show when there are many blobs.
86
92
87
93
## PARAMETERS
@@ -117,6 +123,21 @@ Accept pipeline input: False
117
123
Accept wildcard characters: False
118
124
```
119
125
126
+
### -Container
127
+
Container name, specify this parameter to only return all blobs whose tags match a search expression in the container.
Copy file name to clipboardExpand all lines: src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobByTag.cs
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,10 @@ public int? MaxCount
63
63
[Parameter(Mandatory=false,HelpMessage="As the blobs get by tag don't contain blob proeprties, specify tis parameter to get blob properties with an additional request on each blob.")]
64
64
publicSwitchParameterGetBlobProperty{get;set;}
65
65
66
+
[Parameter(Mandatory=false,HelpMessage="Container name, specify this parameter to only return all blobs whose tags match a search expression in the container.")]
0 commit comments