Show / Hide Table of Contents

Class RouteState

Inheritance
System.Object
InputArgs
ResourceArgs
RouteState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Network
Assembly: Pulumi.Azure.dll
Syntax
public sealed class RouteState : ResourceArgs

Constructors

View Source

RouteState()

Declaration
public RouteState()

Properties

View Source

AddressPrefix

The destination CIDR to which the route applies, such as 10.1.0.0/16

Declaration
public Input<string> AddressPrefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the route. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NextHopInIpAddress

Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.

Declaration
public Input<string> NextHopInIpAddress { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NextHopType

The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None

Declaration
public Input<string> NextHopType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which to create the route. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RouteTableName

The name of the route table within which create the route. Changing this forces a new resource to be created.

Declaration
public Input<string> RouteTableName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.