Class: Google::Apis::AndroidmanagementV1::CertAuthorityInstalledEvent

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 new root certificate was installed into the system's trusted credential storage. 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) ⇒ CertAuthorityInstalledEvent

Returns a new instance of CertAuthorityInstalledEvent.



921
922
923
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 921

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

Instance Attribute Details

#certificateString

Subject of the certificate. Corresponds to the JSON property certificate

Returns:

  • (String)


907
908
909
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 907

def certificate
  @certificate
end

#successBoolean Also known as: success?

Whether the installation event succeeded. Corresponds to the JSON property success

Returns:

  • (Boolean)


912
913
914
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 912

def success
  @success
end

#user_idFixnum

The user in which the certificate install event happened. Only available for devices running Android 11 and above. Corresponds to the JSON property userId

Returns:

  • (Fixnum)


919
920
921
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 919

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



926
927
928
929
930
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 926

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