Class: Google::Apis::AlertcenterV1beta1::DeviceCompromised

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 device compromised alert. Derived from audit logs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeviceCompromised

Returns a new instance of DeviceCompromised.



959
960
961
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 959

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)


952
953
954
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 952

def email
  @email
end

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

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



957
958
959
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 957

def events
  @events
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



964
965
966
967
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 964

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