Show / Hide Table of Contents

Class RouterInterfaceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RouterInterfaceArgs
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.Gcp.Compute
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class RouterInterfaceArgs : ResourceArgs

Constructors

View Source

RouterInterfaceArgs()

Declaration
public RouterInterfaceArgs()

Properties

View Source

InterconnectAttachment

The name or resource link to the VLAN interconnect for this interface. Changing this forces a new interface to be created. Only one of vpn_tunnel and interconnect_attachment can be specified.

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

IpRange

IP address and range of the interface. The IP range must be in the RFC3927 link-local IP space. Changing this forces a new interface to be created.

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

Name

A unique name for the interface, required by GCE. Changing this forces a new interface to be created.

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

Project

The ID of the project in which this interface's router belongs. If it is not provided, the provider project is used. Changing this forces a new interface to be created.

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

Region

The region this interface's router sits in. If not specified, the project region will be used. Changing this forces a new interface to be created.

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

Router

The name of the router this interface will be attached to. Changing this forces a new interface to be created.

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

VpnTunnel

The name or resource link to the VPN tunnel this interface will be linked to. Changing this forces a new interface to be created. Only one of vpn_tunnel and interconnect_attachment can be specified.

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