Class: Google::Apis::AlertcenterV1beta1::DeviceCompromised
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::DeviceCompromised
- 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
-
#email ⇒ String
The email of the user this alert was created for.
-
#events ⇒ Array<Google::Apis::AlertcenterV1beta1::DeviceCompromisedSecurityDetail>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeviceCompromised
constructor
A new instance of DeviceCompromised.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeviceCompromised
Returns a new instance of DeviceCompromised.
927 928 929 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 927 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
920 921 922 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 920 def email @email end |
#events ⇒ Array<Google::Apis::AlertcenterV1beta1::DeviceCompromisedSecurityDetail>
Required. The list of security events.
Corresponds to the JSON property events
925 926 927 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 925 def events @events end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
932 933 934 935 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 932 def update!(**args) @email = args[:email] if args.key?(:email) @events = args[:events] if args.key?(:events) end |