Skip to content

Commit e1c427f

Browse files
committed
rename microsoft.network to servicemangement.network
1 parent 8f0b531 commit e1c427f

File tree

91 files changed

+153
-158
lines changed

Some content is hidden

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

91 files changed

+153
-158
lines changed

src/AzurePowershell.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Batch", "ResourceM
141141
EndProject
142142
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Batch.Test", "ResourceManager\Batch\Commands.Batch.Test\Commands.Batch.Test.csproj", "{F4ABAD68-64A5-4B23-B09C-42559A7524DE}"
143143
EndProject
144-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Network", "ServiceManagement\Network\Commands.Network\Commands.Network.csproj", "{40FEE0BB-FD45-4EFC-85BC-0D602A6892C4}"
144+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ServiceManagement.Network", "ServiceManagement\Network\Commands.Network\Commands.ServiceManagement.Network.csproj", "{40FEE0BB-FD45-4EFC-85BC-0D602A6892C4}"
145145
EndProject
146-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Network.Test", "ServiceManagement\Network\Commands.Network.Test\Commands.Network.Test.csproj", "{FDB897BD-FCB4-44A1-8D66-AC99F22EC737}"
146+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ServiceManagement.Network.Test", "ServiceManagement\Network\Commands.Network.Test\Commands.ServiceManagement.Network.Test.csproj", "{FDB897BD-FCB4-44A1-8D66-AC99F22EC737}"
147147
EndProject
148148
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.KeyVault", "ResourceManager\KeyVault\Commands.KeyVault\Commands.KeyVault.csproj", "{9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}"
149149
EndProject

src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@
158158
<Project>{bc420543-c04e-4bf3-96e1-cd81b823bdd7}</Project>
159159
<Name>Commands.Test.Utilities</Name>
160160
</ProjectReference>
161-
<ProjectReference Include="..\Commands.StreamAnalytics\Commands.StreamAnalytics.csproj">
161+
<ProjectReference Include="..\..\DataFactories\Commands.DataFactories\Commands.DataFactories.csproj">
162162
<Project>{9577252e-0a6b-4d61-86e8-95f7f309a987}</Project>
163-
<Name>Commands.StreamAnalytics</Name>
163+
<Name>Commands.DataFactories</Name>
164164
</ProjectReference>
165165
</ItemGroup>
166166
<ItemGroup>

src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,9 +502,9 @@
502502
<Project>{c60342b1-47d3-4a0e-8081-9b97ce60b7af}</Project>
503503
<Name>Commands.Profile</Name>
504504
</ProjectReference>
505-
<ProjectReference Include="..\..\Network\Commands.Network\Commands.Network.csproj">
505+
<ProjectReference Include="..\..\Network\Commands.Network\Commands.ServiceManagement.Network.csproj">
506506
<Project>{40fee0bb-fd45-4efc-85bc-0d602a6892c4}</Project>
507-
<Name>Commands.Network</Name>
507+
<Name>Commands.ServiceManagement.Network</Name>
508508
</ProjectReference>
509509
<ProjectReference Include="..\Commands.ServiceManagement.PlatformImageRepository\Commands.ServiceManagement.PlatformImageRepository.csproj">
510510
<Project>{6478fa8b-3801-4863-8591-87f0855d5c82}</Project>

src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ScenarioTest.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -852,32 +852,32 @@ public void VNetTest()
852852
Assert.AreEqual(localNetworkSites[0].VpnGatewayAddress, vnetsite.GatewaySites[0].VpnGatewayAddress);
853853
Assert.IsTrue(localNetworkSites[0].AddressSpace.AddressPrefixes.All(c => vnetsite.GatewaySites[0].AddressSpace.AddressPrefixes.Contains(c)));
854854

855-
Assert.AreEqual(Microsoft.Azure.Commands.Network.ProvisioningState.NotProvisioned, vmPowershellCmdlets.GetAzureVNetGateway(vnet)[0].State);
855+
Assert.AreEqual(Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState.NotProvisioned, vmPowershellCmdlets.GetAzureVNetGateway(vnet)[0].State);
856856
}
857857

858858
vmPowershellCmdlets.NewAzureVNetGateway(vnet1);
859859

