Show / Hide Table of Contents

Class RouterBgp

Inheritance
System.Object
RouterBgp
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
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: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class RouterBgp : IDirectResponseSchema

Properties

AdvertisedGroups

User-specified list of prefix groups to advertise in custom mode. This field can only be populated if advertise_mode 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.

Declaration
[JsonProperty("advertisedGroups")]
public virtual IList<string> AdvertisedGroups { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

AdvertisedIpRanges

User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode 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.

Declaration
[JsonProperty("advertisedIpRanges")]
public virtual IList<RouterAdvertisedIpRange> AdvertisedIpRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RouterAdvertisedIpRange>

AdvertiseMode

User-specified flag to indicate which mode to use for advertisement. The options are DEFAULT or CUSTOM.

Declaration
[JsonProperty("advertiseMode")]
public virtual string AdvertiseMode { get; set; }
Property Value
Type Description
System.String

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
[JsonProperty("asn")]
public virtual long? Asn { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top