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
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestFirewallRule.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestGeoReplication.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestImportExportReboot.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestMIImportExport.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestManagedIdentity.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCache.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCacheClustering.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePatchSchedules.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestRedisCachePipeline.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestSetNonExistingRedisCacheTest.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache.Test/SessionRecords/Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests.RedisCacheTests/TestZones.json
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache/ChangeLog.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,9 @@
18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+
* Added optional parameter `PreferredDataArchiveAuthMethod` in `Export-AzRedisCache`
22
+
* Added optional parameter `PreferredDataArchiveAuthMethod` in `Import-AzRedisCache`
23
+
* Added 4 additional properties for a geo replication link: `PrimaryHostName`, `GeoReplicatedPrimaryHostName`, `ServerRole`, and `LinkedRedisCacheLocation`in `Get-AzRedisCacheLink` and `New-AzRedisCacheLink`
21
24
22
25
## Version 1.6.0
23
26
* Added `IdentityType` and `UserAssignedIdentity` parameter in `New-AzRedisCache` and `Set-AzRedisCache` cmdlets.
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache/Commands/ExportAzureRedisCache.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,10 @@ public class ExportAzureRedisCache : RedisCacheCmdletBase
43
43
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Format for import operation.")]
44
44
publicstringFormat{get;set;}
45
45
46
+
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS.")]
Copy file name to clipboardExpand all lines: src/RedisCache/RedisCache/Commands/ImportAzureRedisCache.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,10 @@ public class ImportAzureRedisCache : RedisCacheCmdletBase
39
39
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Format for import operation.")]
40
40
publicstringFormat{get;set;}
41
41
42
+
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS.")]
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.")]
84
84
publicstringRedisVersion{get;set;}
85
85
86
86
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Specifies the type of identity used for the Azure Cache for Redis. Valid values: \"SystemAssigned\" or \"UserAssigned\" or \"SystemAssignedUserAssigned\" or \"None\" ")]
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.")]
66
66
publicstringRedisVersion{get;set;}
67
67
68
68
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="A hash table which represents tags.")]
0 commit comments