Skip to content

Commit f0166dd

Browse files
committed
Revise according to review
1 parent b9a05cb commit f0166dd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Network/Network/PrivateLinkService/GetAzurePrivateLinkServiceCommand.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
using System.Management.Automation;
2020
using Microsoft.Rest.Azure;
2121
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
22-
22+
using NM = Microsoft.Azure.Management.Network.Models;
2323

2424
namespace Microsoft.Azure.Commands.Network
2525
{
@@ -75,7 +75,7 @@ public override void Execute()
7575
}
7676
else
7777
{
78-
IPage<Microsoft.Azure.Management.Network.Models.PrivateLinkService> plsPage;
78+
IPage<NM.PrivateLinkService> plsPage;
7979
if (ShouldListByResourceGroup(ResourceGroupName, Name))
8080
{
8181
plsPage = this.PrivateLinkServiceClient.List(this.ResourceGroupName);
@@ -86,7 +86,7 @@ public override void Execute()
8686
}
8787

8888

89-
var plsList = ListNextLink<Microsoft.Azure.Management.Network.Models.PrivateLinkService>.GetAllResourcesByPollingNextLink(plsPage, this.PrivateLinkServiceClient.ListNext);
89+
var plsList = ListNextLink<NM.PrivateLinkService>.GetAllResourcesByPollingNextLink(plsPage, this.PrivateLinkServiceClient.ListNext);
9090
var psPLSs = new List<PSPrivateLinkService>();
9191
foreach (var pls in plsList)
9292
{

src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/GenericProvider.cs

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

2323
namespace Microsoft.Azure.Commands.Network.PrivateLinkService.PrivateLinkServiceProvider
2424
{
25-
public class GenericProvider : IPrivateLinkProvider
25+
internal class GenericProvider : IPrivateLinkProvider
2626
{
2727

2828
private static IDictionary<string, string> _apiVersions = new Dictionary<string, string>{

src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/PrivateLinkProviderFactory.cs

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

1515
namespace Microsoft.Azure.Commands.Network.PrivateLinkService.PrivateLinkServiceProvider
1616
{
17-
public class PrivateLinkProviderFactory
17+
internal class PrivateLinkProviderFactory
1818
{
1919
private const string NETWORKING_TYPE = "microsoft.network/privatelinkservices";
2020

0 commit comments

Comments
 (0)