Class: Google::Apis::AndroidmanagementV1::KeyIntegrityViolationEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidmanagementV1::KeyIntegrityViolationEvent
- 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
A cryptographic key including user installed, admin installed and system maintained private key is determined to be corrupted due to storage corruption, hardware failure or some OS issue. This is available device-wide on fully managed devices and within the work profile on organization-owned devices with a work profile.
Instance Attribute Summary collapse
-
#application_uid ⇒ Fixnum
UID of the application which owns the key Corresponds to the JSON property
applicationUid. -
#key_alias ⇒ String
Alias of the key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KeyIntegrityViolationEvent
constructor
A new instance of KeyIntegrityViolationEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KeyIntegrityViolationEvent
Returns a new instance of KeyIntegrityViolationEvent.
2506 2507 2508 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2506 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_uid ⇒ Fixnum
UID of the application which owns the key
Corresponds to the JSON property applicationUid
2499 2500 2501 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2499 def application_uid @application_uid end |
#key_alias ⇒ String
Alias of the key.
Corresponds to the JSON property keyAlias
2504 2505 2506 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2504 def key_alias @key_alias end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2511 2512 2513 2514 |
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2511 def update!(**args) @application_uid = args[:application_uid] if args.key?(:application_uid) @key_alias = args[:key_alias] if args.key?(:key_alias) end |