Class: Google::Apis::OsloginV1beta::SshPublicKey

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

Overview

The SSH public key information associated with a Google account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SshPublicKey

Returns a new instance of SshPublicKey.



203
204
205
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 203

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)


184
185
186
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 184

def expiration_time_usec
  @expiration_time_usec
end

#fingerprintString

Output only. The SHA-256 fingerprint of the SSH public key. Corresponds to the JSON property fingerprint

Returns:

  • (String)


189
190
191
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 189

def fingerprint
  @fingerprint
end

#keyString

Public key text in SSH format, defined by RFC4253 section 6.6. Corresponds to the JSON property key

Returns:

  • (String)


196
197
198
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 196

def key
  @key
end

#nameString

Output only. The canonical resource name. Corresponds to the JSON property name

Returns:

  • (String)


201
202
203
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 201

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



208
209
210
211
212
213
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 208

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)
  @name = args[:name] if args.key?(:name)
end