Class: Google::Apis::ComputeBeta::RouterBgpPeerBfd
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::RouterBgpPeerBfd
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#min_receive_interval ⇒ Fixnum
The minimum interval, in milliseconds, between BFD control packets received from the peer router.
-
#min_transmit_interval ⇒ Fixnum
The minimum interval, in milliseconds, between BFD control packets transmitted to the peer router.
-
#multiplier ⇒ Fixnum
The number of consecutive BFD packets that must be missed before BFD declares that a peer is unavailable.
-
#session_initialization_mode ⇒ String
The BFD session initialization mode for this BGP peer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouterBgpPeerBfd
constructor
A new instance of RouterBgpPeerBfd.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouterBgpPeerBfd
Returns a new instance of RouterBgpPeerBfd.
29822 29823 29824 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29822 def initialize(**args) update!(**args) end |
Instance Attribute Details
#min_receive_interval ⇒ Fixnum
The minimum interval, in milliseconds, between BFD control packets received
from the peer router. The actual value is negotiated between the two routers
and is equal to the greater of this value and the transmit interval of the
other router.
Not currently available publicly.
If set, this value must be between 100 and 30000.
The default is 300.
Corresponds to the JSON property minReceiveInterval
29790 29791 29792 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29790 def min_receive_interval @min_receive_interval end |
#min_transmit_interval ⇒ Fixnum
The minimum interval, in milliseconds, between BFD control packets transmitted
to the peer router. The actual value is negotiated between the two routers and
is equal to the greater of this value and the corresponding receive interval
of the other router.
Not currently available publicly.
If set, this value must be between 100 and 30000.
The default is 300.
Corresponds to the JSON property minTransmitInterval
29801 29802 29803 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29801 def min_transmit_interval @min_transmit_interval end |
#multiplier ⇒ Fixnum
The number of consecutive BFD packets that must be missed before BFD declares
that a peer is unavailable.
Not currently available publicly.
If set, the value must be a value between 2 and 16.
The default is 3.
Corresponds to the JSON property multiplier
29810 29811 29812 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29810 def multiplier @multiplier end |
#session_initialization_mode ⇒ String
The BFD session initialization mode for this BGP peer.
Not currently available publicly.
If set to ACTIVE, the Cloud Router will initiate the BFD session for this BGP
peer. If set to PASSIVE, the Cloud Router will wait for the peer router to
initiate the BFD session for this BGP peer. If set to DISABLED, BFD is
disabled for this BGP peer. The default is PASSIVE.
Corresponds to the JSON property sessionInitializationMode
29820 29821 29822 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29820 def session_initialization_mode @session_initialization_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29827 29828 29829 29830 29831 29832 |
# File 'lib/google/apis/compute_beta/classes.rb', line 29827 def update!(**args) @min_receive_interval = args[:min_receive_interval] if args.key?(:min_receive_interval) @min_transmit_interval = args[:min_transmit_interval] if args.key?(:min_transmit_interval) @multiplier = args[:multiplier] if args.key?(:multiplier) @session_initialization_mode = args[:session_initialization_mode] if args.key?(:session_initialization_mode) end |