860-
Assert.IsTrue(GetVNetState(vnet1, Microsoft.Azure.Commands.Network.ProvisioningState.Provisioned, 12, 60));
860+
Assert.IsTrue(GetVNetState(vnet1, Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState.Provisioned, 12, 60));
861861

862862
// Set-AzureVNetGateway -Connect Test
863863
vmPowershellCmdlets.SetAzureVNetGateway("connect", vnet1, lnet1);
864864

865-
foreach (Microsoft.Azure.Commands.Network.Gateway.Model.GatewayConnectionContext connection in vmPowershellCmdlets.GetAzureVNetConnection(vnet1))
865+
foreach (Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway.Model.GatewayConnectionContext connection in vmPowershellCmdlets.GetAzureVNetConnection(vnet1))
866866
{
867867
Console.WriteLine("Connectivity: {0}, LocalNetwork: {1}", connection.ConnectivityState, connection.LocalNetworkSiteName);
868868
Assert.IsFalse(connection.ConnectivityState.ToLowerInvariant().Contains("notconnected"));
869869
}
870870

871871
// Get-AzureVNetGatewayKey
872-
Microsoft.Azure.Commands.Network.Gateway.Model.SharedKeyContext result = vmPowershellCmdlets.GetAzureVNetGatewayKey(vnet1,
872+
Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway.Model.SharedKeyContext result = vmPowershellCmdlets.GetAzureVNetGatewayKey(vnet1,
873873
vmPowershellCmdlets.GetAzureVNetConnection(vnet1).First().LocalNetworkSiteName);
874874
Console.WriteLine("Gateway Key: {0}", result.Value);
875875

876876

877877
// Set-AzureVNetGateway -Disconnect
878878
vmPowershellCmdlets.SetAzureVNetGateway("disconnect", vnet1, lnet1);
879879

880-
foreach (Microsoft.Azure.Commands.Network.Gateway.Model.GatewayConnectionContext connection in vmPowershellCmdlets.GetAzureVNetConnection(vnet1))
880+
foreach (Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway.Model.GatewayConnectionContext connection in vmPowershellCmdlets.GetAzureVNetConnection(vnet1))
881881
{
882882
Console.WriteLine("Connectivity: {0}, LocalNetwork: {1}", connection.ConnectivityState, connection.LocalNetworkSiteName);
883883
}
@@ -887,20 +887,20 @@ public void VNetTest()
887887

888888
foreach (string vnet in virtualNets)
889889
{
890-
Microsoft.Azure.Commands.Network.VirtualNetworkGatewayContext gateway = vmPowershellCmdlets.GetAzureVNetGateway(vnet)[0];
890+
Microsoft.WindowsAzure.Commands.ServiceManagement.Network.VirtualNetworkGatewayContext gateway = vmPowershellCmdlets.GetAzureVNetGateway(vnet)[0];
891891

892892
Console.WriteLine("State: {0}, VIP: {1}", gateway.State.ToString(), gateway.VIPAddress);
893893
if (vnet.Equals(vnet1))
894894
{
895-
if (gateway.State != Microsoft.Azure.Commands.Network.ProvisioningState.Deprovisioning &&
896-
gateway.State != Microsoft.Azure.Commands.Network.ProvisioningState.NotProvisioned)
895+
if (gateway.State != Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState.Deprovisioning &&
896+
gateway.State != Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState.NotProvisioned)
897897
{
898898
Assert.Fail("The state of the gateway is neither Deprovisioning nor NotProvisioned!");
899899
}
900900
}
901901
else
902902
{
903-
Assert.AreEqual(Microsoft.Azure.Commands.Network.ProvisioningState.NotProvisioned, gateway.State);
903+
Assert.AreEqual(Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState.NotProvisioned, gateway.State);
904904
}
905905

906906
}
@@ -1670,9 +1670,9 @@ private string GetSiteContent(Uri uri, int maxRetryTimes, bool holdConnection)
16701670
return responseString;
16711671
}
16721672

