Show / Hide Table of Contents

Class RouterBgpArgs

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

Constructors

View Source

RouterBgpArgs()

Declaration
public RouterBgpArgs()

Properties

View Source

AdvertisedGroups

User-specified list of prefix groups to advertise in custom mode. This field can only be populated if advertiseMode is CUSTOM and is advertised to all peers of the router. These groups will be advertised in addition to any specified prefixes. Leave this field blank to advertise no custom groups. This enum field has the one valid value: ALL_SUBNETS

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

AdvertisedIpRanges

User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertiseMode is CUSTOM and is advertised to all peers of the router. These IP ranges will be advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges. Structure is documented below.

Declaration
public InputList<RouterBgpAdvertisedIpRangeArgs> AdvertisedIpRanges { get; set; }
Property Value
Type Description
InputList<RouterBgpAdvertisedIpRangeArgs>
View Source

AdvertiseMode

User-specified flag to indicate which mode to use for advertisement.

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

Asn

Local BGP Autonomous System Number (ASN). Must be an RFC6996 private ASN, either 16-bit or 32-bit. The value will be fixed for this router resource. All VPN tunnels that link to this router will have the same local ASN.

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