Class: Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail
- 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
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.
Constructor Details
#initialize(**args) ⇒ SuspiciousActivitySecurityDetail
Returns a new instance of SuspiciousActivitySecurityDetail.
2189 2190 2191 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ String
Required. The device ID.
Corresponds to the JSON property deviceId
2147 2148 2149 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2147 def device_id @device_id end |
#device_model ⇒ String
The model of the device.
Corresponds to the JSON property deviceModel
2152 2153 2154 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2152 def device_model @device_model end |
#device_property ⇒ String
The device property which was changed.
Corresponds to the JSON property deviceProperty
2157 2158 2159 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2157 def device_property @device_property end |
#device_type ⇒ String
The type of the device.
Corresponds to the JSON property deviceType
2162 2163 2164 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2162 def device_type @device_type end |
#ios_vendor_id ⇒ String
Required for iOS, empty for others.
Corresponds to the JSON property iosVendorId
2167 2168 2169 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2167 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
2172 2173 2174 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2172 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
2177 2178 2179 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2177 def old_value @old_value end |
#resource_id ⇒ String
The device resource ID.
Corresponds to the JSON property resourceId
2182 2183 2184 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2182 def resource_id @resource_id end |
#serial_number ⇒ String
The serial number of the device.
Corresponds to the JSON property serialNumber
2187 2188 2189 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2187 def serial_number @serial_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2194 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 |