Class: Google::Apis::AndroidmanagementV1::CertAuthorityRemovedEvent

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 root certificate was removed from 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) ⇒ CertAuthorityRemovedEvent

Returns a new instance of CertAuthorityRemovedEvent.



956
957
958
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 956

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

Instance Attribute Details

#certificateString

Subject of the certificate. Corresponds to the JSON property certificate

Returns:

  • (String)


942
943
944
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 942

def certificate
  @certificate
end

#successBoolean Also known as: success?

Whether the removal succeeded. Corresponds to the JSON property success

Returns:

  • (Boolean)


947
948
949
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 947

def success
  @success
end

#user_idFixnum

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

Returns:

  • (Fixnum)


954
955
956
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 954

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



961
962
963
964
965
# File 'lib/google/apis/androidmanagement_v1/classes.rb', line 961

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