次の方法で共有


RouteTable Constructors

Definition

Overloads

RouteTable()

Initializes a new instance of the RouteTable class.

RouteTable(String, String, String, String, IDictionary<String,String>, IList<Route>, IList<Subnet>, Nullable<Boolean>, String, String)

Initializes a new instance of the RouteTable class.

RouteTable()

Initializes a new instance of the RouteTable class.

public RouteTable ();
Public Sub New ()

Applies to

RouteTable(String, String, String, String, IDictionary<String,String>, IList<Route>, IList<Subnet>, Nullable<Boolean>, String, String)

Initializes a new instance of the RouteTable class.

public RouteTable (string id = default, string name = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, 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, string etag = default);
new Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.RouteTable : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * 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 * string -> Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.RouteTable
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, 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, Optional etag As String = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

location
String

Resource location.

tags
IDictionary<String,String>

Resource tags.

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'

etag
String

A unique read-only string that changes whenever the resource is updated.

Applies to