Skip to content

Commit

Permalink
Network: support RouteTables in Azure client (#951)
Browse files Browse the repository at this point in the history
* Network: support RouteTables in Azure client

* Network: fix style
  • Loading branch information
xseeseesee authored Jan 9, 2020
1 parent 2d49008 commit a26a21a
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions src/ResourceManagement/Azure.Fluent/Azure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,15 @@ public IAzureFirewalls AzureFirewalls
}
}

/// <returns>entry point to manage route tables</returns>
public IRouteTables RouteTables
{
get
{
return networkManager.RouteTables;
}
}

/// <returns>entry point to manage virtual load balancers</returns>
public ILoadBalancers LoadBalancers
{
Expand Down Expand Up @@ -1131,20 +1140,25 @@ public interface IAzure : IAzureBeta
IPublicIPAddresses PublicIPAddresses { get; }

/// <summary>
/// Entry point to network interface management
/// Entry point to network interface management.
/// </summary>
INetworkInterfaces NetworkInterfaces { get; }

/// <summary>
/// Entry point to private link service management
/// Entry point to private link service management.
/// </summary>
IPrivateLinkServices PrivateLinkServices { get; }

/// <summary>
/// Entry point to Azure firewall management
/// Entry point to Azure firewall management.
/// </summary>
IAzureFirewalls AzureFirewalls { get; }

/// <summary>
/// Entry point to route tables management.
/// </summary>
IRouteTables RouteTables { get; }

/// <summary>
/// Entry point to Azure Resource Manager template deployment management.
/// </summary>
Expand Down

0 comments on commit a26a21a

Please sign in to comment.