Class: Google::Apis::AlertcenterV1beta1::SuspiciousActivitySecurityDetail

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

Detailed information of a single MDM suspicious activity event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SuspiciousActivitySecurityDetail

Returns a new instance of SuspiciousActivitySecurityDetail.



2041
2042
2043
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2041

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#device_idString

Required. The device ID. Corresponds to the JSON property deviceId

Returns:

  • (String)


1999
2000
2001
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1999

def device_id
  @device_id
end

#device_modelString

The model of the device. Corresponds to the JSON property deviceModel

Returns:

  • (String)


2004
2005
2006
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2004

def device_model
  @device_model
end

#device_propertyString

The device property which was changed. Corresponds to the JSON property deviceProperty

Returns:

  • (String)


2009
2010
2011
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2009

def device_property
  @device_property
end

#device_typeString

The type of the device. Corresponds to the JSON property deviceType

Returns:

  • (String)


2014
2015
2016
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2014

def device_type
  @device_type
end

#ios_vendor_idString

Required for iOS, empty for others. Corresponds to the JSON property iosVendorId

Returns:

  • (String)


2019
2020
2021
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2019

def ios_vendor_id
  @ios_vendor_id
end

#new_valueString

The new value of the device property after the change. Corresponds to the JSON property newValue

Returns:

  • (String)


2024
2025
2026
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2024

def new_value
  @new_value
end

#old_valueString

The old value of the device property before the change. Corresponds to the JSON property oldValue

Returns:

  • (String)


2029
2030
2031
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2029

def old_value
  @old_value
end

#resource_idString

The device resource ID. Corresponds to the JSON property resourceId

Returns:

  • (String)


2034
2035
2036
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2034

def resource_id
  @resource_id
end

#serial_numberString

The serial number of the device. Corresponds to the JSON property serialNumber

Returns:

  • (String)


2039
2040
2041
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2039

def serial_number
  @serial_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2046

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