class Google::Apis::PrivatecaV1::KeyId

A KeyId identifies a specific public key, usually by hashing the public key.

Attributes

key_id[RW]

Optional. The value of this KeyId encoded in lowercase hexadecimal. This is most likely the 160 bit SHA-1 hash of the public key. Corresponds to the JSON property `keyId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/privateca_v1/classes.rb, line 1340
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/privateca_v1/classes.rb, line 1345
def update!(**args)
  @key_id = args[:key_id] if args.key?(:key_id)
end