Skip to content

Commit f086c2f

Browse files
author
Vini Soto
committed
Adding missing license headers and other review comments
1 parent dfd03dc commit f086c2f

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/NewAzureRmWebAppAzureStoragePath.cs

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1-
using Microsoft.Azure.Commands.WebApps.Models;
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 Microsoft.Azure.Commands.WebApps.Models;
216
using Microsoft.Azure.Management.WebSites.Models;
3-
using System;
4-
using System.Collections.Generic;
5-
using System.Linq;
617
using System.Management.Automation;
7-
using System.Text;
8-
using System.Threading.Tasks;
918

1019
namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps
1120
{
12-
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppAzureStoragePath", SupportsShouldProcess = true), OutputType(typeof(WebAppAzureStoragePath))]
21+
[Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppAzureStoragePath", SupportsShouldProcess = true), OutputType(typeof(WebAppAzureStoragePath))]
1322
public class NewAzureRmWebAppAzureStoragePath: WebAppBaseClientCmdLet
1423
{
1524
[Parameter(Mandatory = true, HelpMessage = "The identifier of the Azure Storage property. Must be unique within the Web App or Slot")]

src/ResourceManager/Websites/Commands.Websites/Models.WebApp/WebAppAzureStoragePath.cs

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
using Microsoft.Azure.Management.WebSites.Models;
22
using System;
3-
using System.Collections.Generic;
4-
using System.Linq;
5-
using System.Text;
6-
using System.Threading.Tasks;
3+
// ----------------------------------------------------------------------------------
4+
//
5+
// Copyright Microsoft Corporation
6+
// Licensed under the Apache License, Version 2.0 (the "License");
7+
// you may not use this file except in compliance with the License.
8+
// You may obtain a copy of the License at
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
// Unless required by applicable law or agreed to in writing, software
11+
// distributed under the License is distributed on an "AS IS" BASIS,
12+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
// See the License for the specific language governing permissions and
14+
// limitations under the License.
15+
// ----------------------------------------------------------------------------------
716

817
namespace Microsoft.Azure.Commands.WebApps.Models
918
{

0 commit comments

Comments
 (0)