Class: Google::Apis::AlertcenterV1beta1::SuspiciousActivity

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

Overview

A mobile suspicious activity alert. Derived from audit logs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SuspiciousActivity

Returns a new instance of SuspiciousActivity.



2062
2063
2064
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2062

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

Instance Attribute Details

#emailString

The email of the user this alert was created for. Corresponds to the JSON property email

Returns:

  • (String)


2055
2056
2057
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2055

def email
  @email
end

#eventsArray<Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail>

Required. The list of security events. Corresponds to the JSON property events



2060
2061
2062
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2060

def events
  @events
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2067
2068
2069
2070
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2067

def update!(**args)
  @email = args[:email] if args.key?(:email)
  @events = args[:events] if args.key?(:events)
end