Skip to content

Commit 65d1eba

Browse files
author
Ashraf Farok (PALASH)
committed
Updating change log and help file
1 parent 483deef commit 65d1eba

File tree

4 files changed

+398
-0
lines changed

4 files changed

+398
-0
lines changed

src/ResourceManager/Websites/Commands.Websites/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* Updating to use the latest .NET SDK version (2.0.0) https://www.nuget.org/packages/Microsoft.Azure.Management.Websites
2222
* New-AzureRmAppServicePlan -HyperV switch is added for create app service plan with windows container
2323
* New-AzureRmWebApp/ New-AzureRmWebAppSlot/ Set-AzureRmWebApp/ Set-AzureRmWebAppSlot - New parameters (–ContainerRegistryUser “<string>” -ContainerRegistryPassword “<secureString>” -EnableContainerContinuousDeployment) added for creating and managing windows container app
24+
* New Cmdlets Enter-AzureRmWebAppContainerPSSession, New-AzureRmWebAppContainerPSSession for entering and creating remote PSSession in container web app
25+
* New Cmdlet Get-AzureRMWebAppContainerContinuousDeploymentUr - Gets the Container Continuous Deployment Webhook URL
2426

2527

2628
## Version 5.0.9
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
---
2+
external help file: Microsoft.Azure.Commands.Websites.dll-Help.xml
3+
Module Name: AzureRM.Websites
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# Enter-AzureRmWebAppContainerPSSession
9+
10+
## SYNOPSIS
11+
{{Fill in the Synopsis}}
12+
13+
## SYNTAX
14+
15+
### S1
16+
```
17+
Enter-AzureRmWebAppContainerPSSession [[-SlotName] <String>] [-ResourceGroupName] <String> [-Name] <String>
18+
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
19+
```
20+
21+
### S2
22+
```
23+
Enter-AzureRmWebAppContainerPSSession [-WebApp] <PSSite> [-DefaultProfile <IAzureContextContainer>]
24+
[<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
{{Fill in the Description}}
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```powershell
34+
PS C:\> {{ Add example code here }}
35+
```
36+
37+
{{ Add example description here }}
38+
39+
## PARAMETERS
40+
41+
### -DefaultProfile
42+
The credentials, account, tenant, and subscription used for communication with Azure.
43+
44+
```yaml
45+
Type: IAzureContextContainer
46+
Parameter Sets: (All)
47+
Aliases: AzureRmContext, AzureCredential
48+
49+
Required: False
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: False
53+
Accept wildcard characters: False
54+
```
55+
56+
### -Name
57+
The name of the web app.
58+
59+
```yaml
60+
Type: String
61+
Parameter Sets: S1
62+
Aliases:
63+
64+
Required: True
65+
Position: 1
66+
Default value: None
67+
Accept pipeline input: True (ByPropertyName)
68+
Accept wildcard characters: False
69+
```
70+
71+
### -ResourceGroupName
72+
The name of the resource group.
73+
74+
```yaml
75+
Type: String
76+
Parameter Sets: S1
77+
Aliases:
78+
79+
Required: True
80+
Position: 0
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
86+
### -SlotName
87+
The name of the web app slot.
88+
89+
```yaml
90+
Type: String
91+
Parameter Sets: S1
92+
Aliases:
93+
94+
Required: False
95+
Position: 1
96+
Default value: None
97+
Accept pipeline input: True (ByPropertyName)
98+
Accept wildcard characters: False
99+
```
100+
101+
### -WebApp
102+
The web app object
103+
104+
```yaml
105+
Type: PSSite
106+
Parameter Sets: S2
107+
Aliases:
108+
109+
Required: True
110+
Position: 0
111+
Default value: None
112+
Accept pipeline input: True (ByValue)
113+
Accept wildcard characters: False
114+
```
115+
116+
### CommonParameters
117+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
118+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
119+
120+
## INPUTS
121+
122+
### System.String
123+
124+
### Microsoft.Azure.Commands.WebApps.Models.PSSite
125+
126+
## OUTPUTS
127+
128+
### System.String
129+
130+
## NOTES
131+
132+
## RELATED LINKS
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
---
2+
external help file: Microsoft.Azure.Commands.Websites.dll-Help.xml
3+
Module Name: AzureRM.Websites
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# Get-AzureRmWebAppContainerContinuousDeploymentUrl
9+
10+
## SYNOPSIS
11+
{{Fill in the Synopsis}}
12+
13+
## SYNTAX
14+
15+
### S1
16+
```
17+
Get-AzureRmWebAppContainerContinuousDeploymentUrl [[-SlotName] <String>] [-ResourceGroupName] <String>
18+
[-Name] <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
19+
```
20+
21+
### S2
22+
```
23+
Get-AzureRmWebAppContainerContinuousDeploymentUrl [-WebApp] <PSSite> [-DefaultProfile <IAzureContextContainer>]
24+
[<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
{{Fill in the Description}}
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```powershell
34+
PS C:\> {{ Add example code here }}
35+
```
36+
37+
{{ Add example description here }}
38+
39+
## PARAMETERS
40+
41+
### -DefaultProfile
42+
The credentials, account, tenant, and subscription used for communication with Azure.
43+
44+
```yaml
45+
Type: IAzureContextContainer
46+
Parameter Sets: (All)
47+
Aliases: AzureRmContext, AzureCredential
48+
49+
Required: False
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: False
53+
Accept wildcard characters: False
54+
```
55+
56+
### -Name
57+
The name of the web app.
58+
59+
```yaml
60+
Type: String
61+
Parameter Sets: S1
62+
Aliases:
63+
64+
Required: True
65+
Position: 1
66+
Default value: None
67+
Accept pipeline input: True (ByPropertyName)
68+
Accept wildcard characters: False
69+
```
70+
71+
### -ResourceGroupName
72+
The name of the resource group.
73+
74+
```yaml
75+
Type: String
76+
Parameter Sets: S1
77+
Aliases:
78+
79+
Required: True
80+
Position: 0
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
86+
### -SlotName
87+
The name of the web app slot.
88+
89+
```yaml
90+
Type: String
91+
Parameter Sets: S1
92+
Aliases:
93+
94+
Required: False
95+
Position: 1
96+
Default value: None
97+
Accept pipeline input: True (ByPropertyName)
98+
Accept wildcard characters: False
99+
```
100+
101+
### -WebApp
102+
The web app object
103+
104+
```yaml
105+
Type: PSSite
106+
Parameter Sets: S2
107+
Aliases:
108+
109+
Required: True
110+
Position: 0
111+
Default value: None
112+
Accept pipeline input: True (ByValue)
113+
Accept wildcard characters: False
114+
```
115+
116+
### CommonParameters
117+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
118+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
119+
120+
## INPUTS
121+
122+
### System.String
123+
124+
### Microsoft.Azure.Commands.WebApps.Models.PSSite
125+
126+
## OUTPUTS
127+
128+
### System.String
129+
130+
## NOTES
131+
132+
## RELATED LINKS

0 commit comments

Comments
 (0)