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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SuspiciousActivitySecurityDetail

Returns a new instance of SuspiciousActivitySecurityDetail



811
812
813
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 811

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

Instance Attribute Details

#device_idString

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

Returns:

  • (String)


769
770
771
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 769

def device_id
  @device_id
end

#device_modelString

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

Returns:

  • (String)


774
775
776
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 774

def device_model
  @device_model
end

#device_propertyString

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

Returns:

  • (String)


779
780
781
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 779

def device_property
  @device_property
end

#device_typeString

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

Returns:

  • (String)


784
785
786
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 784

def device_type
  @device_type
end

#ios_vendor_idString

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

Returns:

  • (String)


789
790
791
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 789

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)


794
795
796
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 794

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)


799
800
801
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 799

def old_value
  @old_value
end

#resource_idString

The device resource ID. Corresponds to the JSON property resourceId

Returns:

  • (String)


804
805
806
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 804

def resource_id
  @resource_id
end

#serial_numberString

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

Returns:

  • (String)


809
810
811
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 809

def serial_number
  @serial_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



816
817
818
819
820
821
822
823
824
825
826
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 816

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