google-apis-cloudkms_v1 0.64.0 → 0.65.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: 515a4d0f102388b80922b16cc15ac64a3753f997983d43c08ef1dc96b5c5733a
4
- data.tar.gz: 0d734e6a1f4d3e2b7bfe199c25848a0a789f6ff5d203c3ca177032136a06e7de
3
+ metadata.gz: aa394ec120c846a71f94c112e39b1e150035888eabb47b0ede2aded639718271
4
+ data.tar.gz: 60ae318c9a40d1d06df2c8c817ae3d0ac7dc037c3b768913fba909d5913fdc38
5
5
  SHA512:
6
- metadata.gz: 00f620a62a036a6d4ee40aa685c166ebba5bf83af7978de30a048e7e0147067ba4d53be63b5a059caffdc77b8c870f6775e47f01959bf8a5aea2967dbfe847d6
7
- data.tar.gz: d67178db50b2884732813e4e6d6b2680aa7a9f204d34436ef61e4c0a58d065a965c99e5b577f3a7f7b7e401fcfea1f4db04ca4adbed88deab6c5feedcc2300dd
6
+ metadata.gz: 708cd8860531a455379cffb30fc3b2dd79fe9d669f110a0e076755db05711087ef9b56e864712bd1613047c68bb2b9f2763763b9f2ce6f4ce409f9966de3d330
7
+ data.tar.gz: 40a761fe50bd37120e8043d6c6adba1ab83fa56ff8c74bba6f0d39c044a28c68726deaf739c2b85eaec2bd8bde1df02b507ed67285dc85eafe359707d5e67699
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudkms_v1
2
2
 
3
+ ### v0.65.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251201
6
+
3
7
  ### v0.64.0 (2025-11-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20251023
@@ -319,7 +319,7 @@ module Google
319
319
  end
320
320
  end
321
321
 
322
- # Cloud KMS Autokey configuration for a folder or project.
322
+ # Cloud KMS Autokey configuration for a folder.
323
323
  class AutokeyConfig
324
324
  include Google::Apis::Core::Hashable
325
325
 
@@ -344,7 +344,7 @@ module Google
344
344
  attr_accessor :key_project
345
345
 
346
346
  # Identifier. Name of the AutokeyConfig resource, e.g. `folders/`FOLDER_NUMBER`/
347
- # autokeyConfig` `projects/`PROJECT_NUMBER`/autokeyConfig`.
347
+ # autokeyConfig`
348
348
  # Corresponds to the JSON property `name`
349
349
  # @return [String]
350
350
  attr_accessor :name
@@ -627,8 +627,11 @@ module Google
627
627
  # for all CryptoKeyVersions associated with this CryptoKey reside and where all
628
628
  # related cryptographic operations are performed. Only applicable if
629
629
  # CryptoKeyVersions have a ProtectionLevel of EXTERNAL_VPC, with the resource
630
- # name in the format `projects/*/locations/*/ekmConnections/*`. Note, this list
631
- # is non-exhaustive and may apply to additional ProtectionLevels in the future.
630
+ # name in the format `projects/*/locations/*/ekmConnections/*`. Only applicable
631
+ # if CryptoKeyVersions have a ProtectionLevel of HSM_SINGLE_TENANT, with the
632
+ # resource name in the format `projects/*/locations/*/singleTenantHsmInstances/*`
633
+ # . Note, this list is non-exhaustive and may apply to additional
634
+ # ProtectionLevels in the future.
632
635
  # Corresponds to the JSON property `cryptoKeyBackend`
633
636
  # @return [String]
634
637
  attr_accessor :crypto_key_backend
@@ -1621,6 +1624,15 @@ module Google
1621
1624
  # @return [String]
1622
1625
  attr_accessor :create_time
1623
1626
 
1627
+ # Immutable. The resource name of the backend environment where the key material
1628
+ # for the wrapping key resides and where all related cryptographic operations
1629
+ # are performed. Currently, this field is only populated for keys stored in
1630
+ # HSM_SINGLE_TENANT. Note, this list is non-exhaustive and may apply to
1631
+ # additional ProtectionLevels in the future.
1632
+ # Corresponds to the JSON property `cryptoKeyBackend`
1633
+ # @return [String]
1634
+ attr_accessor :crypto_key_backend
1635
+
1624
1636
  # Output only. The time this ImportJob expired. Only present if state is EXPIRED.