1673-
private bool GetVNetState(string vnet, Microsoft.Azure.Commands.Network.ProvisioningState expectedState, int maxTime, int intervalTime)
1673+
private bool GetVNetState(string vnet, Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState expectedState, int maxTime, int intervalTime)
16741674
{
1675-
Microsoft.Azure.Commands.Network.ProvisioningState vnetState;
1675+
Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ProvisioningState vnetState;
16761676
int i = 0;
16771677
do
16781678
{

src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.NetworkCmdletInfo;
4545
using Microsoft.WindowsAzure.Commands.ServiceManagement.Test.FunctionalTests.SubscriptionCmdletInfo;
4646
using Microsoft.WindowsAzure.Commands.Utilities.Common;
47-
using Microsoft.WindowsAzure.Management.Network;
48-
using Microsoft.Azure.Commands.Network.Gateway.Model;
47+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway.Model;
4948
using Microsoft.WindowsAzure.Management.Network.Models;
5049
using Microsoft.WindowsAzure.Storage.Blob;
5150

@@ -1579,9 +1578,9 @@ public GatewayGetOperationStatusResponse NewAzureVNetGateway(string vnetName)
15791578
return RunPSCmdletAndReturnFirst<GatewayGetOperationStatusResponse>(new NewAzureVNetGatewayCmdletInfo(vnetName));
15801579
}
15811580

1582-
public Collection<Microsoft.Azure.Commands.Network.VirtualNetworkGatewayContext> GetAzureVNetGateway(string vnetName)
1581+
public Collection<Microsoft.WindowsAzure.Commands.ServiceManagement.Network.VirtualNetworkGatewayContext> GetAzureVNetGateway(string vnetName)
15831582
{
1584-
return RunPSCmdletAndReturnAll<Microsoft.Azure.Commands.Network.VirtualNetworkGatewayContext>(new GetAzureVNetGatewayCmdletInfo(vnetName));
1583+
return RunPSCmdletAndReturnAll<Microsoft.WindowsAzure.Commands.ServiceManagement.Network.VirtualNetworkGatewayContext>(new GetAzureVNetGatewayCmdletInfo(vnetName));
15851584
}
15861585

15871586
public GatewayGetOperationStatusResponse SetAzureVNetGateway(string option, string vnetName, string localNetwork)

src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,9 +528,9 @@
528528
<Project>{5ee72c53-1720-4309-b54b-5fb79703195f}</Project>
529529
<Name>Commands.Common</Name>
530530
</ProjectReference>
531-
<ProjectReference Include="..\..\Network\Commands.Network\Commands.Network.csproj">
531+
<ProjectReference Include="..\..\Network\Commands.Network\Commands.ServiceManagement.Network.csproj">
532532
<Project>{40fee0bb-fd45-4efc-85bc-0d602a6892c4}</Project>
533-
<Name>Commands.Network</Name>
533+
<Name>Commands.ServiceManagement.Network</Name>
534534
</ProjectReference>
535535
<ProjectReference Include="..\..\Services\Commands.Utilities\Commands.Utilities.csproj">
536536
<Project>{4900ec4e-8deb-4412-9108-0bc52f81d457}</Project>

src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Network/GetAzureNetworkSecurityGroupConfig.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@
1515
using System;
1616
using System.Collections.Generic;
1717
using System.Management.Automation;
18-
using Microsoft.Azure.Commands.Network;
19-
using Microsoft.Azure.Commands.Network.NetworkSecurityGroup.Model;
20-
using Microsoft.WindowsAzure.Commands.Common;
18+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network;
19+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.NetworkSecurityGroup.Model;
2120
using Microsoft.WindowsAzure.Commands.ServiceManagement.Properties;
22-
using Microsoft.Azure.Common.Authentication;
2321

2422
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS
2523
{

src/ServiceManagement/Network/Commands.Network.Test/Commands.Network.Test.csproj renamed to src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ProjectGuid>{FDB897BD-FCB4-44A1-8D66-AC99F22EC737}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>Microsoft.Azure.Commands.Network.Test</RootNamespace>
12-
<AssemblyName>Microsoft.Azure.Commands.Network.Test</AssemblyName>
11+
<RootNamespace>Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test</RootNamespace>
12+
<AssemblyName>Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test</AssemblyName>
1313
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<TargetFrameworkProfile />
@@ -172,9 +172,9 @@
172172
<Project>{C1BDA476-A5CC-4394-914D-48B0EC31A710}</Project>
173173
<Name>Commands.ScenarioTests.Common</Name>
174174
</ProjectReference>
175-
<ProjectReference Include="..\Commands.Network\Commands.Network.csproj">
175+
<ProjectReference Include="..\..\ManagedCache\Commands.ManagedCache\Commands.ManagedCache.csproj">
176176
<Project>{46c06ed8-43d9-41fd-b73b-41547d9c04e1}</Project>
177-
<Name>Commands.Network</Name>
177+
<Name>Commands.ManagedCache</Name>
178178
</ProjectReference>
179179
</ItemGroup>
180180
<ItemGroup>

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/AddApplicationGatewaySslCertificate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
using System;
1616
using System.Collections.Generic;
1717
using System.Management.Automation;
18-
using Microsoft.Azure.Commands.Network.Properties;
18+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Properties;
1919
using Microsoft.WindowsAzure.Management.Network.Models;
2020

21-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway
21+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureApplicationGatewaySslCertificate"), OutputType(typeof(ApplicationGatewayOperationResponse))]
2424
public class AddApplicationGatewayCertificateCommand : NetworkCmdletBase

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/GetApplicationGateway.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
using System.Collections.Generic;
1616
using System.Management.Automation;
17-
using Microsoft.Azure.Commands.Network.Properties;
17+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Properties;
1818
using Microsoft.WindowsAzure.Management.Network.Models;
19-
using PowerShellAppGwModel = Microsoft.Azure.Commands.Network.ApplicationGateway.Model;
19+
using PowerShellAppGwModel = Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model;
2020

21-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway
21+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway
2222
{
2323
[Cmdlet(VerbsCommon.Get, "AzureApplicationGateway"), OutputType(typeof(PowerShellAppGwModel.ApplicationGateway), typeof(IEnumerable<PowerShellAppGwModel.ApplicationGateway>))]
2424
public class GetApplicationGatewayCommand : NetworkCmdletBase

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/GetApplicationGatewayConfig.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
using System.Collections.Generic;
1616
using System.Management.Automation;
17-
using Microsoft.Azure.Commands.Network.Properties;
17+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Properties;
1818
using Microsoft.WindowsAzure.Management.Network.Models;
19-
using PowerShellAppGwModel = Microsoft.Azure.Commands.Network.ApplicationGateway.Model;
19+
using PowerShellAppGwModel = Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model;
2020

21-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway
21+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway
2222
{
2323
[Cmdlet(VerbsCommon.Get, "AzureApplicationGatewayConfig"), OutputType(typeof(PowerShellAppGwModel.ApplicationGatewayConfigContext))]
2424
public class GetApplicationGatewayConfigCommand : NetworkCmdletBase

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/GetApplicationGatewaySslCertificate.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
using System.Collections.Generic;
1616
using System.Management.Automation;
17-
using Microsoft.Azure.Commands.Network.Properties;
17+
using Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Properties;
1818
using Microsoft.WindowsAzure.Management.Network.Models;
19-
using PowerShellAppGwModel = Microsoft.Azure.Commands.Network.ApplicationGateway.Model;
19+
using PowerShellAppGwModel = Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model;
2020

21-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway
21+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway
2222
{
2323
[Cmdlet(VerbsCommon.Get, "AzureApplicationGatewaySslCertificate"),
2424
OutputType(typeof(PowerShellAppGwModel.ApplicationGatewayCertificate), typeof(List<PowerShellAppGwModel.ApplicationGatewayCertificate>))]

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGateway.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818
using System.Linq;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayCertificate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818
using System.Collections.Generic;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayConfigContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818
using System.IO;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818
using System.Linq;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayConfigurationContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System.Collections.Generic;
1818

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayEntityInternal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818
using System.Globalization;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayExceptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayInstanceInternal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System;
1818
using System.Globalization;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayOperations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System.Runtime.Serialization;
1818

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System.Globalization;
1818
using System.Text;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ApplicationGatewayState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System.Runtime.Serialization;
1818

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/BackendAddressPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
using System.Linq;
1616

17-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
17+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1818
{
1919
using System.Text;
2020
using System.Collections.Generic;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/BackendHttpSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
using System.Runtime.Remoting.Channels;
1616

17-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
17+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1818
{
1919
using System;
2020
using System.Collections.Generic;

src/ServiceManagement/Network/Commands.Network/ApplicationGateway/Model/ConfigurationElement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.Network.ApplicationGateway.Model
15+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.ApplicationGateway.Model
1616
{
1717
using System.Runtime.Serialization;
1818

0 commit comments

Comments
 (0)