Class: Google::Apis::AndroidmanagementV1::KeyGeneratedEvent

Inherits:
Object
  • Object
show all
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 installed on the device either by the user or management.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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ KeyGeneratedEvent

Returns a new instance of KeyGeneratedEvent.



2440
2441
2442
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2440

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

Instance Attribute Details

#application_uidFixnum

UID of the application which generated the key. Corresponds to the JSON property applicationUid

Returns:

  • (Fixnum)


2427
2428
2429
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2427

def application_uid
  @application_uid
end

#key_aliasString

Alias of the key. Corresponds to the JSON property keyAlias

Returns:

  • (String)


2432
2433
2434
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2432

def key_alias
  @key_alias
end

#successBoolean Also known as: success?

Whether the operation was successful. Corresponds to the JSON property success

Returns:

  • (Boolean)


2437
2438
2439
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2437

def success
  @success
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2445
2446
2447
2448
2449
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 2445

def update!(**args)
  @application_uid = args[:application_uid] if args.key?(:application_uid)
  @key_alias = args[:key_alias] if args.key?(:key_alias)
  @success = args[:success] if args.key?(:success)
end