class Google::Apis::ComputeV1::BfdPacket
Attributes
The Authentication Present bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `authenticationPresent` @return [Boolean]
The Authentication Present bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `authenticationPresent` @return [Boolean]
The Control Plane Independent bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `controlPlaneIndependent` @return [Boolean]
The Control Plane Independent bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `controlPlaneIndependent` @return [Boolean]
The demand bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `demand` @return [Boolean]
The demand bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `demand` @return [Boolean]
The diagnostic code specifies the local system's reason for the last change in session state. This allows remote systems to determine the reason that the previous session failed, for example. These diagnostic codes are specified in section 4.1 of RFC5880 Corresponds to the JSON property `diagnostic` @return [String]
The Final bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `final` @return [Boolean]
The Final bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `final` @return [Boolean]
The length of the BFD Control packet in bytes. This is specified in section 4. 1 of RFC5880 Corresponds to the JSON property `length` @return [Fixnum]
The Required Min Echo RX Interval value in the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `minEchoRxIntervalMs` @return [Fixnum]
The Required Min RX Interval value in the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `minRxIntervalMs` @return [Fixnum]
The Desired Min TX Interval value in the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `minTxIntervalMs` @return [Fixnum]
The detection time multiplier of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `multiplier` @return [Fixnum]
The multipoint bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `multipoint` @return [Boolean]
The multipoint bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `multipoint` @return [Boolean]
The My Discriminator value in the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `myDiscriminator` @return [Fixnum]
The Poll bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `poll` @return [Boolean]
The Poll bit of the BFD packet. This is specified in section 4.1 of RFC5880 Corresponds to the JSON property `poll` @return [Boolean]
The current BFD session state as seen by the transmitting system. These states are specified in section 4.1 of RFC5880 Corresponds to the JSON property `state` @return [String]
The version number of the BFD protocol, as specified in section 4.1 of RFC5880. Corresponds to the JSON property `version` @return [Fixnum]
The Your Discriminator value in the BFD packet. This is specified in section 4. 1 of RFC5880 Corresponds to the JSON property `yourDiscriminator` @return [Fixnum]
Public Class Methods
# File lib/google/apis/compute_v1/classes.rb, line 4390 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 4395 def update!(**args) @authentication_present = args[:authentication_present] if args.key?(:authentication_present) @control_plane_independent = args[:control_plane_independent] if args.key?(:control_plane_independent) @demand = args[:demand] if args.key?(:demand) @diagnostic = args[:diagnostic] if args.key?(:diagnostic) @final = args[:final] if args.key?(:final) @length = args[:length] if args.key?(:length) @min_echo_rx_interval_ms = args[:min_echo_rx_interval_ms] if args.key?(:min_echo_rx_interval_ms) @min_rx_interval_ms = args[:min_rx_interval_ms] if args.key?(:min_rx_interval_ms) @min_tx_interval_ms = args[:min_tx_interval_ms] if args.key?(:min_tx_interval_ms) @multiplier = args[:multiplier] if args.key?(:multiplier) @multipoint = args[:multipoint] if args.key?(:multipoint) @my_discriminator = args[:my_discriminator] if args.key?(:my_discriminator) @poll = args[:poll] if args.key?(:poll) @state = args[:state] if args.key?(:state) @version = args[:version] if args.key?(:version) @your_discriminator = args[:your_discriminator] if args.key?(:your_discriminator) end