VnetRoute 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
VnetRoute() |
Initializes a new instance of the VnetRoute class. |
VnetRoute(String, String, String, String, String, String, String) |
Initializes a new instance of the VnetRoute class. |
VnetRoute()
Initializes a new instance of the VnetRoute class.
public VnetRoute ();
Public Sub New ()
Applies to
VnetRoute(String, String, String, String, String, String, String)
Initializes a new instance of the VnetRoute class.
public VnetRoute (string id = default, string name = default, string kind = default, string type = default, string startAddress = default, string endAddress = default, string routeType = default);
new Microsoft.Azure.Management.WebSites.Models.VnetRoute : string * string * string * string * string * string * string -> Microsoft.Azure.Management.WebSites.Models.VnetRoute
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional startAddress As String = Nothing, Optional endAddress As String = Nothing, Optional routeType As String = Nothing)
Parameters
- id
- String
Resource Id.
- name
- String
Resource Name.
- kind
- String
Kind of resource.
- type
- String
Resource type.
- startAddress
- String
The starting address for this route. This may also include a CIDR notation, in which case the end address must not be specified.
- endAddress
- String
The ending address for this route. If the start address is specified in CIDR notation, this must be omitted.
- routeType
- String
The type of route this is: DEFAULT - By default, every app has routes to the local address ranges specified by RFC1918 INHERITED - Routes inherited from the real Virtual Network routes STATIC - Static route set on the app only
These values will be used for syncing an app's routes with those
from a Virtual Network. Possible values include: 'DEFAULT',
'INHERITED', 'STATIC'
Applies to
Azure SDK for .NET