Skip to content

Commit acfbe93

Browse files
committed
Added overview to changelog. Regenerated platyps help section. Responded to comments
1 parent 5dae170 commit acfbe93

File tree

6 files changed

+158
-48
lines changed

6 files changed

+158
-48
lines changed

src/ResourceManager/Sql/ChangeLog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@
2121
* Adding support for list and cancel the asynchronous updateslo operation on the database
2222
- update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status.
2323
- add new cmdlet Stop-AzureRmSqlDatabaseActivity for cancel the asynchronous updateslo operation on the database.
24-
24+
* Adding support for Zone Redundancy for databases and elastic pools
25+
- Adding ZoneRedundant switch parameter to New-AzureRmSqlDatabase
26+
- Adding ZoneRedundant switch parameter to Set-AzureRmSqlDatabase
27+
- Adding ZoneRedundant switch parameter to New-AzureRmSqlElasticPool
28+
- Adding ZoneRedundant switch parameter to Set-AzureRmSqlElasticPool
2529
## Version 3.4.1
2630

2731
## Version 3.4.0

src/ResourceManager/Sql/Commands.Sql/help/New-AzureRmSqlDatabase.md

Lines changed: 40 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
external help file: Microsoft.Azure.Commands.Sql.dll-Help.xml
3+
Module Name: AzureRM.Sql
34
ms.assetid: D2DB7821-A7D2-4017-8522-78793DDE040E
4-
online version:
5+
online version:
56
schema: 2.0.0
67
---
78

@@ -16,7 +17,8 @@ Creates a database or an elastic database.
1617
New-AzureRmSqlDatabase -DatabaseName <String> [-CollationName <String>] [-CatalogCollation <String>]
1718
[-MaxSizeBytes <Int64>] [-Edition <DatabaseEdition>] [-RequestedServiceObjectiveName <String>]
1819
[-ElasticPoolName <String>] [-ReadScale <DatabaseReadScale>] [-Tags <Hashtable>] [-SampleName <String>]
19-
[-ServerName] <String> [-ResourceGroupName] <String> [-WhatIf] [-Confirm] [<CommonParameters>]
20+
[-ZoneRedundant] [-ServerName] <String> [-ResourceGroupName] <String>
21+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
2022
```
2123

2224
## DESCRIPTION
@@ -84,7 +86,7 @@ Specifies the name of the SQL database catalog collation.
8486
```yaml
8587
Type: String
8688
Parameter Sets: (All)
87-
Aliases:
89+
Aliases:
8890

8991
Required: False
9092
Position: Named
@@ -99,7 +101,7 @@ Specifies the name of the SQL database collation.
99101
```yaml
100102
Type: String
101103
Parameter Sets: (All)
102-
Aliases:
104+
Aliases:
103105

104106
Required: False
105107
Position: Named
@@ -123,6 +125,19 @@ Accept pipeline input: False
123125
Accept wildcard characters: False
124126
```
125127
128+
### -DefaultProfile
129+
The credentials, account, tenant, and subscription used for communication with azure.```yaml
130+
Type: IAzureContextContainer
131+
Parameter Sets: (All)
132+
Aliases: AzureRmContext, AzureCredential
133+
134+
Required: False
135+
Position: Named
136+
Default value: None
137+
Accept pipeline input: False
138+
Accept wildcard characters: False
139+
```
140+
126141
### -Edition
127142
Specifies the edition to assign to the database. The acceptable values for this parameter are:
128143
@@ -137,7 +152,7 @@ Specifies the edition to assign to the database. The acceptable values for this
137152
```yaml
138153
Type: DatabaseEdition
139154
Parameter Sets: (All)
140-
Aliases:
155+
Aliases:
141156
Accepted values: None, Premium, Basic, Standard, DataWarehouse, Stretch, Free, PremiumRS
142157

143158
Required: False
@@ -153,7 +168,7 @@ Specifies the name of the elastic pool in which to put the database.
153168
```yaml
154169
Type: String
155170
Parameter Sets: (All)
156-
Aliases:
171+
Aliases:
157172

158173
Required: False
159174
Position: Named
@@ -168,7 +183,7 @@ Specifies the maximum size of the database in bytes.
168183
```yaml
169184
Type: Int64
170185
Parameter Sets: (All)
171-
Aliases:
186+
Aliases:
172187

173188
Required: False
174189
Position: Named
@@ -183,7 +198,7 @@ The read scale option to assign to the Azure SQL Database.(Enabled/Disabled)
183198
```yaml
184199
Type: DatabaseReadScale
185200
Parameter Sets: (All)
186-
Aliases:
201+
Aliases:
187202
Accepted values: Disabled, Enabled
188203

189204
Required: False
@@ -199,7 +214,7 @@ Specifies the name of the service objective to assign to the database.
199214
```yaml
200215
Type: String
201216
Parameter Sets: (All)
202-
Aliases:
217+
Aliases:
203218

204219
Required: False
205220
Position: Named
@@ -214,7 +229,7 @@ Specifies the name of the resource group to which the server is assigned.
214229
```yaml
215230
Type: String
216231
Parameter Sets: (All)
217-
Aliases:
232+
Aliases:
218233

219234
Required: True
220235
Position: 0
@@ -229,7 +244,7 @@ The name of the sample schema to apply when creating this database.
229244
```yaml
230245
Type: String
231246
Parameter Sets: (All)
232-
Aliases:
247+
Aliases:
233248
Accepted values: AdventureWorksLT
234249

235250
Required: False
@@ -245,7 +260,7 @@ Specifies the name of the server that hosts the database.
245260
```yaml
246261
Type: String
247262
Parameter Sets: (All)
248-
Aliases:
263+
Aliases:
249264

