From 7d081fcd384609328590baca13ee13f62d81bc92 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan Date: Thu, 1 Oct 2015 17:01:53 -0700 Subject: [PATCH] Fixed *-AzureDataCollection cmdlets name to *-AzureRmDataCollection --- src/ResourceManager/Profile/AzureRM.Profile.psd1 | 2 +- .../Profile/Commands.Profile/Commands.Profile.csproj | 4 ++-- ...AzureDataCollection.cs => DisableAzureRMDataCollection.cs} | 4 ++-- ...eAzureDataCollection.cs => EnableAzureRMDataCollection.cs} | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) rename src/ResourceManager/Profile/Commands.Profile/DataCollection/{DisableAzureDataCollection.cs => DisableAzureRMDataCollection.cs} (87%) rename src/ResourceManager/Profile/Commands.Profile/DataCollection/{EnableAzureDataCollection.cs => EnableAzureRMDataCollection.cs} (91%) diff --git a/src/ResourceManager/Profile/AzureRM.Profile.psd1 b/src/ResourceManager/Profile/AzureRM.Profile.psd1 index 880f84e71fd0..a417f7151faa 100644 --- a/src/ResourceManager/Profile/AzureRM.Profile.psd1 +++ b/src/ResourceManager/Profile/AzureRM.Profile.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.9.10' +ModuleVersion = '0.9.11' # ID used to uniquely identify this module GUID = '342714fc-4009-4863-8afb-a9067e3db04b' diff --git a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj index f2de630f5262..252b19eee0c4 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj +++ b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj @@ -132,8 +132,8 @@ - - + + diff --git a/src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureDataCollection.cs b/src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureRMDataCollection.cs similarity index 87% rename from src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureDataCollection.cs rename to src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureRMDataCollection.cs index 54f9712a98db..194f5800838f 100644 --- a/src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureDataCollection.cs +++ b/src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureRMDataCollection.cs @@ -19,8 +19,8 @@ namespace Microsoft.Azure.Commands.Profile { - [Cmdlet(VerbsLifecycle.Disable, "AzureDataCollection")] - public class DisableAzureDataCollectionCommand : EnableAzureDataCollectionCommand + [Cmdlet(VerbsLifecycle.Disable, "AzureRmDataCollection")] + public class DisableAzureRmDataCollectionCommand : EnableAzureRmDataCollectionCommand { protected override void ProcessRecord() { diff --git a/src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureDataCollection.cs b/src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureRMDataCollection.cs similarity index 91% rename from src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureDataCollection.cs rename to src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureRMDataCollection.cs index b79b70cad717..19d425f7ce03 100644 --- a/src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureDataCollection.cs +++ b/src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureRMDataCollection.cs @@ -19,8 +19,8 @@ namespace Microsoft.Azure.Commands.Profile { - [Cmdlet(VerbsLifecycle.Enable, "AzureDataCollection")] - public class EnableAzureDataCollectionCommand : AzureRMCmdlet + [Cmdlet(VerbsLifecycle.Enable, "AzureRmDataCollection")] + public class EnableAzureRmDataCollectionCommand : AzureRMCmdlet { protected override void ProcessRecord() {