File tree 1 file changed +7
-1
lines changed
src/ResourceManager/RedisCache/Commands.RedisCache/help
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,13 @@ This command exports data from an Azure Redis Cache instance into the container
32
32
## PARAMETERS
33
33
34
34
### -Container
35
- Specifies the SAS URL of container where this cmdlet exports data.
35
+ Specifies the Service SAS URL of container where this cmdlet exports data. You can generate a Service SAS URL using the following PowerShell commands:
36
+
37
+ ```
38
+ $storageAccountContext = New-AzureStorageContext -StorageAccountName “storageName” -StorageAccountKey “key”
39
+
40
+ $sasKeyForContainer = New-AzureStorageContainerSASToken -Name “containername” -Permission "rwdl" -StartTime ([System.DateTime]::Now).AddMinutes(-15) -ExpiryTime ([System.DateTime]::Now).AddHours(3) -Context $storageAccountContext -FullUri
41
+ ```
36
42
37
43
``` yaml
38
44
Type : String
You can’t perform that action at this time.
0 commit comments