Skip to content

Commit 2260063

Browse files
committed
Redis Cache - added Service SAS URL steps to Export
1 parent 2e0b577 commit 2260063

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResourceManager/RedisCache/Commands.RedisCache/help/Export-AzureRmRedisCache.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ This command exports data from an Azure Redis Cache instance into the container
3535
Specifies the Service SAS URL of container where this cmdlet exports data. You can generate a Service SAS URL using the following PowerShell commands:
3636

3737
```
38-
$storageAccountContext = New-AzureStorageContext -StorageAccountName storageName -StorageAccountKey key
38+
$storageAccountContext = New-AzureStorageContext -StorageAccountName "storageName" -StorageAccountKey "key"
3939
40-
$sasKeyForContainer = New-AzureStorageContainerSASToken -Name containername -Permission "rwdl" -StartTime ([System.DateTime]::Now).AddMinutes(-15) -ExpiryTime ([System.DateTime]::Now).AddHours(3) -Context $storageAccountContext -FullUri
40+
$sasKeyForContainer = New-AzureStorageContainerSASToken -Name "containername" -Permission "rwdl" -StartTime ([System.DateTime]::Now).AddMinutes(-15) -ExpiryTime ([System.DateTime]::Now).AddHours(3) -Context $storageAccountContext -FullUri
4141
```
4242

4343
```yaml

0 commit comments

Comments
 (0)