class Google::Apis::AdminDirectoryV1::UserSshPublicKey
JSON template for a POSIX account entry.
Attributes
expiration_time_usec[RW]
An expiration time in microseconds since epoch. Corresponds to the JSON property `expirationTimeUsec` @return [Fixnum]
fingerprint[RW]
A SHA-256 fingerprint of the SSH public key. (Read-only) Corresponds to the JSON property `fingerprint` @return [String]
key[RW]
An SSH public key. Corresponds to the JSON property `key` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 4745 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admin_directory_v1/classes.rb, line 4750 def update!(**args) @expiration_time_usec = args[:expiration_time_usec] if args.key?(:expiration_time_usec) @fingerprint = args[:fingerprint] if args.key?(:fingerprint) @key = args[:key] if args.key?(:key) end