google-cloud-kms-inventory-v1 0.21.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7d340468d9d81eff73839b072c6e72b7a06caf2622001646897ab2754786fd4
4
- data.tar.gz: 0727a382cef447f97527cb4b8453347dd05f42f919c7ae95cd3744ee51ea4734
3
+ metadata.gz: 9469a612af2e000cf70f1db61958b6064dd0bb35057d87bf4bf6a587d430c7d9
4
+ data.tar.gz: da1dbfbd9525717aaecb82226bb0645141bb58d695d940d532d2e0c5b288e65a
5
5
  SHA512:
6
- metadata.gz: 169801a1e8ee84cb6376c3095d3fd44447c1ffd790cf2c77bf37d95f80dbd04e09db24179aa318927ab622e02fac2af0780bb98d8115f4d876d07bb4718c39c3
7
- data.tar.gz: d1ab0e469c344126c4dc9ac32539ff0075006c7dc46496b493f5f7f688e2fd00c7b71b5c152be4228fe0349c8d4db158b330af115abe19106d2fb1c35b4d6cc3
6
+ metadata.gz: 9b4d8eb6f1e365d63774606a08252a3a7aeed04881159ca6edc2f12f1c95841f9aee9e2a8d3eb5a5e39aa78d4b9ed4b558e9b9d9b92bcd9444b79a6356746140
7
+ data.tar.gz: 7c4ecc96b137ad7f7dd98771b813474f2571f9735801190cce3d23807d38890ebdabb49b24af38a39ec90df497f53a9b1834b8b2d1916cedf9591a51419fba97
@@ -22,7 +22,7 @@ module Google
22
22
  module Kms
23
23
  module Inventory
24
24
  module V1
25
- VERSION = "0.21.0"
25
+ VERSION = "0.22.0"
26
26
  end
27
27
  end
28
28
  end
@@ -895,6 +895,13 @@ module Google
895
895
  # Output only. The public key with which to wrap key material prior to
896
896
  # import. Only returned if {::Google::Cloud::Kms::V1::ImportJob#state state} is
897
897
  # {::Google::Cloud::Kms::V1::ImportJob::ImportJobState::ACTIVE ACTIVE}.
898
+ # @!attribute [r] public_key_format
899
+ # @return [::Google::Cloud::Kms::V1::PublicKey::PublicKeyFormat]
900
+ # Output only. Specifies the
901
+ # {::Google::Cloud::Kms::V1::ImportJob::WrappingPublicKey WrappingPublicKey} format
902
+ # provided by the customer in the
903
+ # [KeyManagementService.GetImportJob][google.cloud.kms.v1.KeyManagementService.GetImportJob]
904
+ # request.
898
905
  # @!attribute [r] attestation
899
906
  # @return [::Google::Cloud::Kms::V1::KeyOperationAttestation]
900
907
  # Output only. Statement that was generated and signed by the key creator
@@ -926,6 +933,19 @@ module Google
926
933
  # Considerations](https://tools.ietf.org/html/rfc7468#section-2) and
927
934
  # [Textual Encoding of Subject Public Key Info]
928
935
  # (https://tools.ietf.org/html/rfc7468#section-13).
936
+ # This field gets populated by default for RSA-based import methods, if no
937
+ # public_key_format is specified in the request.
938
+ # If you want to retrieve the wrapping key of an
939
+ # {::Google::Cloud::Kms::V1::ImportJob ImportJob} in some other format, use
940
+ # [KeyManagementService.GetImportJob][google.cloud.kms.v1.KeyManagementService.GetImportJob]
941
+ # and set the public_key_format to the desired public key format.
942
+ # @!attribute [r] data
943
+ # @return [::String]
944
+ # Output only. Contains the public key, formatted according to the
945
+ # {::Google::Cloud::Kms::V1::PublicKey::PublicKeyFormat PublicKey.PublicKeyFormat}
946
+ # specified in the
947
+ # [KeyManagementService.GetImportJob][google.cloud.kms.v1.KeyManagementService.GetImportJob]
948
+ # request.
929
949
  class WrappingPublicKey
930
950
  include ::Google::Protobuf::MessageExts
931
951
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -981,6 +1001,33 @@ module Google
981
1001
  # to technical limitations of RSA wrapping, this method cannot be used to
982
1002
  # wrap RSA keys for import.
983
1003
  RSA_OAEP_4096_SHA256 = 6
1004
+
1005
+ # Represents the Hybrid Public Key Encryption (HPKE) Scheme originally
1006
+ # defined in [RFC 9180](https://www.rfc-editor.org/rfc/rfc9180). It
1007
+ # involves wrapping the raw key with an ephemeral AES key, derived with
1008
+ # HKDF-SHA256 from an encryption context, that is, in turn obtained from
1009
+ # the receiver’s public key with the help of the ML-KEM-768 KEM. For more
1010
+ # details, see the [ML-KEM HPKE
1011
+ # standard](http://datatracker.ietf.org/doc/draft-ietf-hpke-pq/01/).
1012
+ HPKE_KEM_ML_KEM_768_HKDF_SHA256_AES_256_GCM = 8
1013
+
1014
+ # Represents the Hybrid Public Key Encryption (HPKE) Scheme originally
1015
+ # defined in [RFC 9180](https://www.rfc-editor.org/rfc/rfc9180). It
1016
+ # involves wrapping the raw key with an ephemeral AES key, derived with
1017
+ # HKDF-SHA256 from an encryption context, that is, in turn obtained from
1018
+ # the receiver’s public key with the help of the ML-KEM-1024 KEM. For more
1019
+ # details, see the [ML-KEM HPKE
1020
+ # standard](http://datatracker.ietf.org/doc/draft-ietf-hpke-pq/01/).
1021
+ HPKE_KEM_ML_KEM_1024_HKDF_SHA256_AES_256_GCM = 9
1022
+
1023
+ # Represents the Hybrid Public Key Encryption (HPKE) Scheme originally
1024
+ # defined in [RFC 9180](https://www.rfc-editor.org/rfc/rfc9180). It
1025
+ # involves wrapping the raw key with an ephemeral AES key, derived with
1026
+ # HKDF-SHA256 from an encryption context, that is, in turn obtained from
1027
+ # the receiver’s public key with the help of the X-Wing hybrid KEM. For
1028
+ # more details, see the [X-Wing
1029
+ # standard](http://datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/09/).
1030
+ HPKE_KEM_XWING_HKDF_SHA256_AES_256_GCM = 10
984
1031
  end
985
1032
 
986
1033
  # The state of the {::Google::Cloud::Kms::V1::ImportJob ImportJob}, indicating if
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-kms-inventory-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC