Class: Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb
Overview
Detailed information of a single MDM suspicious activity event.
Instance Attribute Summary collapse
-
#device_id ⇒ String
Required.
-
#device_model ⇒ String
The model of the device.
-
#device_property ⇒ String
The device property which was changed.
-
#device_type ⇒ String
The type of the device.
-
#ios_vendor_id ⇒ String
Required for iOS, empty for others.
-
#new_value ⇒ String
The new value of the device property after the change.
-
#old_value ⇒ String
The old value of the device property before the change.
-
#resource_id ⇒ String
The device resource ID.
-
#serial_number ⇒ String
The serial number of the device.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SuspiciousActivitySecurityDetail
constructor
A new instance of SuspiciousActivitySecurityDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SuspiciousActivitySecurityDetail
Returns a new instance of SuspiciousActivitySecurityDetail.
1478 1479 1480 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1478 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ String
Required. The device ID.
Corresponds to the JSON property deviceId
1436 1437 1438 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1436 def device_id @device_id end |
#device_model ⇒ String
The model of the device.
Corresponds to the JSON property deviceModel
1441 1442 1443 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1441 def device_model @device_model end |
#device_property ⇒ String
The device property which was changed.
Corresponds to the JSON property deviceProperty
1446 1447 1448 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1446 def device_property @device_property end |
#device_type ⇒ String
The type of the device.
Corresponds to the JSON property deviceType
1451 1452 1453 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1451 def device_type @device_type end |
#ios_vendor_id ⇒ String
Required for iOS, empty for others.
Corresponds to the JSON property iosVendorId
1456 1457 1458 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1456 def ios_vendor_id @ios_vendor_id end |
#new_value ⇒ String
The new value of the device property after the change.
Corresponds to the JSON property newValue
1461 1462 1463 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1461 def new_value @new_value end |
#old_value ⇒ String
The old value of the device property before the change.
Corresponds to the JSON property oldValue
1466 1467 1468 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1466 def old_value @old_value end |
#resource_id ⇒ String
The device resource ID.
Corresponds to the JSON property resourceId
1471 1472 1473 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1471 def resource_id @resource_id end |
#serial_number ⇒ String
The serial number of the device.
Corresponds to the JSON property serialNumber
1476 1477 1478 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1476 def serial_number @serial_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 1483 def update!(**args) @device_id = args[:device_id] if args.key?(:device_id) @device_model = args[:device_model] if args.key?(:device_model) @device_property = args[:device_property] if args.key?(:device_property) @device_type = args[:device_type] if args.key?(:device_type) @ios_vendor_id = args[:ios_vendor_id] if args.key?(:ios_vendor_id) @new_value = args[:new_value] if args.key?(:new_value) @old_value = args[:old_value] if args.key?(:old_value) @resource_id = args[:resource_id] if args.key?(:resource_id) @serial_number = args[:serial_number] if args.key?(:serial_number) end |