Skip to content

Commit 5f2c9ee

Browse files
authored
Change letter case in example of New-AzStorageBlobSASToken (#20018)
1 parent 6d160a8 commit 5f2c9ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Storage/Storage.Management/help/New-AzStorageBlobSASToken.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ This example generates a blob SAS token with life time.
7171
PS C:\> $ctx = New-AzStorageContext -StorageAccountName $accountName -UseConnectedAccount
7272
PS C:\> $StartTime = Get-Date
7373
PS C:\> $EndTime = $startTime.AddDays(6)
74-
PS C:\> New-AzStorageBlobSASToken -Container "ContainerName" -Blob "BlobName" -Permission rwd -StartTime $StartTime -ExpiryTime $EndTime -context $ctx
74+
PS C:\> New-AzStorageBlobSASToken -Container "ContainerName" -Blob "BlobName" -Permission rwd -StartTime $StartTime -ExpiryTime $EndTime -Context $ctx
7575
```
7676

7777
This example generates a User Identity blob SAS token with storage context based on OAuth authentication

0 commit comments

Comments
 (0)