Skip to content

Commit f1fecac

Browse files
committed
Redo edits for azureRM websites v1.1.3 because of conflict issues
1 parent c24f9a1 commit f1fecac

39 files changed

+1031
-782
lines changed

azureps-cmdlets-docs/ResourceManager/AzureRM.Websites/v1.1.3/Edit-AzureRmWebAppBackupConfiguration.md

Lines changed: 30 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
22
external help file: Microsoft.Azure.Commands.Websites.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

77
# Edit-AzureRmWebAppBackupConfiguration
88

99
## SYNOPSIS
10+
Edits the current backup configuration for a web app.
1011

1112
## SYNTAX
1213

@@ -26,25 +27,17 @@ Edit-AzureRmWebAppBackupConfiguration [-FrequencyInterval] <Int32> [-FrequencyUn
2627
```
2728

2829
## DESCRIPTION
29-
30-
## EXAMPLES
31-
32-
### Example 1
33-
```
34-
PS C:\> {{ Add example code here }}
35-
```
36-
37-
{{ Add example description here }}
30+
The **Edit-AzureRmWebAppBackupConfiguration** cmdlet edits the current backup configuration for a web app that was built using the Web Apps feature of the Azure App Service.
3831

3932
## PARAMETERS
4033

4134
### -Databases
42-
@{Text=}
35+
Specifies the databases that are backed up.
4336

4437
```yaml
4538
Type: DatabaseBackupSetting[]
4639
Parameter Sets: (All)
47-
Aliases:
40+
Aliases:
4841

4942
Required: False
5043
Position: 8
@@ -54,12 +47,12 @@ Accept wildcard characters: False
5447
```
5548
5649
### -FrequencyInterval
57-
@{Text=}
50+
Specifies the interval between backups. For example, for weekly backup, the value of this parameter must be 7 and the value of the **FrequencyUnit** parameter must be "Day".
5851
5952
```yaml
6053
Type: Int32
6154
Parameter Sets: (All)
62-
Aliases:
55+
Aliases:
6356

6457
Required: True
6558
Position: 4
@@ -69,12 +62,12 @@ Accept wildcard characters: False
6962
```
7063
7164
### -FrequencyUnit
72-
@{Text=}
65+
Specifies the unit of time in which the interval between backups is measured. For example, for weekly backup, the value of this parameter must be "Day" and the value of the **FrequencyInterval** parameter must be 7.
7366
7467
```yaml
7568
Type: String
7669
Parameter Sets: (All)
77-
Aliases:
70+
Aliases:
7871

7972
Required: True
8073
Position: 5
@@ -84,12 +77,12 @@ Accept wildcard characters: False
8477
```
8578
8679
### -KeepAtLeastOneBackup
87-
@{Text=}
80+
Specifies whether the retention policy must keep at least one backup in the storage account.
8881
8982
```yaml
9083
Type: SwitchParameter
9184
Parameter Sets: (All)
92-
Aliases:
85+
Aliases:
9386

9487
Required: False
9588
Position: 9
@@ -99,12 +92,12 @@ Accept wildcard characters: False
9992
```
10093
10194
### -Name
102-
@{Text=}
95+
Specifies the name of the web app.
10396
10497
```yaml
10598
Type: String
10699
Parameter Sets: FromResourceName
107-
Aliases:
100+
Aliases:
108101

109102
Required: True
110103
Position: 1
@@ -114,12 +107,12 @@ Accept wildcard characters: False
114107
```
115108
116109
### -ResourceGroupName
117-
@{Text=}
110+
Specifies the name of the resource group that contains the web app.
118111
119112
```yaml
120113
Type: String
121114
Parameter Sets: FromResourceName
122-
Aliases:
115+
Aliases:
123116

124117
Required: True
125118
Position: 0
@@ -129,12 +122,12 @@ Accept wildcard characters: False
129122
```
130123
131124
### -RetentionPeriodInDays
132-
@{Text=}
125+
Specifies the number of days that the backup is to be retained. The backup is deleted after the retention period is exceeded.
133126
134127
```yaml
135128
Type: Int32
136129
Parameter Sets: (All)
137-
Aliases:
130+
Aliases:
138131

139132
Required: True
140133
Position: 6
@@ -144,12 +137,12 @@ Accept wildcard characters: False
144137
```
145138
146139
### -Slot
147-
@{Text=}
140+
Specifies the name of the slot to which the web app is deployed.
148141
149142
```yaml
150143
Type: String
151144
Parameter Sets: FromResourceName
152-
Aliases:
145+
Aliases:
153146

154147
Required: False
155148
Position: 2
@@ -159,12 +152,12 @@ Accept wildcard characters: False
159152
```
160153
161154
### -StartTime
162-
@{Text=}
155+
Specifies the date that the backup schedule must be applied.
163156
164157
```yaml
165158
Type: DateTime
166159
Parameter Sets: (All)
167-
Aliases:
160+
Aliases:
168161

169162
Required: False
170163
Position: 7
@@ -174,12 +167,12 @@ Accept wildcard characters: False
174167
```
175168
176169
### -StorageAccountUrl
177-
@{Text=}
170+
Specifies the URL of the storage account that contains the web app.
178171
179172
```yaml
180173
Type: String
181174
Parameter Sets: (All)
182-
Aliases:
175+
Aliases:
183176

184177
Required: True
185178
Position: 3
@@ -189,12 +182,12 @@ Accept wildcard characters: False
189182
```
190183
191184
### -WebApp
192-
@{Text=}
185+
Specifies a **WebApp** object that contains details about the web app.
193186
194187
```yaml
195188
Type: Site
196189
Parameter Sets: FromWebApp
197-
Aliases:
190+
Aliases:
198191

199192
Required: True
200193
Position: 0
@@ -208,9 +201,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
208201
209202
## INPUTS
210203
204+
### None
205+
211206
## OUTPUTS
212207
208+
### None
209+
213210
## NOTES
214211
215212
## RELATED LINKS
216213
214+
[Get-AzureRmWebAppBackupConfiguration](./Get-AzureRmWebAppBackupConfiguration.md)

azureps-cmdlets-docs/ResourceManager/AzureRM.Websites/v1.1.3/Get-AzureRmAppServicePlan.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
external help file: Microsoft.Azure.Commands.Websites.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

77
# Get-AzureRmAppServicePlan
88

99
## SYNOPSIS
10-
Gets an App Service plan.
10+
Gets the Azure App Service plan.
1111

1212
## SYNTAX
1313

@@ -22,30 +22,26 @@ Get-AzureRmAppServicePlan [-Location] <String> [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
25-
The Get-AzureRmAppServicePlan cmdlet gets an Azure App Service plan in the specified resource group.
25+
The **Get-AzureRmAppServicePlan** cmdlet gets the Azure App Service plan.
2626

2727
## EXAMPLES
2828

29-
### -------------------------- Example 1: Get an App Service plan --------------------------
30-
@{paragraph=PS C:\\\>}
31-
32-
33-
29+
### Example 1: Get the app service plan in the specified resource group
3430
```
35-
PS C:\>Get-AzureRmAppServicePlan -Name "MyServicePlan" -ResourceGroupName "Default-Web-WestUS"
31+
Get-AzureRmAppServicePlan -Name "MyServicePlan" -ResourceGroupName "Default-Web-WestUS"
3632
```
3733

38-
This command gets the App Service plan named MyServicePlan in the resource group named Default-Web-WestUS.
34+
This example gets the App Service plan named "MyServicePlan" in the resource group named "Default-Web-WestUS".
3935

4036
## PARAMETERS
4137

4238
### -Location
43-
@{Text=}
39+
Specifies the location of the App Service plan.
4440

4541
```yaml
4642
Type: String
4743
Parameter Sets: S2
48-
Aliases:
44+
Aliases:
4945

5046
Required: True
5147
Position: 0
@@ -60,7 +56,7 @@ Specifies the name of the App Service plan to get.
6056
```yaml
6157
Type: String
6258
Parameter Sets: S1
63-
Aliases:
59+
Aliases:
6460

6561
Required: False
6662
Position: 1
@@ -70,12 +66,12 @@ Accept wildcard characters: False
7066
```
7167
7268
### -ResourceGroupName
73-
Specifies the name of the resource group that contains the App Service plan to get.
69+
Specifies the name of the resource group that contains the App Service plan.
7470
7571
```yaml
7672
Type: String
7773
Parameter Sets: S1
78-
Aliases:
74+
Aliases:
7975

8076
Required: False
8177
Position: 0
@@ -89,15 +85,20 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
8985
9086
## INPUTS
9187
88+
### None
89+
9290
## OUTPUTS
9391
92+
### None
93+
9494
## NOTES
9595
9696
## RELATED LINKS
9797
98-
[New-AzureRMAppServicePlan]()
98+
[New-AzureRmAppServicePlan](./New-AzureRmAppServicePlan.md)
9999
100-
[Remove-AzureRMAppServicePlan]()
100+
[Remove-AzureRmAppServicePlan](./Remove-AzureRmAppServicePlan.md)
101101
102-
[Set-AzureRMAppServicePlan]()
102+
[Set-AzureRmAppServicePlan](./Set-AzureRmAppServicePlan.md)
103103
104+
[Get-AzureRmAppServicePlanMetrics](./Get-AzureRmAppServicePlanMetrics.md)

0 commit comments

Comments
 (0)