Udostępnij przez


RouteTablePropertiesFormat Constructors

Definition

Overloads

Name Description
RouteTablePropertiesFormat()

Initializes a new instance of the RouteTablePropertiesFormat class.

RouteTablePropertiesFormat(IList<Route>, IList<Subnet>, Nullable<Boolean>, String)

Initializes a new instance of the RouteTablePropertiesFormat class.

RouteTablePropertiesFormat()

Initializes a new instance of the RouteTablePropertiesFormat class.

public RouteTablePropertiesFormat();
Public Sub New ()

Applies to

RouteTablePropertiesFormat(IList<Route>, IList<Subnet>, Nullable<Boolean>, String)

Initializes a new instance of the RouteTablePropertiesFormat class.

public RouteTablePropertiesFormat(System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.Route> routes = default, System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.Subnet> subnets = default, bool? disableBgpRoutePropagation = default, string provisioningState = default);
new Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.RouteTablePropertiesFormat : System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.Route> * System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.Subnet> * Nullable<bool> * string -> Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.RouteTablePropertiesFormat
Public Sub New (Optional routes As IList(Of Route) = Nothing, Optional subnets As IList(Of Subnet) = Nothing, Optional disableBgpRoutePropagation As Nullable(Of Boolean) = Nothing, Optional provisioningState As String = Nothing)

Parameters

routes
IList<Route>

Collection of routes contained within a route table.

subnets
IList<Subnet>

A collection of references to subnets.

disableBgpRoutePropagation
Nullable<Boolean>

Whether to disable the routes learned by BGP on that route table. True means disable.

provisioningState
String

The provisioning state of the route table resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

Applies to