VnetRouteInner Constructors

Definition

Overloads

VnetRouteInner()

Initializes a new instance of the VnetRouteInner class.

VnetRouteInner(String, String, String, String, String, String, RouteType)

Initializes a new instance of the VnetRouteInner class.

VnetRouteInner()

Initializes a new instance of the VnetRouteInner class.

public VnetRouteInner ();
Public Sub New ()

Applies to

VnetRouteInner(String, String, String, String, String, String, RouteType)

Initializes a new instance of the VnetRouteInner class.

public VnetRouteInner (string id = default, string name = default, string type = default, string kind = default, string startAddress = default, string endAddress = default, Microsoft.Azure.Management.AppService.Fluent.Models.RouteType routeType = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.VnetRouteInner : string * string * string * string * string * string * Microsoft.Azure.Management.AppService.Fluent.Models.RouteType -> Microsoft.Azure.Management.AppService.Fluent.Models.VnetRouteInner
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind As String = Nothing, Optional startAddress As String = Nothing, Optional endAddress As String = Nothing, Optional routeType As RouteType = Nothing)

Parameters

id
String
name
String
type
String
kind
String

Kind of resource.

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
RouteType

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