class Google::Apis::CloudkmsV1::PublicKey

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

Attributes

algorithm[RW]

The Algorithm associated with this key. Corresponds to the JSON property `algorithm` @return [String]

name[RW]

The name of the CryptoKeyVersion public key. Provided here for verification. NOTE: This field is in Beta. Corresponds to the JSON property `name` @return [String]

pem[RW]

The public key, encoded in PEM format. For more information, see the [RFC 7468] (tools.ietf.org/html/rfc7468) sections for [General Considerations]( tools.ietf.org/html/rfc7468#section-2) and [Textual Encoding of Subject Public Key Info] (tools.ietf.org/html/rfc7468#section-13). Corresponds to the JSON property `pem` @return [String]

pem_crc32c[RW]

Integrity verification field. A CRC32C checksum of the returned PublicKey.pem. An integrity check of PublicKey.pem can be performed by computing the CRC32C checksum of PublicKey.pem and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non- negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type. NOTE: This field is in Beta. Corresponds to the JSON property `pemCrc32c` @return [Fixnum]

protection_level[RW]

The ProtectionLevel of the CryptoKeyVersion public key. Corresponds to the JSON property `protectionLevel` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudkms_v1/classes.rb, line 1875
def update!(**args)
  @algorithm = args[:algorithm] if args.key?(:algorithm)
  @name = args[:name] if args.key?(:name)
  @pem = args[:pem] if args.key?(:pem)
  @pem_crc32c = args[:pem_crc32c] if args.key?(:pem_crc32c)
  @protection_level = args[:protection_level] if args.key?(:protection_level)
end