Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::LastKnownNetwork

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb

Overview

Information for an ip address.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LastKnownNetwork

Returns a new instance of LastKnownNetwork.



1609
1610
1611
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1609

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ip_addressString

The IP address. Corresponds to the JSON property ipAddress

Returns:

  • (String)


1602
1603
1604
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1602

def ip_address
  @ip_address
end

#wan_ip_addressString

The WAN IP address. Corresponds to the JSON property wanIpAddress

Returns:

  • (String)


1607
1608
1609
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1607

def wan_ip_address
  @wan_ip_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1614
1615
1616
1617
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1614

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