Skip to content

Commit 363650b

Browse files
committed
More branding changes and updated the help file. Added Web App usage metrics.
1 parent 1f42dee commit 363650b

32 files changed

+2686
-2289
lines changed

src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@
125125
<None Include="ScenarioTests\WebAppTests.ps1">
126126
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
127127
</None>
128-
<None Include="SessionRecords\Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests\TestCreatesNewSimpleWebApp.json">
128+
<None Include="SessionRecords\Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests\TestCreatesNewAppServicePlan.json">
129129
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
130130
</None>
131-
<None Include="SessionRecords\Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests\TestCreatesNewAppServicePlan.json">
131+
<None Include="SessionRecords\Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests\TestCreatesNewSimpleWebApp.json">
132132
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
133133
</None>
134134
</ItemGroup>

src/ResourceManager/Websites/Commands.Websites.Test/NewAzureWebsitesCommandTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@
1515
using System.Collections;
1616
using System.Collections.Generic;
1717
using System.Management.Automation;
18-
using Microsoft.Azure.Commands.Websites.Utilities;
18+
using Microsoft.Azure.Commands.WebApp.Utilities;
1919
using Microsoft.WindowsAzure.Commands.ScenarioTest;
2020
using Microsoft.WindowsAzure.Commands.Common;
21-
using Microsoft.Azure.Commands.Websites.Cmdlets;
22-
using Microsoft.Azure.Commands.Websites;
23-
using Microsoft.Azure.Commands.Websites.Models;
21+
using Microsoft.Azure.Commands.WebApp.Cmdlets;
22+
using Microsoft.Azure.Commands.WebApp;
23+
using Microsoft.Azure.Commands.WebApp.Models;
2424
using Moq;
2525
using Xunit;
2626

2727

2828

