Class: Google::Apis::AlertcenterV1beta1::DeviceCompromisedSecurityDetail
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::DeviceCompromisedSecurityDetail
- 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
-
#device_compromised_state ⇒ String
The device compromised state.
-
#device_id ⇒ String
Required.
-
#device_model ⇒ String
The model of the device.
-
#device_type ⇒ String
The type of the device.
-
#ios_vendor_id ⇒ String
Required for iOS, empty for others.
-
#resource_id ⇒ String
The device resource ID.
-
#serial_number ⇒ String
The serial number of the device.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeviceCompromisedSecurityDetail
constructor
A new instance of DeviceCompromisedSecurityDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeviceCompromisedSecurityDetail
Returns a new instance of DeviceCompromisedSecurityDetail.
978 979 980 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 978 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_compromised_state ⇒ String
The device compromised state. Possible values are "Compromised
" or "Not
Compromised
".
Corresponds to the JSON property deviceCompromisedState
946 947 948 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 946 def device_compromised_state @device_compromised_state end |
#device_id ⇒ String
Required. The device ID.
Corresponds to the JSON property deviceId
951 952 953 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 951 def device_id @device_id end |
#device_model ⇒ String
The model of the device.
Corresponds to the JSON property deviceModel
956 957 958 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 956 def device_model @device_model end |
#device_type ⇒ String
The type of the device.
Corresponds to the JSON property deviceType
961 962 963 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 961 def device_type @device_type end |
#ios_vendor_id ⇒ String
Required for iOS, empty for others.
Corresponds to the JSON property iosVendorId
966 967 968 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 966 def ios_vendor_id @ios_vendor_id end |
#resource_id ⇒ String
The device resource ID.
Corresponds to the JSON property resourceId
971 972 973 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 971 def resource_id @resource_id end |
#serial_number ⇒ String
The serial number of the device.
Corresponds to the JSON property serialNumber
976 977 978 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 976 def serial_number @serial_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
983 984 985 986 987 988 989 990 991 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 983 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 |