Show / Hide Table of Contents

Class SubnetRouteState

Inheritance
System.Object
InputArgs
ResourceArgs
SubnetRouteState
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.OpenStack.Networking
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class SubnetRouteState : ResourceArgs

Constructors

View Source

SubnetRouteState()

Declaration
public SubnetRouteState()

Properties

View Source

DestinationCidr

CIDR block to match on the packet’s destination IP. Changing this creates a new routing entry.

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

NextHop

IP address of the next hop gateway. Changing this creates a new routing entry.

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

Region

The region in which to obtain the V2 networking client. A networking client is needed to configure a routing entry on a subnet. If omitted, the region argument of the provider is used. Changing this creates a new routing entry.

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

SubnetId

ID of the subnet this routing entry belongs to. Changing this creates a new routing entry.

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