Skip to content

Commit 0963d0c

Browse files
feat: Automated regeneration of storage v1 client (googleapis#25154)
Auto-created at 2025-12-07 10:53:53 +0000 using the toys pull request generator.
1 parent 8e364dd commit 0963d0c

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371720,6 +371720,7 @@
371720371720
"/storage:v1/Channel/token": token
371721371721
"/storage:v1/Channel/type": type
371722371722
"/storage:v1/ComposeRequest": compose_request
371723+
"/storage:v1/ComposeRequest/deleteSourceObjects": delete_source_objects
371723371724
"/storage:v1/ComposeRequest/destination": destination
371724371725
"/storage:v1/ComposeRequest/kind": kind
371725371726
"/storage:v1/ComposeRequest/sourceObjects": source_objects

generated/google-apis-storage_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-storage_v1
22

3+
### v0.58.0 (2025-12-07)
4+
5+
* Regenerated from discovery document revision 20251118
6+
37
### v0.57.0 (2025-10-05)
48

59
* Regenerated from discovery document revision 20250925

generated/google-apis-storage_v1/lib/google/apis/storage_v1/classes.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1718,6 +1718,12 @@ def update!(**args)
17181718
class ComposeRequest
17191719
include Google::Apis::Core::Hashable
17201720

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+
17211727
# An object.
17221728
# Corresponds to the JSON property `destination`
17231729
# @return [Google::Apis::StorageV1::Object]
@@ -1739,6 +1745,7 @@ def initialize(**args)
17391745

17401746
# Update properties of this object
17411747
def update!(**args)
1748+
@delete_source_objects = args[:delete_source_objects] if args.key?(:delete_source_objects)
17421749
@destination = args[:destination] if args.key?(:destination)
17431750
@kind = args[:kind] if args.key?(:kind)
17441751
@source_objects = args[:source_objects] if args.key?(:source_objects)

generated/google-apis-storage_v1/lib/google/apis/storage_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module StorageV1
1818
# Version of the google-apis-storage_v1 gem
19-
GEM_VERSION = "0.57.0"
19+
GEM_VERSION = "0.58.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250925"
25+
REVISION = "20251118"
2626
end
2727
end
2828
end

generated/google-apis-storage_v1/lib/google/apis/storage_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
919919
class ComposeRequest
920920
# @private
921921
class Representation < Google::Apis::Core::JsonRepresentation
922+
property :delete_source_objects, as: 'deleteSourceObjects'
922923
property :destination, as: 'destination', class: Google::Apis::StorageV1::Object, decorator: Google::Apis::StorageV1::Object::Representation
923924

924925
property :kind, as: 'kind'

0 commit comments

Comments
 (0)