EffectiveRoute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EffectiveRoute() |
Initializes a new instance of the EffectiveRoute class. |
EffectiveRoute(String, Nullable<Boolean>, String, String, IList<String>, IList<String>, String) |
Initializes a new instance of the EffectiveRoute class. |
EffectiveRoute()
Initializes a new instance of the EffectiveRoute class.
public EffectiveRoute ();
Public Sub New ()
Applies to
EffectiveRoute(String, Nullable<Boolean>, String, String, IList<String>, IList<String>, String)
Initializes a new instance of the EffectiveRoute class.
public EffectiveRoute (string name = default, bool? disableBgpRoutePropagation = default, string source = default, string state = default, System.Collections.Generic.IList<string> addressPrefix = default, System.Collections.Generic.IList<string> nextHopIpAddress = default, string nextHopType = default);
new Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.EffectiveRoute : string * Nullable<bool> * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.EffectiveRoute
Public Sub New (Optional name As String = Nothing, Optional disableBgpRoutePropagation As Nullable(Of Boolean) = Nothing, Optional source As String = Nothing, Optional state As String = Nothing, Optional addressPrefix As IList(Of String) = Nothing, Optional nextHopIpAddress As IList(Of String) = Nothing, Optional nextHopType As String = Nothing)
Parameters
- name
- String
The name of the user defined route. This is optional.
If true, on-premises routes are not propagated to the network interfaces in the subnet.
- source
- String
Who created the route. Possible values include: 'Unknown', 'User', 'VirtualNetworkGateway', 'Default'
- state
- String
The value of effective route. Possible values include: 'Active', 'Invalid'
- nextHopType
- String
The type of Azure hop the packet should be sent to. Possible values include: 'VirtualNetworkGateway', 'VnetLocal', 'Internet', 'VirtualAppliance', 'None'