2929
namespace Microsoft.Azure.Commands.Websites.Test
3030
{
31-
public class NewAzureWebsiteCommandTests
31+
public class NewAzureWebAppCommandTests
3232
{
33-
private NewAzureWebsiteCmdlet cmdlet;
33+
private NewAzureWebAppCmdlet cmdlet;
3434

3535
private Mock<WebsitesClient> websitesClientMock;
3636

@@ -53,11 +53,11 @@ public class NewAzureWebsiteCommandTests
5353

5454
private Hashtable[] tags;
5555

56-
public NewAzureWebsiteCommandTests()
56+
public NewAzureWebAppCommandTests()
5757
{
5858
websitesClientMock = new Mock<WebsitesClient>();
5959
commandRuntimeMock = new Mock<ICommandRuntime>();
60-
cmdlet = new NewAzureWebsiteCmdlet()
60+
cmdlet = new NewAzureWebAppCmdlet()
6161
{
6262
CommandRuntime = commandRuntimeMock.Object,
6363
WebsitesClient = websitesClientMock.Object

src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using Microsoft.WindowsAzure.Commands.ScenarioTest;
1717
using Xunit;
1818

19-
namespace Microsoft.Azure.Commands.Websites.Test.ScenarioTests
19+
namespace Microsoft.Azure.Commands.WebApp.Test.ScenarioTests
2020
{
2121
public class WebAppTests
2222
{

src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebsitesController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using Microsoft.Azure.Gallery;
1818
using Microsoft.Azure.Management.Resources;
1919
using Microsoft.Azure.Management.WebSites;
20-
using Microsoft.Azure.Commands.Websites.Utilities;
20+
using Microsoft.Azure.Commands.WebApp.Utilities;
2121
using Microsoft.Azure.Subscriptions;
2222
using Microsoft.Azure.Test.HttpRecorder;
2323
using Microsoft.WindowsAzure.Commands.ScenarioTest;
@@ -26,7 +26,7 @@
2626
using System;
2727
using System.Linq;
2828

29-
namespace Microsoft.Azure.Commands.Websites.Test.ScenarioTests
29+
namespace Microsoft.Azure.Commands.WebApp.Test.ScenarioTests
3030
{
3131
public class WebsitesController
3232
{

src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestCreatesNewAppServicePlan.json

Lines changed: 742 additions & 0 deletions
Large diffs are not rendered by default.

src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestCreatesNewSimpleWebApp.json

Lines changed: 1208 additions & 0 deletions
Large diffs are not rendered by default.

src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestCreatesNewAppServicePlan.json

Lines changed: 0 additions & 742 deletions
This file was deleted.

src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestCreatesNewSimpleWebApp.json

Lines changed: 0 additions & 1208 deletions
This file was deleted.

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/GetAzureAppServicePlan.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
using Microsoft.Azure.Management.WebSites.Models;
2323
using Microsoft.WindowsAzure;
2424
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
25-
using Microsoft.Azure.Commands.Websites;
25+
using Microsoft.Azure.Commands.WebApp;
2626
using Microsoft.Azure.Management.WebSites;
2727
using System.Net.Http;
2828
using System.Threading;
2929
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3030
using System.Net;
3131
using Microsoft.Azure;
3232
using Microsoft.WindowsAzure.Commands.Utilities.Common;
33-
using Microsoft.Azure.Commands.Websites.Utilities;
33+
using Microsoft.Azure.Commands.WebApp.Utilities;
3434

3535

36-
namespace Microsoft.Azure.Commands.Websites.Cmdlets.AppServicePlan
36+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets.AppServicePlan
3737
{
3838
/// <summary>
39-
/// this commandlet will let you Get an Azure Web Hosting Plan using ARM APIs
39+
/// this commandlet will let you Get an Azure App Service Plan using ARM APIs
4040
/// </summary>
4141
[Cmdlet(VerbsCommon.Get, "AzureAppServicePlan"), OutputType(typeof(WebHostingPlanGetResponse), typeof(WebHostingPlanListResponse))]
4242
public class GetAppServicePlanCmdlet : WebHostingPlanBaseNotMandatoryCmdlet

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/GetAzureAppServicePlanMetrics.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
using Microsoft.Azure.Management.WebSites.Models;
2323
using Microsoft.WindowsAzure;
2424
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
25-
using Microsoft.Azure.Commands.Websites;
25+
using Microsoft.Azure.Commands.WebApp;
2626
using Microsoft.Azure.Management.WebSites;
2727
using System.Net.Http;
2828
using System.Threading;
2929
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3030
using System.Net;
3131
using Microsoft.Azure;
3232
using Microsoft.WindowsAzure.Commands.Utilities.Common;
33-
using Microsoft.Azure.Commands.Websites.Utilities;
33+
using Microsoft.Azure.Commands.WebApp.Utilities;
3434

35-
namespace Microsoft.Azure.Commands.Websites.Cmdlets.AppServicePlan
35+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets.AppServicePlan
3636
{
3737
/// <summary>
38-
/// this commandlet will let you create a new Azure Web Hosting Plan using ARM APIs
38+
/// this commandlet will let you get metrics of an app service plan using ARM APIs
3939
/// </summary>
4040
[Cmdlet(VerbsCommon.Get, "AzureAppServicePlanMetrics"), OutputType(typeof(WebHostingPlanCreateOrUpdateResponse))]
4141
public class GetAzureAppServicePlanMetricsCmdlet : AppServicePlanBaseCmdlet
@@ -66,7 +66,7 @@ public class GetAzureAppServicePlanMetricsCmdlet : AppServicePlanBaseCmdlet
6666

6767
public override void ExecuteCmdlet()
6868
{
69-
WebHostingPlanGetHistoricalUsageMetricsResponse response = WebsitesClient.GetWebHostingPlanHistoricalUsageMetrics(ResourceGroupName, Name, Metrics, StartDate, EndDate, TimeGrain, InstanceDetails);
69+
WebHostingPlanGetHistoricalUsageMetricsResponse response = WebsitesClient.GetAppServicePlanHistoricalUsageMetrics(ResourceGroupName, Name, Metrics, StartDate, EndDate, TimeGrain, InstanceDetails);
7070
foreach (var metricResponse in response.UsageMetrics)
7171
{
7272
WriteObject(metricResponse, true);

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/NewAzureAppServicePlan.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
using Microsoft.Azure.Management.WebSites.Models;
2323
using Microsoft.WindowsAzure;
2424
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
25-
using Microsoft.Azure.Commands.Websites;
25+
using Microsoft.Azure.Commands.WebApp;
2626
using Microsoft.Azure.Management.WebSites;
2727
using System.Net.Http;
2828
using System.Threading;
2929
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3030
using System.Net;
3131
using Microsoft.Azure;
3232
using Microsoft.WindowsAzure.Commands.Utilities.Common;
33-
using Microsoft.Azure.Commands.Websites.Utilities;
33+
using Microsoft.Azure.Commands.WebApp.Utilities;
3434

35-
namespace Microsoft.Azure.Commands.Websites.Cmdlets.AppServicePlan
35+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets.AppServicePlan
3636
{
3737
/// <summary>
38-
/// this commandlet will let you create a new Azure Web Hosting Plan using ARM APIs
38+
/// this commandlet will let you create a new Azure App service Plan using ARM APIs
3939
/// </summary>
4040
[Cmdlet(VerbsCommon.New, "AzureAppServicePlan"), OutputType(typeof(WebHostingPlanCreateOrUpdateResponse))]
4141
public class NewAzureAppServicePlanCmdlet : AppServicePlanBaseCmdlet

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/RemoveAppServicePlan.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
using Microsoft.Azure.Management.WebSites.Models;
2323
using Microsoft.WindowsAzure;
2424
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
25-
using Microsoft.Azure.Commands.Websites;
25+
using Microsoft.Azure.Commands.WebApp;
2626
using Microsoft.Azure.Management.WebSites;
2727
using System.Net.Http;
2828
using System.Threading;
2929
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3030
using System.Net;
3131
using Microsoft.Azure;
3232
using Microsoft.WindowsAzure.Commands.Utilities.Common;
33-
using Microsoft.Azure.Commands.Websites.Utilities;
33+
using Microsoft.Azure.Commands.WebApp.Utilities;
3434

3535

36-
namespace Microsoft.Azure.Commands.Websites.Cmdlets.AppServicePlan
36+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets.AppServicePlan
3737
{
3838
/// <summary>
39-
/// this commandlet will let you delete an Azure Web Hosting Plan using ARM APIs
39+
/// this commandlet will let you delete an Azure App Service Plan using ARM APIs
4040
/// </summary>
4141
[Cmdlet(VerbsCommon.Remove, "AzureAppServicePlan"), OutputType(typeof(AzureOperationResponse))]
4242
public class RemoveAppServicePlanCmdlet : AppServicePlanBaseCmdlet
@@ -48,8 +48,8 @@ public override void ExecuteCmdlet()
4848
{
4949
ConfirmAction(
5050
Force.IsPresent,
51-
string.Format(Microsoft.Azure.Commands.Websites.Properties.Resources.RemovingWebHostPlan, Name),
52-
Microsoft.Azure.Commands.Websites.Properties.Resources.RemovingWebHostPlan,
51+
string.Format(Microsoft.Azure.Commands.WebApp.Properties.Resources.RemovingWebHostPlan, Name),
52+
Microsoft.Azure.Commands.WebApp.Properties.Resources.RemovingWebHostPlan,
5353
Name,
5454
() => WebsitesClient.RemoveWebHostingPlan(ResourceGroupName, Name));
5555
}

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/SetAzureAppServicePlan.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@
2121
using Microsoft.Azure.Management.WebSites.Models;
2222
using Microsoft.WindowsAzure;
2323
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
24-
using Microsoft.Azure.Commands.Websites;
24+
using Microsoft.Azure.Commands.WebApp;
2525
using Microsoft.Azure.Management.WebSites;
2626
using System.Net.Http;
2727
using System.Threading;
2828
using Microsoft.IdentityModel.Clients.ActiveDirectory;
2929
using System.Net;
3030
using Microsoft.Azure;
3131
using Microsoft.WindowsAzure.Commands.Utilities.Common;
32-
using Microsoft.Azure.Commands.Websites.Utilities;
32+
using Microsoft.Azure.Commands.WebApp.Utilities;
3333

34-
namespace Microsoft.Azure.Commands.Websites.Cmdlets.AppServicePlan
34+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets.AppServicePlan
3535
{
3636
/// <summary>
37-
/// this commandlet will let you create a new Azure Web Hosting Plan using ARM APIs
37+
/// this commandlet will let you set Azure App Service Plan using ARM APIs
3838
/// </summary>
3939
[Cmdlet(VerbsCommon.Set, "AzureAppServicePlan"), OutputType(typeof(WebHostingPlanCreateOrUpdateResponse))]
4040
public class SetAzureAppServicePlanCmdlet : AppServicePlanBaseCmdlet

src/ResourceManager/Websites/Commands.Websites/Cmdlets/GetAzureWebApp.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@
2323
using Microsoft.Azure.Management.WebSites.Models;
2424
using Microsoft.WindowsAzure;
2525
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
26-
using Microsoft.Azure.Commands.Webpp;
26+
using Microsoft.Azure.Commands.WebApp;
2727
using Microsoft.Azure.Management.WebSites;
2828
using System.Net.Http;
2929
using System.Threading;
3030
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3131
using System.Net;
3232
using Microsoft.Azure;
3333
using Microsoft.WindowsAzure.Commands.Utilities.Common;
34-
using Microsoft.Azure.Commands.Websites.Utilities;
34+
using Microsoft.Azure.Commands.WebApp.Utilities;
3535

3636

3737

38-
namespace Microsoft.Azure.Commands.Websites.Cmdlets
38+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets
3939
{
4040
/// <summary>
41-
/// this commandlet will let you create a new Azure Websites using ARM APIs
41+
/// this commandlet will let you get a new Azure Websites using ARM APIs
4242
/// </summary>
4343
[Cmdlet(VerbsCommon.Get, "AzureWebApp")]
4444
public class GetAzureWebAppCmdlet : WebAppBaseSlotCmdlet
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
// ----------------------------------------------------------------------------------
2+
//
3+
// Copyright Microsoft Corporation
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
// ----------------------------------------------------------------------------------
14+
15+
using System;
16+
using System.Collections.Generic;
17+
using System.Linq;
18+
using System.Text;
19+
using System.Threading.Tasks;
20+
using System.Management.Automation;
21+
using Microsoft.Azure.Management.WebSites.Models;
22+
using Microsoft.WindowsAzure;
23+
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
24+
using Microsoft.Azure.Commands.WebApp;
25+
using Microsoft.Azure.Management.WebSites;
26+
using System.Net.Http;
27+
using System.Threading;
28+
using Microsoft.IdentityModel.Clients.ActiveDirectory;
29+
using System.Net;
30+
using Microsoft.Azure;
31+
using Microsoft.WindowsAzure.Commands.Utilities.Common;
32+
using Microsoft.Azure.Commands.WebApp.Utilities;
33+
34+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets
35+
{
36+
/// <summary>
37+
/// this commandlet will let you get Azure Web App metrics using ARM APIs
38+
/// </summary>
39+
[Cmdlet(VerbsCommon.Get, "AzureWebAppMetrics"), OutputType(typeof(WebSiteGetUsageMetricsResponse))]
40+
public class GetAzureWebAppMetricsCmdlet : WebAppBaseSlotCmdlet
41+
{
42+
[Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "List of metrics names to retrieve.")]
43+
[ValidateNotNullOrEmpty]
44+
public string [] Metrics { get; set; }
45+
46+
[Parameter(Position = 3, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Granularity.")]
47+
[ValidateSet("Minutes", "Hours", "Days", IgnoreCase = true)]
48+
[ValidateNotNullOrEmpty]
49+
public string Granularity { get; set; }
50+
51+
[Parameter(Position = 4, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The start time.")]
52+
[ValidateNotNullOrEmpty]
53+
public DateTime? StartDate { get; set; }
54+
55+
[Parameter(Position = 5, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The end time.")]
56+
public DateTime? EndDate { get; set; }
57+
58+
[Parameter(Position = 6, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Include details for each server instance in the web hosting plan.")]
59+
public SwitchParameter InstanceDetails { get; set; }
60+
61+
[Parameter(Position = 7, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Time grain for the metrics. Supported values are PT1M (per minute), PT1H (per hour), P1D (per day).")]
62+
[ValidateSet("PT1M", "PT1H", "P1D", IgnoreCase = true)]
63+
public string TimeGrain { get; set; }
64+
65+
66+
public override void ExecuteCmdlet()
67+
{
68+
WebSiteGetHistoricalUsageMetricsResponse response = WebsitesClient.GetWebAppUsageMetrics(ResourceGroupName, Name, SlotName, Metrics, StartDate, EndDate, TimeGrain, InstanceDetails);
69+
foreach (var metricResponse in response.UsageMetrics)
70+
{
71+
WriteObject(metricResponse, true);
72+
}
73+
}
74+
}
75+
}

src/ResourceManager/Websites/Commands.Websites/Cmdlets/GetAzureWebAppPublishingProfile.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@
2323
using Microsoft.Azure.Management.WebSites.Models;
2424
using Microsoft.WindowsAzure;
2525
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
26-
using Microsoft.Azure.Commands.Webpp;
26+
using Microsoft.Azure.Commands.WebApp;
2727
using Microsoft.Azure.Management.WebSites;
2828
using System.Net.Http;
2929
using System.Threading;
3030
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3131
using System.Net;
3232
using Microsoft.Azure;
3333
using Microsoft.WindowsAzure.Commands.Utilities.Common;
34-
using Microsoft.Azure.Commands.Websites.Utilities;
34+
using Microsoft.Azure.Commands.WebApp.Utilities;
3535

3636

37-
namespace Microsoft.Azure.Commands.Websites.Cmdlets
37+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets
3838
{
3939
/// <summary>
40-
/// this commandlet will get the publishing creds of the given Azure Websites using ARM APIs
40+
/// this commandlet will get the publishing creds of the given Azure Web app using ARM APIs
4141
/// </summary>
4242
[Cmdlet(VerbsCommon.Get, "AzureWebAppPublishingProfile")]
4343
public class GetAzureWebAppPublishingProfileCmdlet : WebAppBaseSlotCmdlet

src/ResourceManager/Websites/Commands.Websites/Cmdlets/NewAzureWebApp.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@
2222
using Microsoft.Azure.Management.WebSites.Models;
2323
using Microsoft.WindowsAzure;
2424
using Microsoft.WindowsAzure.Commands.Utilities.CloudService;
25-
using Microsoft.Azure.Commands.Webpp;
25+
using Microsoft.Azure.Commands.WebApp;
2626
using Microsoft.Azure.Management.WebSites;
2727
using System.Net.Http;
2828
using System.Threading;
2929
using Microsoft.IdentityModel.Clients.ActiveDirectory;
3030
using System.Net;
3131
using Microsoft.Azure;
3232
using Microsoft.WindowsAzure.Commands.Utilities.Common;
33-
using Microsoft.Azure.Commands.Websites.Utilities;
33+
using Microsoft.Azure.Commands.WebApp.Utilities;
3434

3535

36-
namespace Microsoft.Azure.Commands.Websites.Cmdlets
36+
namespace Microsoft.Azure.Commands.WebApp.Cmdlets
3737
{
3838
/// <summary>
39-
/// this commandlet will let you create a new Azure Websites using ARM APIs
39+
/// this commandlet will let you create a new Azure Web app using ARM APIs
4040
/// </summary>
4141
[Cmdlet(VerbsCommon.New, "AzureWebApp")]
42-
public class NewAzureWebsiteCmdlet : WebAppBaseCmdlet
42+
public class NewAzureWebAppCmdlet : WebAppBaseCmdlet
4343
{
4444

4545
[Parameter(Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]

0 commit comments

Comments
 (0)