google-apis-cloudkms_v1 0.78.0 → 0.79.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: 5ac33a5fed9ddc0b30d9da12e4567a8bdbc0baa6c9c31198ca9b9264e99c219e
4
- data.tar.gz: 43868a95bf08872353d280b919e3bf88e3e8f40bb89c9312c8c819d7e8b8445a
3
+ metadata.gz: 5e3b0bd9426264e826e0c4b456ce76387336b263539f2f5ed41905e4e9a91bc8
4
+ data.tar.gz: 816997c39cf5879fb8c4272ac874c8f3adcfad6940dbe3f90b5013469b5a28b8
5
5
  SHA512:
6
- metadata.gz: 84922340dbe4896876a51640d1403f0bbada13ce01af4a1bbda35c831b251a29aa0d50ea3cddf355d68ae1a1dd71e73e0f724835590d10ee76c1a42e60903dc8
7
- data.tar.gz: 11bd30287c7b15865a9bb1ca10d081396bd040c093d563ca855f38da05dba977853da90f720ccb9a3d7baf4ad45a99d493099a8179eca80ac5ea482db8253e33
6
+ metadata.gz: 34939791ef5a880a9e5b9e55f681a6646a799031962007e7debee8a106755fb385877626a4f8f75452dc437a1b6e6985638b2a8edec9d0a18bcae6ff7ff24df4
7
+ data.tar.gz: 749e467e643995825d608c121998f19aac5bcef10e88a3bd0e8e04e5120929cbb0e32bfb217fa93485ff027415a3f14ecb3b0599d2631cf168f5e64f1a7ca712
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudkms_v1
2
2
 
3
+ ### v0.79.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260827
6
+
3
7
  ### v0.78.0 (2026-08-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20260814
@@ -967,10 +967,10 @@ module Google
967
967
  # @return [String]
968
968
  attr_accessor :state
969
969
 
970
- # Immutable. Field indicating that the key may be wrapped by a trusted key. This
971
- # field can be set for all key purposes except ENCRYPT_DECRYPT, and is only
972
- # valid for keys with protection level HSM_SINGLE_TENANT. This field can only be
973
- # set at creation or import time via CreateCryptoKeyVersion, or
970
+ # Optional. Immutable. Field indicating that the key may be wrapped by a trusted
971
+ # key. This field can be set for all key purposes except ENCRYPT_DECRYPT, and is
972
+ # only valid for keys with protection level HSM_SINGLE_TENANT. This field can
973
+ # only be set at creation or import time via CreateCryptoKeyVersion, or
974
974
  # ImportCryptoKeyVersion.
975
975
  # Corresponds to the JSON property `trustedWrappingEnabled`
976
976
  # @return [Boolean]
@@ -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.78.0"
19
+ GEM_VERSION = "0.79.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 = "20260814"
25
+ REVISION = "20260827"
26
26
  end
27
27
  end
28
28
  end
@@ -1325,6 +1325,39 @@ module Google
1325
1325
  execute_or_queue_command(command, &block)
1326
1326
  end
1327
1327
 
1328
+ # Permanently deletes the given KeyRing. All child resources of the KeyRing must
1329
+ # have been previously deleted using their corresponding Delete operations. The
1330
+ # specified key ring will be immediately and permanently deleted upon calling
1331
+ # this method. This action cannot be undone.
1332
+ # @param [String] name
1333
+ # Required. The name of the KeyRing to delete.
1334
+ # @param [String] fields
1335
+ # Selector specifying which fields to include in a partial response.
1336
+ # @param [String] quota_user
1337
+ # Available to use for quota purposes for server-side applications. Can be any
1338
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1339
+ # @param [Google::Apis::RequestOptions] options
1340
+ # Request-specific options
1341
+ #
1342
+ # @yield [result, err] Result & error if block supplied
1343
+ # @yieldparam result [Google::Apis::CloudkmsV1::Operation] parsed result object
1344
+ # @yieldparam err [StandardError] error object if request failed
1345
+ #
1346
+ # @return [Google::Apis::CloudkmsV1::Operation]
1347
+ #
1348
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1349
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1350
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1351
+ def delete_project_location_key_ring(name, fields: nil, quota_user: nil, options: nil, &block)
1352
+ command = make_simple_command(:delete, 'v1/{+name}', options)
1353
+ command.response_representation = Google::Apis::CloudkmsV1::Operation::Representation
1354
+ command.response_class = Google::Apis::CloudkmsV1::Operation
1355
+ command.params['name'] = name unless name.nil?
1356
+ command.query['fields'] = fields unless fields.nil?
1357
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1358
+ execute_or_queue_command(command, &block)
1359
+ end
1360
+
1328
1361
  # Returns metadata for a given KeyRing.
1329
1362
  # @param [String] name
1330
1363
  # Required. The name of the KeyRing to get.
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.78.0
4
+ version: 0.79.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.78.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.79.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: