Class: Google::Apis::CloudkmsV1::PublicKey

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

Overview

The public key for a given CryptoKeyVersion. Obtained via GetPublicKey.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PublicKey

Returns a new instance of PublicKey.



1380
1381
1382
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 1380

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

Instance Attribute Details

#algorithmString

The Algorithm associated with this key. Corresponds to the JSON property algorithm

Returns:

  • (String)


1369
1370
1371
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 1369

def algorithm
  @algorithm
end

#pemString

The public key, encoded in PEM format. For more information, see the RFC 7468 sections for General Considerations and Textual Encoding of Subject Public Key Info. Corresponds to the JSON property pem

Returns:

  • (String)


1378
1379
1380
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 1378

def pem
  @pem
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1385
1386
1387
1388
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 1385

def update!(**args)
  @algorithm = args[:algorithm] if args.key?(:algorithm)
  @pem = args[:pem] if args.key?(:pem)
end