Skip to content

Commit e30bb97

Browse files
committed
Merge pull request #105 from Azure/dev
.
2 parents aa7489a + a0b4906 commit e30bb97

File tree

668 files changed

+20243
-19892
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

668 files changed

+20243
-19892
lines changed

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToProduct.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
// // Copyright (c) Microsoft. All rights reserved.// // Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at// http://www.apache.org/licenses/LICENSE-2.0// // Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands{ using System; using System.Management.Automation; using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; [Cmdlet(VerbsCommon.Add, "AzureRMApiManagementApiToProduct")] [OutputType(typeof(bool))] public class AddAzureApiManagementApiToProduct : AzureApiManagementCmdletBase { [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] [ValidateNotNullOrEmpty] public PsApiManagementContext Context { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "Identifier of existing Product to add API to. This parameter is required.")] [ValidateNotNullOrEmpty] public String ProductId { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "Identifier of existing APIs to be added to the product. This parameter is required.")] [ValidateNotNullOrEmpty] public String ApiId { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")] public SwitchParameter PassThru { get; set; } public override void ExecuteApiManagementCmdlet() { Client.ApiAddToProduct(Context, ProductId, ApiId); if (PassThru) { WriteObject(true); } } }}
1+
// // Copyright (c) Microsoft. All rights reserved.// // Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at// http://www.apache.org/licenses/LICENSE-2.0// // Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands{ using System; using System.Management.Automation; using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; [Cmdlet(VerbsCommon.Add, "AzureRmApiManagementApiToProduct")] [OutputType(typeof(bool))] public class AddAzureApiManagementApiToProduct : AzureApiManagementCmdletBase { [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] [ValidateNotNullOrEmpty] public PsApiManagementContext Context { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "Identifier of existing Product to add API to. This parameter is required.")] [ValidateNotNullOrEmpty] public String ProductId { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "Identifier of existing APIs to be added to the product. This parameter is required.")] [ValidateNotNullOrEmpty] public String ApiId { get; set; } [Parameter( ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")] public SwitchParameter PassThru { get; set; } public override void ExecuteApiManagementCmdlet() { Client.ApiAddToProduct(Context, ProductId, ApiId); if (PassThru) { WriteObject(true); } } }}

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AddAzureApiManagementProductToGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.Add, "AzureRMApiManagementProductToGroup")]
21+
[Cmdlet(VerbsCommon.Add, "AzureRmApiManagementProductToGroup")]
2222
[OutputType(typeof(bool))]
2323
public class AddAzureApiManagementProductToGroup : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AddAzureApiManagementUserToGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.Add, "AzureRMApiManagementUserToGroup")]
21+
[Cmdlet(VerbsCommon.Add, "AzureRmApiManagementUserToGroup")]
2222
[OutputType(typeof(bool))]
2323
public class AddAzureApiManagementUserToGroup : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/ExportAzureApiManagementApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2222
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2323
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
2424

25-
[Cmdlet(VerbsData.Export, "AzureRMApiManagementApi", DefaultParameterSetName = ExportContentToPipeline)]
25+
[Cmdlet(VerbsData.Export, "AzureRmApiManagementApi", DefaultParameterSetName = ExportContentToPipeline)]
2626
[OutputType(typeof(string))]
2727
public class ExportAzureApiManagementApi : AzureApiManagementCmdletBase
2828
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementApi", DefaultParameterSetName = AllApis)]
22+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementApi", DefaultParameterSetName = AllApis)]
2323
[OutputType(typeof(IList<PsApiManagementApi>))]
2424
public class GetAzureApiManagementApi : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementAuthorizationServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementAuthorizationServer")]
22+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementAuthorizationServer")]
2323
[OutputType(typeof(IList<PsApiManagementOAuth2AuthrozationServer>))]
2424
public class GetAzureApiManagementAuthorizationServer : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementCertificate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2020
using System.Runtime.InteropServices;
2121
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2222

