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
Device property which is changed.
-
#device_type ⇒ String
The type of the device.
-
#ios_vendor_id ⇒ String
Required for IOS, empty for others.
-
#new_value ⇒ String
New value of the device property after change.
-
#old_value ⇒ String
Old value of the device property before 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
823 824 825 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 823 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ String
Required. Device Info.
Corresponds to the JSON property deviceId
781 782 783 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 781 def device_id @device_id end |
#device_model ⇒ String
The model of the device.
Corresponds to the JSON property deviceModel
786 787 788 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 786 def device_model @device_model end |
#device_property ⇒ String
Device property which is changed.
Corresponds to the JSON property deviceProperty
791 792 793 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 791 def device_property @device_property end |
#device_type ⇒ String
The type of the device.
Corresponds to the JSON property deviceType
796 797 798 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 796 def device_type @device_type end |
#ios_vendor_id ⇒ String
Required for IOS, empty for others.
Corresponds to the JSON property iosVendorId
801 802 803 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 801 def ios_vendor_id @ios_vendor_id end |
#new_value ⇒ String
New value of the device property after change.
Corresponds to the JSON property newValue
806 807 808 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 806 def new_value @new_value end |
#old_value ⇒ String
Old value of the device property before change.
Corresponds to the JSON property oldValue
811 812 813 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 811 def old_value @old_value end |
#resource_id ⇒ String
The device resource id.
Corresponds to the JSON property resourceId
816 817 818 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 816 def resource_id @resource_id end |
#serial_number ⇒ String
The serial number of the device.
Corresponds to the JSON property serialNumber
821 822 823 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 821 def serial_number @serial_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
828 829 830 831 832 833 834 835 836 837 838 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 828 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 |