Skip to content

Commit 924a807

Browse files
azure-pipelines[bot]azure-powershell-botNickcandy
authored
Migrate RedisEnterpriseCache from generation to main (#26298)
* Move RedisEnterpriseCache to main * Update ChangeLog.md --------- Co-authored-by: azure-powershell-bot <[email protected]> Co-authored-by: NanxiangLiu <[email protected]>
1 parent 6c628f4 commit 924a807

23 files changed

+357
-46
lines changed

src/RedisEnterpriseCache/RedisEnterpriseCache.Autorest/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,11 @@ directive:
171171
verb: Import
172172
variant: ^Import$|^ImportViaIdentity
173173
remove: true
174+
- where:
175+
verb: Update
176+
subject: ^$|Database
177+
variant: ^Update$|ViaIdentity$
178+
remove: true
174179
- where:
175180
verb: Get
176181
subject: OperationStatus

src/RedisEnterpriseCache/RedisEnterpriseCache/Az.RedisEnterpriseCache.psd1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 9/25/2024
6+
# Generated on: 10/12/2024
77
#
88

99
@{
@@ -58,10 +58,10 @@ RequiredAssemblies =
5858
'RedisEnterpriseCache.Autorest/bin/Az.RedisEnterpriseCache.private.dll'
5959

6060
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
61-
# ScriptsToProcess = @()
61+
ScriptsToProcess = @()
6262

6363
# Type files (.ps1xml) to be loaded when importing this module
64-
# TypesToProcess = @()
64+
TypesToProcess = @()
6565

6666
# Format files (.ps1xml) to be loaded when importing this module
6767
FormatsToProcess =
@@ -119,7 +119,7 @@ PrivateData = @{
119119
PSData = @{
120120

121121
# Tags applied to this module. These help with module discovery in online galleries.
122-
Tags = 'Azure','ResourceManager','ARM','PSModule','RedisEnterpriseCache'
122+
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'RedisEnterpriseCache'
123123

124124
# A URL to the license for this module.
125125
LicenseUri = 'https://aka.ms/azps-license'
@@ -149,7 +149,7 @@ PrivateData = @{
149149

150150
} # End of PSData hashtable
151151

152-
} # End of PrivateData hashtable
152+
} # End of PrivateData hashtable
153153

154154
# HelpInfo URI of this module
155155
# HelpInfoURI = ''

src/RedisEnterpriseCache/RedisEnterpriseCache/ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added support for using Microsoft Entra token-based authentication.
22+
* Added the new properties of Cluster: highAvailability and redundancyMode.
23+
* Added new product SKUs.
24+
* Added the new properties of Database: accessKeysAuthentication.
25+
* Added Invoke-AzRedisEnterpriseCacheForceDatabaseLinkToReplicationGroup to force link geo replicated caches.
26+
* Added Update-AzRedisEnterpriseCacheDatabaseDbRedisVersion to upgrade the redis database version directly.
2127

2228
## Version 1.3.0
2329
* Added support for using Microsoft Entra token-based authentication.

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Export-AzRedisEnterpriseCache.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Exports a database file from target database.
1515
```
1616
Export-AzRedisEnterpriseCache -ClusterName <String> -ResourceGroupName <String> [-SubscriptionId <String>]
1717
-SasUri <String> [-DefaultProfile <PSObject>] [-AsJob] [-NoWait] [-PassThru]
18-
[-WhatIf] [-Confirm] [<CommonParameters>]
18+
[-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
1919
```
2020

2121
## DESCRIPTION
@@ -107,6 +107,21 @@ Accept pipeline input: False
107107
Accept wildcard characters: False
108108
```
109109
110+
### -ProgressAction
111+
{{ Fill ProgressAction Description }}
112+
113+
```yaml
114+
Type: System.Management.Automation.ActionPreference
115+
Parameter Sets: (All)
116+
Aliases: proga
117+
118+
Required: False
119+
Position: Named
120+
Default value: None
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
110125
### -ResourceGroupName
111126
The name of the resource group.
112127
The name is case insensitive.

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Get-AzRedisEnterpriseCache.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ Gets information about a Redis Enterprise cluster and its associated databases.
1515
### ListBySubscriptionId (Default)
1616
```
1717
Get-AzRedisEnterpriseCache [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
18-
[<CommonParameters>]
18+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
1919
```
2020

2121
### Get
2222
```
2323
Get-AzRedisEnterpriseCache [-SubscriptionId <String[]>] -ResourceGroupName <String> -ClusterName <String>
24-
[-DefaultProfile <PSObject>] [<CommonParameters>]
24+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
2525
```
2626

2727
### ListByResourceGroup
2828
```
2929
Get-AzRedisEnterpriseCache [-SubscriptionId <String[]>] -ResourceGroupName <String>
30-
[-DefaultProfile <PSObject>] [<CommonParameters>]
30+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
3131
```
3232

3333
## DESCRIPTION
@@ -110,6 +110,21 @@ Accept pipeline input: False
110110
Accept wildcard characters: False
111111
```
112112
113+
### -ProgressAction
114+
{{ Fill ProgressAction Description }}
115+
116+
```yaml
117+
Type: System.Management.Automation.ActionPreference
118+
Parameter Sets: (All)
119+
Aliases: proga
120+
121+
Required: False
122+
Position: Named
123+
Default value: None
124+
Accept pipeline input: False
125+
Accept wildcard characters: False
126+
```
127+
113128
### -ResourceGroupName
114129
The name of the resource group.
115130
The name is case insensitive.

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Get-AzRedisEnterpriseCacheAccessPolicyAssignment.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Gets information about access policy assignment for database.
1616
```
1717
Get-AzRedisEnterpriseCacheAccessPolicyAssignment -ClusterName <String> -DatabaseName <String>
1818
-ResourceGroupName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
19-
[<CommonParameters>]
19+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
2020
```
2121

2222
### Get
2323
```
2424
Get-AzRedisEnterpriseCacheAccessPolicyAssignment -ClusterName <String> -DatabaseName <String>
2525
-ResourceGroupName <String> -Name <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
26-
[<CommonParameters>]
26+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
2727
```
2828

2929
## DESCRIPTION
@@ -120,6 +120,21 @@ Accept pipeline input: False
120120
Accept wildcard characters: False
121121
```
122122
123+
### -ProgressAction
124+
{{ Fill ProgressAction Description }}
125+
126+
```yaml
127+
Type: System.Management.Automation.ActionPreference
128+
Parameter Sets: (All)
129+
Aliases: proga
130+
131+
Required: False
132+
Position: Named
133+
Default value: None
134+
Accept pipeline input: False
135+
Accept wildcard characters: False
136+
```
137+
123138
### -ResourceGroupName
124139
The name of the resource group.
125140
The name is case insensitive.

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Get-AzRedisEnterpriseCacheDatabase.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gets information about a database in a Redis Enterprise cluster.
1414

1515
```
1616
Get-AzRedisEnterpriseCacheDatabase -ClusterName <String> -ResourceGroupName <String>
17-
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
17+
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
1818
[<CommonParameters>]
1919
```
2020

@@ -68,6 +68,21 @@ Accept pipeline input: False
6868
Accept wildcard characters: False
6969
```
7070
71+
### -ProgressAction
72+
{{ Fill ProgressAction Description }}
73+
74+
```yaml
75+
Type: System.Management.Automation.ActionPreference
76+
Parameter Sets: (All)
77+
Aliases: proga
78+
79+
Required: False
80+
Position: Named
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
7186
### -ResourceGroupName
7287
The name of the resource group.
7388
The name is case insensitive.

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Get-AzRedisEnterpriseCacheKey.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Retrieves all access keys for a Redis Enterprise database.
1414

1515
```
1616
Get-AzRedisEnterpriseCacheKey -ClusterName <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
17-
[-DefaultProfile <PSObject>] [-WhatIf] [-Confirm] [<CommonParameters>]
17+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
1818
```
1919

2020
## DESCRIPTION
@@ -67,6 +67,21 @@ Accept pipeline input: False
6767
Accept wildcard characters: False
6868
```
6969
70+
### -ProgressAction
71+
{{ Fill ProgressAction Description }}
72+
73+
```yaml
74+
Type: System.Management.Automation.ActionPreference
75+
Parameter Sets: (All)
76+
Aliases: proga
77+
78+
Required: False
79+
Position: Named
80+
Default value: None
81+
Accept pipeline input: False
82+
Accept wildcard characters: False
83+
```
84+
7085
### -ResourceGroupName
7186
The name of the resource group.
7287
The name is case insensitive.

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Get-AzRedisEnterpriseCacheOperationStatus.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gets the status of operation.
1414

1515
```
1616
Get-AzRedisEnterpriseCacheOperationStatus -Location <String> -OperationId <String> [-SubscriptionId <String[]>]
17-
[-DefaultProfile <PSObject>] [<CommonParameters>]
17+
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
1818
```
1919

2020
## DESCRIPTION
@@ -83,6 +83,21 @@ Accept pipeline input: False
8383
Accept wildcard characters: False
8484
```
8585
86+
### -ProgressAction
87+
{{ Fill ProgressAction Description }}
88+
89+
```yaml
90+
Type: System.Management.Automation.ActionPreference
91+
Parameter Sets: (All)
92+
Aliases: proga
93+
94+
Required: False
95+
Position: Named
96+
Default value: None
97+
Accept pipeline input: False
98+
Accept wildcard characters: False
99+
```
100+
86101
### -SubscriptionId
87102
The ID of the target subscription.
88103

src/RedisEnterpriseCache/RedisEnterpriseCache/help/Import-AzRedisEnterpriseCache.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Imports a database file to target database.
1515
```
1616
Import-AzRedisEnterpriseCache -ClusterName <String> -ResourceGroupName <String> [-SubscriptionId <String>]
1717
-SasUri <String[]> [-DefaultProfile <PSObject>] [-AsJob] [-NoWait] [-PassThru]
18-
[-WhatIf] [-Confirm] [<CommonParameters>]
18+
[-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm] [<CommonParameters>]
1919
```
2020

2121
## DESCRIPTION
@@ -107,6 +107,21 @@ Accept pipeline input: False
107107
Accept wildcard characters: False
108108
```
109109
110+
### -ProgressAction
111+
{{ Fill ProgressAction Description }}
112+
113+
```yaml
114+
Type: System.Management.Automation.ActionPreference
115+
Parameter Sets: (All)
116+
Aliases: proga
117+
118+
Required: False
119+
Position: Named
120+
Default value: None
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
110125
### -ResourceGroupName
111126
The name of the resource group.
112127
The name is case insensitive.

0 commit comments

Comments
 (0)