RouteTable 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
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, 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, 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.Management.Network.Models.Route> routes = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.Subnet> subnets = default, bool? disableBgpRoutePropagation = default, string provisioningState = default, string resourceGuid = default, string etag = default);
new Microsoft.Azure.Management.Network.Models.RouteTable : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.Route> * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.Subnet> * Nullable<bool> * string * string * string -> Microsoft.Azure.Management.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 resourceGuid 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.
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'
- resourceGuid
- String
The resource GUID property of the route table.
- etag
- String
A unique read-only string that changes whenever the resource is updated.
Applies to
Azure SDK for .NET