google-cloud-kms-inventory-v1 0.22.0 → 0.23.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a58babb840f453d00c1f034bb2acdf71e0b28f5ecc20fcdf79c08cd7d015f855
|
|
4
|
+
data.tar.gz: 100f2d9b901dd62a0c0ed8701f0c60b7ff429371ab9e8fc272fccd52a47c9ebf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8627408b9e2ac5794bbe2867bba41145e4a6c596d1e5aa9f1c0f4a6d282c069e74bfba72f4f9deb4f35880fb713ab93fccff9cf7d8a82f0202374d7e3f89f12
|
|
7
|
+
data.tar.gz: 9e70da234a6f2d683d0d0db95bcae01cc7b46731779dc2c77f06c8d0368697270ad0cdcb8e5f03d5ac455fcb18b587beb7cde9aff87f1a61140818919ccf48a4
|
|
@@ -213,6 +213,10 @@ module Google
|
|
|
213
213
|
# [GetPublicKey][google.cloud.kms.v1.KeyManagementService.GetPublicKey]
|
|
214
214
|
# and [Decapsulate][google.cloud.kms.v1.KeyManagementService.Decapsulate].
|
|
215
215
|
KEY_ENCAPSULATION = 10
|
|
216
|
+
|
|
217
|
+
# {::Google::Cloud::Kms::V1::CryptoKey CryptoKeys} with this purpose may be used
|
|
218
|
+
# for AES key
|
|
219
|
+
AES_WRAPPING = 11
|
|
216
220
|
end
|
|
217
221
|
end
|
|
218
222
|
|
|
@@ -397,6 +401,24 @@ module Google
|
|
|
397
401
|
# Output only. Whether or not this key version is eligible for reimport, by
|
|
398
402
|
# being specified as a target in
|
|
399
403
|
# [ImportCryptoKeyVersionRequest.crypto_key_version][google.cloud.kms.v1.ImportCryptoKeyVersionRequest.crypto_key_version].
|
|
404
|
+
# @!attribute [rw] trusted_wrapping_enabled
|
|
405
|
+
# @return [::Boolean]
|
|
406
|
+
# Immutable. Field indicating that the key may be wrapped by a trusted key.
|
|
407
|
+
# This field can be set for all key purposes except
|
|
408
|
+
# {::Google::Cloud::Kms::V1::CryptoKey::CryptoKeyPurpose::ENCRYPT_DECRYPT ENCRYPT_DECRYPT},
|
|
409
|
+
# and is only valid for keys with protection level
|
|
410
|
+
# {::Google::Cloud::Kms::V1::ProtectionLevel::HSM_SINGLE_TENANT HSM_SINGLE_TENANT}.
|
|
411
|
+
# This field can only be set at creation or import time via
|
|
412
|
+
# [CreateCryptoKeyVersion][google.cloud.kms.v1.KeyManagementService.CreateCryptoKeyVersion],
|
|
413
|
+
# or
|
|
414
|
+
# [ImportCryptoKeyVersion][google.cloud.kms.v1.KeyManagementService.ImportCryptoKeyVersion].
|
|
415
|
+
# @!attribute [r] hsm_trusted
|
|
416
|
+
# @return [::Boolean]
|
|
417
|
+
# Output only. Field indicating that the key wrapping key is trusted.
|
|
418
|
+
# This field is only valid for key purpose
|
|
419
|
+
# [AES_256_WRAPPING][CryptoKey.CryptoKeyPurpose.AES_256_WRAPPING], and
|
|
420
|
+
# protection level
|
|
421
|
+
# {::Google::Cloud::Kms::V1::ProtectionLevel::HSM_SINGLE_TENANT HSM_SINGLE_TENANT}.
|
|
400
422
|
class CryptoKeyVersion
|
|
401
423
|
include ::Google::Protobuf::MessageExts
|
|
402
424
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -608,6 +630,10 @@ module Google
|
|
|
608
630
|
# security level 5. Randomized version supporting externally-computed
|
|
609
631
|
# message representatives.
|
|
610
632
|
PQ_SIGN_ML_DSA_87_EXTERNAL_MU = 71
|
|
633
|
+
|
|
634
|
+
# AES key wrap with zero padding algorithm (RFC 5649). Can only be used
|
|
635
|
+
# by keys with purpose AES_WRAPPING.
|
|
636
|
+
AES_256_KWP = 73
|
|
611
637
|
end
|
|
612
638
|
|
|
613
639
|
# The state of a {::Google::Cloud::Kms::V1::CryptoKeyVersion CryptoKeyVersion},
|