1625
1637
  # Corresponds to the JSON property `expireEventTime`
1626
1638
  # @return [String]
@@ -1674,6 +1686,7 @@ module Google
1674
1686
  def update!(**args)
1675
1687
  @attestation = args[:attestation] if args.key?(:attestation)
1676
1688
  @create_time = args[:create_time] if args.key?(:create_time)
1689
+ @crypto_key_backend = args[:crypto_key_backend] if args.key?(:crypto_key_backend)
1677
1690
  @expire_event_time = args[:expire_event_time] if args.key?(:expire_event_time)
1678
1691
  @expire_time = args[:expire_time] if args.key?(:expire_time)
1679
1692
  @generate_time = args[:generate_time] if args.key?(:generate_time)
@@ -2146,6 +2159,13 @@ module Google
2146
2159
  attr_accessor :hsm_available
2147
2160
  alias_method :hsm_available?, :hsm_available
2148
2161
 
2162
+ # Indicates whether CryptoKeys with protection_level HSM_SINGLE_TENANT can be
2163
+ # created in this location.
2164
+ # Corresponds to the JSON property `hsmSingleTenantAvailable`
2165
+ # @return [Boolean]
2166
+ attr_accessor :hsm_single_tenant_available
2167
+ alias_method :hsm_single_tenant_available?, :hsm_single_tenant_available
2168
+
2149
2169
  def initialize(**args)
2150
2170
  update!(**args)
2151
2171
  end
@@ -2154,6 +2174,7 @@ module Google
2154
2174
  def update!(**args)
2155
2175
  @ekm_available = args[:ekm_available] if args.key?(:ekm_available)
2156
2176
  @hsm_available = args[:hsm_available] if args.key?(:hsm_available)
2177
+ @hsm_single_tenant_available = args[:hsm_single_tenant_available] if args.key?(:hsm_single_tenant_available)
2157
2178
  end
2158
2179
  end
2159
2180
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudkmsV1
18
18
  # Version of the google-apis-cloudkms_v1 gem
19
- GEM_VERSION = "0.64.0"
19
+ GEM_VERSION = "0.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251023"
25
+ REVISION = "20251201"
26
26
  end
27
27
  end
28
28
  end
@@ -741,6 +741,7 @@ module Google
741
741
  property :attestation, as: 'attestation', class: Google::Apis::CloudkmsV1::KeyOperationAttestation, decorator: Google::Apis::CloudkmsV1::KeyOperationAttestation::Representation
742
742
 
743
743
  property :create_time, as: 'createTime'
744
+ property :crypto_key_backend, as: 'cryptoKeyBackend'
744
745
  property :expire_event_time, as: 'expireEventTime'
745
746
  property :expire_time, as: 'expireTime'
746
747
  property :generate_time, as: 'generateTime'
@@ -888,6 +889,7 @@ module Google
888
889
  class Representation < Google::Apis::Core::JsonRepresentation
889
890
  property :ekm_available, as: 'ekmAvailable'
890
891
  property :hsm_available, as: 'hsmAvailable'
892
+ property :hsm_single_tenant_available, as: 'hsmSingleTenantAvailable'
891
893
  end
892
894
  end
893
895
 
@@ -121,7 +121,7 @@ module Google
121
121
  # determine where to create the resulting CryptoKey.
122
122
  # @param [String] name
123
123
  # Identifier. Name of the AutokeyConfig resource, e.g. `folders/`FOLDER_NUMBER`/
124
- # autokeyConfig` `projects/`PROJECT_NUMBER`/autokeyConfig`.
124
+ # autokeyConfig`
125
125
  # @param [Google::Apis::CloudkmsV1::AutokeyConfig] autokey_config_object
126
126
  # @param [String] update_mask
127
127
  # Required. Masks which fields of the AutokeyConfig to update, e.g. `keyProject`.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudkms_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.65.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-cloudkms_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.65.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudkms_v1
62
62
  rdoc_options: []
63
63
  require_paths: