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.



1937
1938
1939
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1937

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

Instance Attribute Details

#device_idString

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

Returns:

  • (String)


1895
1896
1897
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1895

def device_id
  @device_id
end

#device_modelString

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

Returns:

  • (String)


1900
1901
1902
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1900

def device_model
  @device_model
end

#device_propertyString

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

Returns:

  • (String)


1905
1906
1907
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1905

def device_property
  @device_property
end

#device_typeString

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

Returns:

  • (String)


1910
1911
1912
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1910

def device_type
  @device_type
end

#ios_vendor_idString

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

Returns:

  • (String)


1915
1916
1917
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1915

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)


1920
1921
1922
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1920

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)


1925
1926
1927
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1925

def old_value
  @old_value
end

#resource_idString

The device resource ID. Corresponds to the JSON property resourceId

Returns:

  • (String)


1930
1931
1932
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1930

def resource_id
  @resource_id
end

#serial_numberString

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

Returns:

  • (String)


1935
1936
1937
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1935

def serial_number
  @serial_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1942

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