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

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PublicKey

Returns a new instance of PublicKey.



2380
2381
2382
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2380

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

Instance Attribute Details

#algorithmString

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

Returns:

  • (String)


2345
2346
2347
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2345

def algorithm
  @algorithm
end

#nameString

The name of the CryptoKeyVersion public key. Provided here for verification. NOTE: This field is in Beta. Corresponds to the JSON property name

Returns:

  • (String)


2351
2352
2353
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2351

def name
  @name
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)


2359
2360
2361
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2359

def pem
  @pem
end

#pem_crc32cFixnum

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

Returns:

  • (Fixnum)


2373
2374
2375
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2373

def pem_crc32c
  @pem_crc32c
end

#protection_levelString

The ProtectionLevel of the CryptoKeyVersion public key. Corresponds to the JSON property protectionLevel

Returns:

  • (String)


2378
2379
2380
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2378

def protection_level
  @protection_level
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2385
2386
2387
2388
2389
2390
2391
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2385

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