class Google::Apis::AdminDirectoryV1::ChromeOsDevice::LastKnownNetwork

Information for an ip address.

Attributes

ip_address[RW]

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

wan_ip_address[RW]

The WAN IP address. Corresponds to the JSON property `wanIpAddress` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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