google-cloud-kms-inventory-v1 0.13.0 → 0.14.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: 4ac7ca99af2defab187687ad4d039f2b7f839fc5da629a546990c8d69ba54c56
|
4
|
+
data.tar.gz: 9d4ea1fd91b79ec3388045a189914a220d716b10d10fd0a254892fc3232a8353
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0926072530c03fcea9e552de365f0761f59b110e0de91c01dd6a833c14e8584c4ee6d14a2d57d6b41719d48d2db42f32b25b4636a51cc165757eeb3fa0aca65e'
|
7
|
+
data.tar.gz: 246e5a521af3f3f62cd8a18e51fb209552e56f6af98e10ab933c71f705ec2234ae4ff52e892d46d2701831a19939f27ed5af274f06aa2200b0c71ce4aebc2d8f
|
@@ -221,6 +221,12 @@ module Google
|
|
221
221
|
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
222
|
# enabled by default 1 month after launching the feature in preview
|
223
223
|
# packages.
|
224
|
+
# @!attribute [rw] unversioned_package_disabled
|
225
|
+
# @return [::Boolean]
|
226
|
+
# Disables generation of an unversioned Python package for this client
|
227
|
+
# library. This means that the module names will need to be versioned in
|
228
|
+
# import statements. For example `import google.cloud.library_v2` instead
|
229
|
+
# of `import google.cloud.library`.
|
224
230
|
class ExperimentalFeatures
|
225
231
|
include ::Google::Protobuf::MessageExts
|
226
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -409,6 +415,14 @@ module Google
|
|
409
415
|
# @return [::Array<::String>]
|
410
416
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
417
|
# on public client surfaces.
|
418
|
+
# @!attribute [rw] generate_omitted_as_internal
|
419
|
+
# @return [::Boolean]
|
420
|
+
# Setting this to true indicates to the client generators that methods
|
421
|
+
# that would be excluded from the generation should instead be generated
|
422
|
+
# in a way that indicates these methods should not be consumed by
|
423
|
+
# end users. How this is expressed is up to individual language
|
424
|
+
# implementations to decide. Some examples may be: added annotations,
|
425
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
426
|
class SelectiveGapicGeneration
|
413
427
|
include ::Google::Protobuf::MessageExts
|
414
428
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -547,6 +547,14 @@ module Google
|
|
547
547
|
|
548
548
|
# Algorithm representing symmetric encryption by an external key manager.
|
549
549
|
EXTERNAL_SYMMETRIC_ENCRYPTION = 18
|
550
|
+
|
551
|
+
# The post-quantum Module-Lattice-Based Digital Signature Algorithm, at
|
552
|
+
# security level 3. Randomized version.
|
553
|
+
PQ_SIGN_ML_DSA_65 = 56
|
554
|
+
|
555
|
+
# The post-quantum stateless hash-based digital signature algorithm, at
|
556
|
+
# security level 1. Randomized version.
|
557
|
+
PQ_SIGN_SLH_DSA_SHA2_128S = 57
|
550
558
|
end
|
551
559
|
|
552
560
|
# The state of a {::Google::Cloud::Kms::V1::CryptoKeyVersion CryptoKeyVersion},
|
@@ -639,6 +647,31 @@ module Google
|
|
639
647
|
end
|
640
648
|
end
|
641
649
|
|
650
|
+
# Data with integrity verification field.
|
651
|
+
# @!attribute [rw] data
|
652
|
+
# @return [::String]
|
653
|
+
# Raw Data.
|
654
|
+
# @!attribute [rw] crc32c_checksum
|
655
|
+
# @return [::Google::Protobuf::Int64Value]
|
656
|
+
# Integrity verification field. A CRC32C
|
657
|
+
# checksum of the returned
|
658
|
+
# {::Google::Cloud::Kms::V1::ChecksummedData#data ChecksummedData.data}. An
|
659
|
+
# integrity check of
|
660
|
+
# {::Google::Cloud::Kms::V1::ChecksummedData#data ChecksummedData.data} can be
|
661
|
+
# performed by computing the CRC32C checksum of
|
662
|
+
# {::Google::Cloud::Kms::V1::ChecksummedData#data ChecksummedData.data} and
|
663
|
+
# comparing your results to this field. Discard the response in case of
|
664
|
+
# non-matching checksum values, and perform a limited number of retries. A
|
665
|
+
# persistent mismatch may indicate an issue in your computation of the CRC32C
|
666
|
+
# checksum. Note: This field is defined as int64 for reasons of compatibility
|
667
|
+
# across different languages. However, it is a non-negative integer, which
|
668
|
+
# will never exceed `2^32-1`, and can be safely downconverted to uint32 in
|
669
|
+
# languages that support this type.
|
670
|
+
class ChecksummedData
|
671
|
+
include ::Google::Protobuf::MessageExts
|
672
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
673
|
+
end
|
674
|
+
|
642
675
|
# The public keys for a given
|
643
676
|
# {::Google::Cloud::Kms::V1::CryptoKeyVersion CryptoKeyVersion}. Obtained via
|
644
677
|
# [GetPublicKey][google.cloud.kms.v1.KeyManagementService.GetPublicKey].
|
@@ -666,8 +699,8 @@ module Google
|
|
666
699
|
# mismatch may indicate an issue in your computation of the CRC32C checksum.
|
667
700
|
# Note: This field is defined as int64 for reasons of compatibility across
|
668
701
|
# different languages. However, it is a non-negative integer, which will
|
669
|
-
# never exceed 2^32-1
|
670
|
-
# that support this type.
|
702
|
+
# never exceed `2^32-1`, and can be safely downconverted to uint32 in
|
703
|
+
# languages that support this type.
|
671
704
|
#
|
672
705
|
# NOTE: This field is in Beta.
|
673
706
|
# @!attribute [rw] name
|
@@ -681,9 +714,47 @@ module Google
|
|
681
714
|
# @return [::Google::Cloud::Kms::V1::ProtectionLevel]
|
682
715
|
# The {::Google::Cloud::Kms::V1::ProtectionLevel ProtectionLevel} of the
|
683
716
|
# {::Google::Cloud::Kms::V1::CryptoKeyVersion CryptoKeyVersion} public key.
|
717
|
+
# @!attribute [rw] public_key_format
|
718
|
+
# @return [::Google::Cloud::Kms::V1::PublicKey::PublicKeyFormat]
|
719
|
+
# The {::Google::Cloud::Kms::V1::PublicKey PublicKey} format specified by the
|
720
|
+
# customer through the
|
721
|
+
# [public_key_format][google.cloud.kms.v1.GetPublicKeyRequest.public_key_format]
|
722
|
+
# field.
|
723
|
+
# @!attribute [rw] public_key
|
724
|
+
# @return [::Google::Cloud::Kms::V1::ChecksummedData]
|
725
|
+
# This field contains the public key (with integrity verification), formatted
|
726
|
+
# according to the
|
727
|
+
# {::Google::Cloud::Kms::V1::PublicKey#public_key_format public_key_format} field.
|
684
728
|
class PublicKey
|
685
729
|
include ::Google::Protobuf::MessageExts
|
686
730
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
731
|
+
|
732
|
+
# The supported {::Google::Cloud::Kms::V1::PublicKey PublicKey} formats.
|
733
|
+
module PublicKeyFormat
|
734
|
+
# If the
|
735
|
+
# [public_key_format][google.cloud.kms.v1.GetPublicKeyRequest.public_key_format]
|
736
|
+
# field is not specified:
|
737
|
+
# - For PQC algorithms, an error will be returned.
|
738
|
+
# - For non-PQC algorithms, the default format is PEM, and the field
|
739
|
+
# {::Google::Cloud::Kms::V1::PublicKey#pem pem} will be populated.
|
740
|
+
#
|
741
|
+
# Otherwise, the public key will be exported through the
|
742
|
+
# {::Google::Cloud::Kms::V1::PublicKey#public_key public_key} field in the
|
743
|
+
# requested format.
|
744
|
+
PUBLIC_KEY_FORMAT_UNSPECIFIED = 0
|
745
|
+
|
746
|
+
# The returned public key will be encoded in PEM format.
|
747
|
+
# See the [RFC7468](https://tools.ietf.org/html/rfc7468) sections for
|
748
|
+
# [General Considerations](https://tools.ietf.org/html/rfc7468#section-2)
|
749
|
+
# and [Textual Encoding of Subject Public Key Info]
|
750
|
+
# (https://tools.ietf.org/html/rfc7468#section-13) for more information.
|
751
|
+
PEM = 1
|
752
|
+
|
753
|
+
# This is supported only for PQC algorithms.
|
754
|
+
# The key material is returned in the format defined by NIST PQC
|
755
|
+
# standards (FIPS 203, FIPS 204, and FIPS 205).
|
756
|
+
NIST_PQC = 3
|
757
|
+
end
|
687
758
|
end
|
688
759
|
|
689
760
|
# An {::Google::Cloud::Kms::V1::ImportJob ImportJob} can be used to create
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-kms-inventory-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-02-25 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
127
|
- !ruby/object:Gem::Version
|
128
128
|
version: '0'
|
129
129
|
requirements: []
|
130
|
-
rubygems_version: 3.6.
|
130
|
+
rubygems_version: 3.6.5
|
131
131
|
specification_version: 4
|
132
132
|
summary: API Client library for the KMS Inventory V1 API
|
133
133
|
test_files: []
|