Class: Google::Apis::AlertcenterV1beta1::SuspiciousActivity
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::SuspiciousActivity
- 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
-
#email ⇒ String
The email of the user this alert was created for.
-
#events ⇒ Array<Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SuspiciousActivity
constructor
A new instance of SuspiciousActivity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SuspiciousActivity
Returns a new instance of SuspiciousActivity.
2160 2161 2162 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The email of the user this alert was created for.
Corresponds to the JSON property email
2153 2154 2155 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2153 def email @email end |
#events ⇒ Array<Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail>
Required. The list of security events.
Corresponds to the JSON property events
2158 2159 2160 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2158 def events @events end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2165 2166 2167 2168 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2165 def update!(**args) @email = args[:email] if args.key?(:email) @events = args[:events] if args.key?(:events) end |