google-apis-kmsinventory_v1 0.16.0 → 0.17.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: f7f6d39184f14f533ac3b85919d19a24a2827937c2f7098e8ea379da94aeb8be
|
|
4
|
+
data.tar.gz: 4cde9b72e84d998c1394f3e5478c76137d937190d179064700cdb64c1216b347
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43e41957799dc5b68c79e482ed6afe6df05f0a62b6c5c4c3caac742ecda6bab2cad831479164f2c979d9bb95e9789517ab3e8cf3dba057e22df734b597a0e2c6
|
|
7
|
+
data.tar.gz: 772abd4ca384f384471ce15b213cf639ed678f450c7a35005d0a92d9d2d9e8526afae405bd95980b295514141dd913483117e1d5dde22890a692b27ddc5597ce
|
data/CHANGELOG.md
CHANGED
|
@@ -426,6 +426,14 @@ module Google
|
|
|
426
426
|
# @return [String]
|
|
427
427
|
attr_accessor :generation_failure_reason
|
|
428
428
|
|
|
429
|
+
# Output only. Field indicating that the key wrapping key is trusted. This field
|
|
430
|
+
# is only valid for key purpose AES_256_WRAPPING, and protection level
|
|
431
|
+
# HSM_SINGLE_TENANT.
|
|
432
|
+
# Corresponds to the JSON property `hsmTrusted`
|
|
433
|
+
# @return [Boolean]
|
|
434
|
+
attr_accessor :hsm_trusted
|
|
435
|
+
alias_method :hsm_trusted?, :hsm_trusted
|
|
436
|
+
|
|
429
437
|
# Output only. The root cause of the most recent import failure. Only present if
|
|
430
438
|
# state is IMPORT_FAILED.
|
|
431
439
|
# Corresponds to the JSON property `importFailureReason`
|
|
@@ -469,6 +477,16 @@ module Google
|
|
|
469
477
|
# @return [String]
|
|
470
478
|
attr_accessor :state
|
|
471
479
|
|
|
480
|
+
# Immutable. Field indicating that the key may be wrapped by a trusted key. This
|
|
481
|
+
# field can be set for all key purposes except ENCRYPT_DECRYPT, and is only
|
|
482
|
+
# valid for keys with protection level HSM_SINGLE_TENANT. This field can only be
|
|
483
|
+
# set at creation or import time via CreateCryptoKeyVersion, or
|
|
484
|
+
# ImportCryptoKeyVersion.
|
|
485
|
+
# Corresponds to the JSON property `trustedWrappingEnabled`
|
|
486
|
+
# @return [Boolean]
|
|
487
|
+
attr_accessor :trusted_wrapping_enabled
|
|
488
|
+
alias_method :trusted_wrapping_enabled?, :trusted_wrapping_enabled
|
|
489
|
+
|
|
472
490
|
def initialize(**args)
|
|
473
491
|
update!(**args)
|
|
474
492
|
end
|
|
@@ -484,6 +502,7 @@ module Google
|
|
|
484
502
|
@external_protection_level_options = args[:external_protection_level_options] if args.key?(:external_protection_level_options)
|
|
485
503
|
@generate_time = args[:generate_time] if args.key?(:generate_time)
|
|
486
504
|
@generation_failure_reason = args[:generation_failure_reason] if args.key?(:generation_failure_reason)
|
|
505
|
+
@hsm_trusted = args[:hsm_trusted] if args.key?(:hsm_trusted)
|
|
487
506
|
@import_failure_reason = args[:import_failure_reason] if args.key?(:import_failure_reason)
|
|
488
507
|
@import_job = args[:import_job] if args.key?(:import_job)
|
|
489
508
|
@import_time = args[:import_time] if args.key?(:import_time)
|
|
@@ -491,6 +510,7 @@ module Google
|
|
|
491
510
|
@protection_level = args[:protection_level] if args.key?(:protection_level)
|
|
492
511
|
@reimport_eligible = args[:reimport_eligible] if args.key?(:reimport_eligible)
|
|
493
512
|
@state = args[:state] if args.key?(:state)
|
|
513
|
+
@trusted_wrapping_enabled = args[:trusted_wrapping_enabled] if args.key?(:trusted_wrapping_enabled)
|
|
494
514
|
end
|
|
495
515
|
end
|
|
496
516
|
|
|
@@ -530,14 +550,23 @@ module Google
|
|
|
530
550
|
class GoogleCloudKmsV1ExternalProtectionLevelOptions
|
|
531
551
|
include Google::Apis::Core::Hashable
|
|
532
552
|
|
|
533
|
-
# The
|
|
534
|
-
#
|
|
535
|
-
#
|
|
553
|
+
# Optional. The resource name of the backend environment where the key material
|
|
554
|
+
# of CryptoKeyVersions is associated with. Setting this field overrides the
|
|
555
|
+
# CryptoKeyBackend. This field may be set when CryptoKeyVersions is set to
|
|
556
|
+
# EXTERNAL_VPC. Format: `projects/*/locations/*/ekmConnections/*`.
|
|
557
|
+
# Corresponds to the JSON property `ekmConnectionBackendOverride`
|
|
558
|
+
# @return [String]
|
|
559
|
+
attr_accessor :ekm_connection_backend_override
|
|
560
|
+
|
|
561
|
+
# Optional. The path to the external key material on the EKM when using
|
|
562
|
+
# EkmConnection e.g., "v0/my/key". Set this field instead of external_key_uri
|
|
563
|
+
# when using an EkmConnection.
|
|
536
564
|
# Corresponds to the JSON property `ekmConnectionKeyPath`
|
|
537
565
|
# @return [String]
|
|
538
566
|
attr_accessor :ekm_connection_key_path
|
|
539
567
|
|
|
540
|
-
# The URI for an external resource that this CryptoKeyVersion
|
|
568
|
+
# Optional. The URI for an external resource that this CryptoKeyVersion
|
|
569
|
+
# represents.
|
|
541
570
|
# Corresponds to the JSON property `externalKeyUri`
|
|
542
571
|
# @return [String]
|
|
543
572
|
attr_accessor :external_key_uri
|
|
@@ -548,6 +577,7 @@ module Google
|
|
|
548
577
|
|
|
549
578
|
# Update properties of this object
|
|
550
579
|
def update!(**args)
|
|
580
|
+
@ekm_connection_backend_override = args[:ekm_connection_backend_override] if args.key?(:ekm_connection_backend_override)
|
|
551
581
|
@ekm_connection_key_path = args[:ekm_connection_key_path] if args.key?(:ekm_connection_key_path)
|
|
552
582
|
@external_key_uri = args[:external_key_uri] if args.key?(:external_key_uri)
|
|
553
583
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module KmsinventoryV1
|
|
18
18
|
# Version of the google-apis-kmsinventory_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.17.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260705"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -185,6 +185,7 @@ module Google
|
|
|
185
185
|
|
|
186
186
|
property :generate_time, as: 'generateTime'
|
|
187
187
|
property :generation_failure_reason, as: 'generationFailureReason'
|
|
188
|
+
property :hsm_trusted, as: 'hsmTrusted'
|
|
188
189
|
property :import_failure_reason, as: 'importFailureReason'
|
|
189
190
|
property :import_job, as: 'importJob'
|
|
190
191
|
property :import_time, as: 'importTime'
|
|
@@ -192,6 +193,7 @@ module Google
|
|
|
192
193
|
property :protection_level, as: 'protectionLevel'
|
|
193
194
|
property :reimport_eligible, as: 'reimportEligible'
|
|
194
195
|
property :state, as: 'state'
|
|
196
|
+
property :trusted_wrapping_enabled, as: 'trustedWrappingEnabled'
|
|
195
197
|
end
|
|
196
198
|
end
|
|
197
199
|
|
|
@@ -206,6 +208,7 @@ module Google
|
|
|
206
208
|
class GoogleCloudKmsV1ExternalProtectionLevelOptions
|
|
207
209
|
# @private
|
|
208
210
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
211
|
+
property :ekm_connection_backend_override, as: 'ekmConnectionBackendOverride'
|
|
209
212
|
property :ekm_connection_key_path, as: 'ekmConnectionKeyPath'
|
|
210
213
|
property :external_key_uri, as: 'externalKeyUri'
|
|
211
214
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-kmsinventory_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-kmsinventory_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-kmsinventory_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-kmsinventory_v1/v0.17.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-kmsinventory_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|