public static interface RouteTable.UpdateStages.WithRoute
| Modifier and Type | Method and Description |
|---|---|
Route.UpdateDefinitionStages.Blank<RouteTable.Update> |
defineRoute(String name)
Begins the definition of a new route to add to the route table.
|
Route.Update |
updateRoute(String name)
Begins the update of an existing route on this route table.
|
RouteTable.Update |
withoutRoute(String name)
Removes the specified route from the route table.
|
RouteTable.Update |
withRoute(String destinationAddressPrefix,
RouteNextHopType nextHop)
Creates a non-virtual appliance route.
|
RouteTable.Update |
withRouteViaVirtualAppliance(String destinationAddressPrefix,
String ipAddress)
Creates a route via a virtual appliance.
|
RouteTable.Update withRoute(String destinationAddressPrefix, RouteNextHopType nextHop)
The name is generated automatically.
destinationAddressPrefix - the destination address prefix, expressed in the CIDR notation, for the route to apply tonextHop - the next hop typeRouteTable.Update withRouteViaVirtualAppliance(String destinationAddressPrefix, String ipAddress)
destinationAddressPrefix - the destination address prefix, expressed in the CIDR notation, for the route to apply toipAddress - the IP address of the virtual appliance to route the traffic throughRoute.UpdateDefinitionStages.Blank<RouteTable.Update> defineRoute(String name)
The definition must be completed with a call to Attachable.InUpdate.attach()
name - the name of the routeRouteTable.Update withoutRoute(String name)
name - the name of an existing route on this route tableRoute.Update updateRoute(String name)
name - the name of an existing route/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/