Class: Google::Apis::AndroidmanagementV1::CryptoSelfTestCompletedEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::CryptoSelfTestCompletedEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb
Overview
Validates whether Android’s built-in cryptographic library (BoringSSL) is valid. Should always succeed on device boot, if it fails, the device should be considered untrusted.
Instance Attribute Summary collapse
-
#success ⇒ Boolean
(also: #success?)
Whether the test succeeded.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CryptoSelfTestCompletedEvent
constructor
A new instance of CryptoSelfTestCompletedEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CryptoSelfTestCompletedEvent
Returns a new instance of CryptoSelfTestCompletedEvent.
1461 1462 1463 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1461 def initialize(**args) update!(**args) end |
Instance Attribute Details
#success ⇒ Boolean Also known as: success?
Whether the test succeeded.
Corresponds to the JSON property success
1458 1459 1460 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1458 def success @success end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1466 1467 1468 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 1466 def update!(**args) @success = args[:success] if args.key?(:success) end |