Class: Google::Apis::AlertcenterV1beta1::DeviceCompromisedSecurityDetail

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 device compromised event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeviceCompromisedSecurityDetail

Returns a new instance of DeviceCompromisedSecurityDetail.



1010
1011
1012
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1010

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

Instance Attribute Details

#device_compromised_stateString

The device compromised state. Possible values are "Compromised" or "Not Compromised". Corresponds to the JSON property deviceCompromisedState

Returns:

  • (String)


978
979
980
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 978

def device_compromised_state
  @device_compromised_state
end

#device_idString

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

Returns:

  • (String)


983
984
985
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 983

def device_id
  @device_id
end

#device_modelString

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

Returns:

  • (String)


988
989
990
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 988

def device_model
  @device_model
end

#device_typeString

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

Returns:

  • (String)


993
994
995
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 993

def device_type
  @device_type
end

#ios_vendor_idString

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

Returns:

  • (String)


998
999
1000
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 998

def ios_vendor_id
  @ios_vendor_id
end

#resource_idString

The device resource ID. Corresponds to the JSON property resourceId

Returns:

  • (String)


1003
1004
1005
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1003

def resource_id
  @resource_id
end

#serial_numberString

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

Returns:

  • (String)


1008
1009
1010
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1008

def serial_number
  @serial_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1015
1016
1017
1018
1019
1020
1021
1022
1023
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1015

def update!(**args)
  @device_compromised_state = args[:device_compromised_state] if args.key?(:device_compromised_state)
  @device_id = args[:device_id] if args.key?(:device_id)
  @device_model = args[:device_model] if args.key?(:device_model)
  @device_type = args[:device_type] if args.key?(:device_type)
  @ios_vendor_id = args[:ios_vendor_id] if args.key?(:ios_vendor_id)
  @resource_id = args[:resource_id] if args.key?(:resource_id)
  @serial_number = args[:serial_number] if args.key?(:serial_number)
end