23-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementCertificate", DefaultParameterSetName = GetAll)]
23+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementCertificate", DefaultParameterSetName = GetAll)]
2424
[OutputType(typeof(IList<PsApiManagementCertificate>))]
2525
public class GetAzureApiManagementCertificate : AzureApiManagementCmdletBase
2626
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementGroup", DefaultParameterSetName = GetAll)]
21+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementGroup", DefaultParameterSetName = GetAll)]
2222
[OutputType(typeof(PsApiManagementGroup))]
2323
public class GetAzureApiManagementGroup : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementOperation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementOperation", DefaultParameterSetName = AllApiOperations)]
22+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementOperation", DefaultParameterSetName = AllApiOperations)]
2323
[OutputType(typeof(IList<PsApiManagementOperation>))]
2424
public class GetAzureApiManagementOperation : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2222
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2323
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
2424

25-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementPolicy", DefaultParameterSetName = TenantLevel)]
25+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementPolicy", DefaultParameterSetName = TenantLevel)]
2626
[OutputType(typeof(string))]
2727
public class GetAzureApiManagementPolicy : AzureApiManagementCmdletBase
2828
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementProduct.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementProduct", DefaultParameterSetName = GetAllProducts)]
22+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementProduct", DefaultParameterSetName = GetAllProducts)]
2323
[OutputType(typeof(IList<PsApiManagementProduct>))]
2424
public class GetAzureApiManagementProduct : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementSubscription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementSubscription", DefaultParameterSetName = GetAll)]
22+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementSubscription", DefaultParameterSetName = GetAll)]
2323
[OutputType(typeof(IList<PsApiManagementSubscription>))]
2424
public class GetAzureApiManagementSubscription : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementUser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementUser", DefaultParameterSetName = GetAll)]
22+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementUser", DefaultParameterSetName = GetAll)]
2323
[OutputType(typeof(IList<PsApiManagementUser>))]
2424
public class GetAzureApiManagementUser : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/GetAzureApiManagementUserSsoUrl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.Get, "AzureRMApiManagementUserSsoUrl")]
21+
[Cmdlet(VerbsCommon.Get, "AzureRmApiManagementUserSsoUrl")]
2222
[OutputType(typeof(string))]
2323
public class GetAzureApiManagementUserSsoUrl : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/ImportAzureApiManagementApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsData.Import, "AzureRMApiManagementApi", DefaultParameterSetName = FromLocalFile)]
21+
[Cmdlet(VerbsData.Import, "AzureRmApiManagementApi", DefaultParameterSetName = FromLocalFile)]
2222
[OutputType(typeof(PsApiManagementApi))]
2323
public class ImportAzureApiManagementApi : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementApi")]
22+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementApi")]
2323
[OutputType(typeof(PsApiManagementApi))]
2424
public class NewAzureApiManagementApi : AzureApiManagementCmdletBase
2525
{
@@ -118,7 +118,7 @@ public override void ExecuteApiManagementCmdlet()
118118

119119
if (ProductIds != null && ProductIds.Any())
120120
{
121-
WriteProgress(new ProgressRecord(0, "New-AzureRMApiManagementApi", "New API created. Adding to products..."));
121+
WriteProgress(new ProgressRecord(0, "New-AzureRmApiManagementApi", "New API created. Adding to products..."));
122122

123123
foreach (var productId in ProductIds)
124124
{
@@ -128,7 +128,7 @@ public override void ExecuteApiManagementCmdlet()
128128
WriteProgress(
129129
new ProgressRecord(
130130
0,
131-
"New-AzureRMApiManagementApi",
131+
"New-AzureRmApiManagementApi",
132132
string.Format("... Added to product {0}", productId))
133133
);
134134
}
@@ -137,7 +137,7 @@ public override void ExecuteApiManagementCmdlet()
137137
WriteProgress(
138138
new ProgressRecord(
139139
0,
140-
"New-AzureRMApiManagementApi",
140+
"New-AzureRmApiManagementApi",
141141
string.Format("... Failed to add to product {0} due to: {1}", productId, ex))
142142
);
143143
}

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementAuthorizationServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementAuthorizationServer")]
22+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementAuthorizationServer")]
2323
[OutputType(typeof(PsApiManagementOAuth2AuthrozationServer))]
2424
public class NewAzureApiManagementAuthorizationServer : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCertificate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2020
using System.Security.Cryptography.X509Certificates;
2121
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2222

23-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementCertificate", DefaultParameterSetName = FromFile)]
23+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementCertificate", DefaultParameterSetName = FromFile)]
2424
[OutputType(typeof(PsApiManagementCertificate))]
2525
public class NewAzureApiManagementCertificate : AzureApiManagementCmdletBase
2626
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
1919
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2020

21-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementContext"), OutputType(typeof (PsApiManagementContext))]
21+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementContext"), OutputType(typeof (PsApiManagementContext))]
2222
public class NewAzureApiManagementContext : AzureApiManagementCmdletBase
2323
{
2424
[Parameter(

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementGroup")]
21+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementGroup")]
2222
[OutputType(typeof(PsApiManagementGroup))]
2323
public class NewAzureApiManagementGroup : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementOperation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementOperation")]
21+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementOperation")]
2222
[OutputType(typeof(PsApiManagementOperation))]
2323
public class NewAzureApiManagementOperation : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementProduct.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Text.RegularExpressions;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementProduct")]
22+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementProduct")]
2323
[OutputType(typeof(PsApiManagementProduct))]
2424
public class NewAzureApiManagementProduct : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementSubscription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1919
using System.Runtime.InteropServices;
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121

22-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementSubscription")]
22+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementSubscription")]
2323
[OutputType(typeof(PsApiManagementSubscription))]
2424
public class NewAzureApiManagementSubscription : AzureApiManagementCmdletBase
2525
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementUser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.New, "AzureRMApiManagementUser")]
21+
[Cmdlet(VerbsCommon.New, "AzureRmApiManagementUser")]
2222
[OutputType(typeof(PsApiManagementUser))]
2323
public class NewAzureApiManagementUser : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
2222

23-
[Cmdlet(VerbsCommon.Remove, "AzureRMApiManagementApi")]
23+
[Cmdlet(VerbsCommon.Remove, "AzureRmApiManagementApi")]
2424
[OutputType(typeof(bool))]
2525
public class RemoveAzureApiManagementApi : AzureApiManagementCmdletBase
2626
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromProduct.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2020

21-
[Cmdlet(VerbsCommon.Remove, "AzureRMApiManagementApiFromProduct")]
21+
[Cmdlet(VerbsCommon.Remove, "AzureRmApiManagementApiFromProduct")]
2222
[OutputType(typeof(bool))]
2323
public class RemoveAzureApiManagementApiFromProduct : AzureApiManagementCmdletBase
2424
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementAuthorizationServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
2222

23-
[Cmdlet(VerbsCommon.Remove, "AzureRMApiManagementAuthorizationServer")]
23+
[Cmdlet(VerbsCommon.Remove, "AzureRmApiManagementAuthorizationServer")]
2424
[OutputType(typeof(bool))]
2525
public class RemoveAzureApiManagementAuthorizationServer : AzureApiManagementRemoveCmdletBase
2626
{

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCertificate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
2020
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
2121
using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
2222

23-
[Cmdlet(VerbsCommon.Remove, "AzureRMApiManagementCertificate")]
23+
[Cmdlet(VerbsCommon.Remove, "AzureRmApiManagementCertificate")]
2424
[OutputType(typeof(bool))]
2525
public class RemoveAzureApiManagementCertificate : AzureApiManagementRemoveCmdletBase
2626
{

0 commit comments

Comments
 (0)