Class: Google::Apis::AdminDirectoryV1::UserSshPublicKey

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb

Overview

JSON template for a POSIX account entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserSshPublicKey

Returns a new instance of UserSshPublicKey.



5627
5628
5629
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5627

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

Instance Attribute Details

#expiration_time_usecFixnum

An expiration time in microseconds since epoch. Corresponds to the JSON property expirationTimeUsec

Returns:

  • (Fixnum)


5615
5616
5617
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5615

def expiration_time_usec
  @expiration_time_usec
end

#fingerprintString

A SHA-256 fingerprint of the SSH public key. (Read-only) Corresponds to the JSON property fingerprint

Returns:

  • (String)


5620
5621
5622
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5620

def fingerprint
  @fingerprint
end

#keyString

An SSH public key. Corresponds to the JSON property key

Returns:

  • (String)


5625
5626
5627
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5625

def key
  @key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5632
5633
5634
5635
5636
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 5632

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