Class: Google::Apis::AndroidmanagementV1::ConnectEvent

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

Overview

A TCP connect event was initiated through the standard network stack.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConnectEvent

Returns a new instance of ConnectEvent.



1278
1279
1280
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1278

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

Instance Attribute Details

#destination_ip_addressString

The destination IP address of the connect call. Corresponds to the JSON property destinationIpAddress

Returns:

  • (String)


1266
1267
1268
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1266

def destination_ip_address
  @destination_ip_address
end

#destination_portFixnum

The destination port of the connect call. Corresponds to the JSON property destinationPort

Returns:

  • (Fixnum)


1271
1272
1273
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1271

def destination_port
  @destination_port
end

#package_nameString

The package name of the UID that performed the connect call. Corresponds to the JSON property packageName

Returns:

  • (String)


1276
1277
1278
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1276

def package_name
  @package_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1283
1284
1285
1286
1287
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1283

def update!(**args)
  @destination_ip_address = args[:destination_ip_address] if args.key?(:destination_ip_address)
  @destination_port = args[:destination_port] if args.key?(:destination_port)
  @package_name = args[:package_name] if args.key?(:package_name)
end