250265
Required: True
251266
Position: 1
@@ -272,6 +287,19 @@ Accept pipeline input: False
272287
Accept wildcard characters: False
273288
```
274289
290+
### -ZoneRedundant
291+
The zone redundancy to associate with the Azure Sql Database```yaml
292+
Type: SwitchParameter
293+
Parameter Sets: (All)
294+
Aliases:
295+
296+
Required: False
297+
Position: Named
298+
Default value: None
299+
Accept pipeline input: False
300+
Accept wildcard characters: False
301+
```
302+
275303
### -Confirm
276304
Prompts you for confirmation before running the cmdlet.
277305

src/ResourceManager/Sql/Commands.Sql/help/New-AzureRmSqlElasticPool.md

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
external help file: Microsoft.Azure.Commands.Sql.dll-Help.xml
3+
Module Name: AzureRM.Sql
34
ms.assetid: 009899E5-83BF-4A3F-877E-70C16D5CD1AC
4-
online version:
5+
online version:
56
schema: 2.0.0
67
---
78

@@ -14,8 +15,9 @@ Creates an elastic database pool for a SQL Database.
1415

1516
```
1617
New-AzureRmSqlElasticPool -ElasticPoolName <String> [-Edition <DatabaseEdition>] [-Dtu <Int32>]
17-
[-StorageMB <Int32>] [-DatabaseDtuMin <Int32>] [-DatabaseDtuMax <Int32>] [-Tags <Hashtable>]
18-
[-ServerName] <String> [-ResourceGroupName] <String> [-WhatIf] [-Confirm] [<CommonParameters>]
18+
[-StorageMB <Int32>] [-DatabaseDtuMin <Int32>] [-DatabaseDtuMax <Int32>] [-Tags <Hashtable>] [-ZoneRedundant]
19+
[-ServerName] <String> [-ResourceGroupName] <String> [-DefaultProfile <IAzureContextContainer>] [-WhatIf]
20+
[-Confirm] [<CommonParameters>]
1921
```
2022

2123
## DESCRIPTION
@@ -63,7 +65,7 @@ For details about which values are valid, see the table for your specific size p
6365
```yaml
6466
Type: Int32
6567
Parameter Sets: (All)
66-
Aliases:
68+
Aliases:
6769

6870
Required: False
6971
Position: Named
@@ -81,7 +83,20 @@ For details about which values are valid, see the table for your specific size p
8183
```yaml
8284
Type: Int32
8385
Parameter Sets: (All)
84-
Aliases:
86+
Aliases:
87+
88+
Required: False
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### -DefaultProfile
96+
The credentials, account, tenant, and subscription used for communication with azure.```yaml
97+
Type: IAzureContextContainer
98+
Parameter Sets: (All)
99+
Aliases: AzureRmContext, AzureCredential
85100

86101
Required: False
87102
Position: Named
@@ -106,7 +121,7 @@ For details about which values are valid, see the table for your specific size p
106121
```yaml
107122
Type: Int32
108123
Parameter Sets: (All)
109-
Aliases:
124+
Aliases:
110125

111126
Required: False
112127
Position: Named
@@ -130,7 +145,7 @@ The acceptable values for this parameter are:
130145
```yaml
131146
Type: DatabaseEdition
132147
Parameter Sets: (All)
133-
Aliases:
148+
Aliases:
134149
Accepted values: None, Premium, Basic, Standard, DataWarehouse, Stretch, Free, PremiumRS
135150

136151
Required: False
@@ -161,7 +176,7 @@ Specifies the name of the resource group to which this cmdlet assigns the elasti
161176
```yaml
162177
Type: String
163178
Parameter Sets: (All)
164-
Aliases:
179+
Aliases:
165180

166181
Required: True
167182
Position: 0
@@ -176,7 +191,7 @@ Specifies the name of the server that hosts the elastic pool.
176191
```yaml
177192
Type: String
178193
Parameter Sets: (All)
179-
Aliases:
194+
Aliases:
180195

181196
Required: True
182197
Position: 1
@@ -186,7 +201,6 @@ Accept wildcard characters: False
186201
```
187202
188203
### -StorageMB
189-
190204
Specifies the storage limit, in megabytes, for the elastic pool. If you do not specify this
191205
parameter, this cmdlet calculates a value that depends on the value of the *Dtu* parameter.
192206
@@ -195,7 +209,7 @@ See [eDTU and storage limits](/azure/sql-database/sql-database-elastic-pool#edtu
195209
```yaml
196210
Type: Int32
197211
Parameter Sets: (All)
198-
Aliases:
212+
Aliases:
199213

200214
Required: False
201215
Position: Named
@@ -222,6 +236,19 @@ Accept pipeline input: False
222236
Accept wildcard characters: False
223237
```
224238
239+
### -ZoneRedundant
240+
The zone redundancy to associate with the Azure Sql Elastic Pool```yaml
241+
Type: SwitchParameter
242+
Parameter Sets: (All)
243+
Aliases:
244+
245+
Required: False
246+
Position: Named
247+
Default value: None
248+
Accept pipeline input: False
249+
Accept wildcard characters: False
250+
```
251+
225252
### -Confirm
226253
Prompts you for confirmation before running the cmdlet.
227254

0 commit comments

Comments
 (0)