Show / Hide Table of Contents

Class VirtualNetworkGatewayBgpSettingsArgs

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

Constructors

View Source

VirtualNetworkGatewayBgpSettingsArgs()

Declaration
public VirtualNetworkGatewayBgpSettingsArgs()

Properties

View Source

Asn

The Autonomous System Number (ASN) to use as part of the BGP.

Declaration
public Input<int> Asn { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

PeeringAddress

The BGP peer IP address of the virtual network gateway. This address is needed to configure the created gateway as a BGP Peer on the on-premises VPN devices. The IP address must be part of the subnet of the Virtual Network Gateway. Changing this forces a new resource to be created.

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

PeerWeight

The weight added to routes which have been learned through BGP peering. Valid values can be between 0 and 100.

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