Class: Google::Apis::ComputeBeta::RouterBgp
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::RouterBgp
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#advertise_mode ⇒ String
User-specified flag to indicate which mode to use for advertisement.
-
#advertised_groups ⇒ Array<String>
User-specified list of prefix groups to advertise in custom mode.
-
#advertised_ip_ranges ⇒ Array<Google::Apis::ComputeBeta::RouterAdvertisedIpRange>
User-specified list of individual IP ranges to advertise in custom mode.
-
#asn ⇒ Fixnum
Local BGP Autonomous System Number (ASN).
-
#keepalive_interval ⇒ Fixnum
The interval in seconds between BGP keepalive messages that are sent to the peer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouterBgp
constructor
A new instance of RouterBgp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouterBgp
Returns a new instance of RouterBgp.
27800 27801 27802 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27800 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advertise_mode ⇒ String
User-specified flag to indicate which mode to use for advertisement. The
options are DEFAULT or CUSTOM.
Corresponds to the JSON property advertiseMode
27762 27763 27764 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27762 def advertise_mode @advertise_mode end |
#advertised_groups ⇒ Array<String>
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.
Corresponds to the JSON property advertisedGroups
27770 27771 27772 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27770 def advertised_groups @advertised_groups end |
#advertised_ip_ranges ⇒ Array<Google::Apis::ComputeBeta::RouterAdvertisedIpRange>
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.
Corresponds to the JSON property advertisedIpRanges
27778 27779 27780 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27778 def advertised_ip_ranges @advertised_ip_ranges end |
#asn ⇒ Fixnum
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.
Corresponds to the JSON property asn
27785 27786 27787 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27785 def asn @asn end |
#keepalive_interval ⇒ Fixnum
The interval in seconds between BGP keepalive messages that are sent to the
peer.
Not currently available publicly.
Hold time is three times the interval at which keepalive messages are sent,
and the hold time is the maximum number of seconds allowed to elapse between
successive keepalive messages that BGP receives from a peer.
BGP will use the smaller of either the local hold time value or the peer's
hold time value as the hold time for the BGP connection between the two peers.
If set, this value must be between 1 and 120. The default is 20.
Corresponds to the JSON property keepaliveInterval
27798 27799 27800 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27798 def keepalive_interval @keepalive_interval end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27805 27806 27807 27808 27809 27810 27811 |
# File 'generated/google/apis/compute_beta/classes.rb', line 27805 def update!(**args) @advertise_mode = args[:advertise_mode] if args.key?(:advertise_mode) @advertised_groups = args[:advertised_groups] if args.key?(:advertised_groups) @advertised_ip_ranges = args[:advertised_ip_ranges] if args.key?(:advertised_ip_ranges) @asn = args[:asn] if args.key?(:asn) @keepalive_interval = args[:keepalive_interval] if args.key?(:keepalive_interval) end |