class Google::Apis::ComputeV1::InterconnectDiagnosticsArpEntry

Describing the ARP neighbor entries seen on this link

Attributes

ip_address[RW]

The IP address of this ARP neighbor. Corresponds to the JSON property `ipAddress` @return [String]

mac_address[RW]

The MAC address of this ARP neighbor. Corresponds to the JSON property `macAddress` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 17022
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 17027
def update!(**args)
  @ip_address = args[:ip_address] if args.key?(:ip_address)
  @mac_address = args[:mac_address] if args.key?(:mac_address)
end