google-apis-storage_v1 0.57.0 → 0.59.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: 479b6913ba37888c18755e9af57b39898c1b6fb4eef2751344d83cabca64c394
4
- data.tar.gz: 10488848814ec6bad2825d12febc63e491a9f66185a77fd9c87d31d7a4f3126d
3
+ metadata.gz: 856d1e421df9981f620d8c693adb41c5954945728f015a24895f46bfb34174cc
4
+ data.tar.gz: b90ead0b188afbc2bf3c1b8a546ad1fba55805117f69f8517591aa6e8abdccae
5
5
  SHA512:
6
- metadata.gz: 38dc19e326cfc20a5823e126497eeab70a67a1a92460e3a8986b0bf0c90d9a8da3eaf7c824a15a63760e77de1bd97e7eaff4ff073d01393093418d297e16f182
7
- data.tar.gz: 6b41b62735c0d4ccf3734e76dbb95336b725924bd54ddaecadfb67d825d65f29616af288feba977aeb97cc213a4d540ad6b6d1175b3cc05d42a824679354dc38
6
+ metadata.gz: ec523f4dde4eda02d6aedd531bde63160ca4f4a0b3f7efa67678ae28257d3f3096db97cf07e06024c1b97c557c507ae866e541e1074be7bede841d5631d1ccc7
7
+ data.tar.gz: 0d34624d2afe847bc353c93d8bfb85dbfb346ec9d3b4051a1e93ea0b212ea0d4bed0b7236e37a2243060d2ef9128f0cd14a3a1d2754975fadbc98e5e15e8c71b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-storage_v1
2
2
 
3
+ ### v0.59.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260111
6
+
7
+ ### v0.58.0 (2025-12-07)
8
+
9
+ * Regenerated from discovery document revision 20251118
10
+
3
11
  ### v0.57.0 (2025-10-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20250925
@@ -1718,6 +1718,12 @@ module Google
1718
1718
  class ComposeRequest
1719
1719
  include Google::Apis::Core::Hashable
1720
1720
 
1721
+ # If true, the source objects will be deleted.
1722
+ # Corresponds to the JSON property `deleteSourceObjects`
1723
+ # @return [Boolean]
1724
+ attr_accessor :delete_source_objects
1725
+ alias_method :delete_source_objects?, :delete_source_objects
1726
+
1721
1727
  # An object.
1722
1728
  # Corresponds to the JSON property `destination`
1723
1729
  # @return [Google::Apis::StorageV1::Object]
@@ -1739,6 +1745,7 @@ module Google
1739
1745
 
1740
1746
  # Update properties of this object
1741
1747
  def update!(**args)
1748
+ @delete_source_objects = args[:delete_source_objects] if args.key?(:delete_source_objects)
1742
1749
  @destination = args[:destination] if args.key?(:destination)
1743
1750
  @kind = args[:kind] if args.key?(:kind)
1744
1751
  @source_objects = args[:source_objects] if args.key?(:source_objects)
@@ -3185,6 +3192,13 @@ module Google
3185
3192
  # @return [Google::Apis::StorageV1::RelocateBucketRequest::DestinationCustomPlacementConfig]
3186
3193
  attr_accessor :destination_custom_placement_config
3187
3194
 
3195
+ # Resource name of a Cloud KMS key, of the form projects/my-project/locations/
3196
+ # global/keyRings/my-kr/cryptoKeys/my-key. If set, is used to encrypt all
3197
+ # objects in the destination bucket.
3198
+ # Corresponds to the JSON property `destinationKmsKeyName`
3199
+ # @return [String]
3200
+ attr_accessor :destination_kms_key_name
3201
+
3188
3202
  # The new location the bucket will be relocated to.
3189
3203
  # Corresponds to the JSON property `destinationLocation`
3190
3204
  # @return [String]
@@ -3203,6 +3217,7 @@ module Google
3203
3217
  # Update properties of this object
3204
3218
  def update!(**args)
3205
3219
  @destination_custom_placement_config = args[:destination_custom_placement_config] if args.key?(:destination_custom_placement_config)
3220
+ @destination_kms_key_name = args[:destination_kms_key_name] if args.key?(:destination_kms_key_name)
3206
3221
  @destination_location = args[:destination_location] if args.key?(:destination_location)
3207
3222
  @validate_only = args[:validate_only] if args.key?(:validate_only)
3208
3223
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module StorageV1
18
18
  # Version of the google-apis-storage_v1 gem
19
- GEM_VERSION = "0.57.0"
19
+ GEM_VERSION = "0.59.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 = "20250925"
25
+ REVISION = "20260111"
26
26
  end
27
27
  end
28
28
  end
@@ -919,6 +919,7 @@ module Google
919
919
  class ComposeRequest
920
920
  # @private
921
921
  class Representation < Google::Apis::Core::JsonRepresentation
922
+ property :delete_source_objects, as: 'deleteSourceObjects'
922
923
  property :destination, as: 'destination', class: Google::Apis::StorageV1::Object, decorator: Google::Apis::StorageV1::Object::Representation
923
924
 
924
925
  property :kind, as: 'kind'
@@ -1287,6 +1288,7 @@ module Google
1287
1288
  class Representation < Google::Apis::Core::JsonRepresentation
1288
1289
  property :destination_custom_placement_config, as: 'destinationCustomPlacementConfig', class: Google::Apis::StorageV1::RelocateBucketRequest::DestinationCustomPlacementConfig, decorator: Google::Apis::StorageV1::RelocateBucketRequest::DestinationCustomPlacementConfig::Representation
1289
1290
 
1291
+ property :destination_kms_key_name, as: 'destinationKmsKeyName'
1290
1292
  property :destination_location, as: 'destinationLocation'
1291
1293
  property :validate_only, as: 'validateOnly'
1292
1294
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-storage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.59.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-storage_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.59.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
62
62
  rdoc_options: []
63
63
  require_paths: