Skip to content

Commit 465b7ec

Browse files
feat: Automated regeneration of storage v1 client (googleapis#24053)
Auto-created at 2025-08-24 10:19:46 +0000 using the toys pull request generator.
1 parent 17bc4b7 commit 465b7ec

File tree

5 files changed

+24
-2
lines changed

5 files changed

+24
-2
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353214,6 +353214,8 @@
353214353214
"/storage:v1/BulkRestoreObjectsRequest": bulk_restore_objects_request
353215353215
"/storage:v1/BulkRestoreObjectsRequest/allowOverwrite": allow_overwrite
353216353216
"/storage:v1/BulkRestoreObjectsRequest/copySourceAcl": copy_source_acl
353217+
"/storage:v1/BulkRestoreObjectsRequest/createdAfterTime": created_after_time
353218+
"/storage:v1/BulkRestoreObjectsRequest/createdBeforeTime": created_before_time
353217353219
"/storage:v1/BulkRestoreObjectsRequest/matchGlobs": match_globs
353218353220
"/storage:v1/BulkRestoreObjectsRequest/matchGlobs/match_glob": match_glob
353219353221
"/storage:v1/BulkRestoreObjectsRequest/softDeletedAfterTime": soft_deleted_after_time

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.56.0 (2025-08-24)
4+
5+
* Regenerated from discovery document revision 20250814
6+
37
### v0.55.0 (2025-07-27)
48

59
* Regenerated from discovery document revision 20250718

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1586,6 +1586,16 @@ class BulkRestoreObjectsRequest
15861586
attr_accessor :copy_source_acl
15871587
alias_method :copy_source_acl?, :copy_source_acl
15881588

1589+
# Restores only the objects that were created after this time.
1590+
# Corresponds to the JSON property `createdAfterTime`
1591+
# @return [DateTime]
1592+
attr_accessor :created_after_time
1593+
1594+
# Restores only the objects that were created before this time.
1595+
# Corresponds to the JSON property `createdBeforeTime`
1596+
# @return [DateTime]
1597+
attr_accessor :created_before_time
1598+
15891599
# Restores only the objects matching any of the specified glob(s). If this
15901600
# parameter is not specified, all objects will be restored within the specified
15911601
# time range.
@@ -1611,6 +1621,8 @@ def initialize(**args)
16111621
def update!(**args)
16121622
@allow_overwrite = args[:allow_overwrite] if args.key?(:allow_overwrite)
16131623
@copy_source_acl = args[:copy_source_acl] if args.key?(:copy_source_acl)
1624+
@created_after_time = args[:created_after_time] if args.key?(:created_after_time)
1625+
@created_before_time = args[:created_before_time] if args.key?(:created_before_time)
16141626
@match_globs = args[:match_globs] if args.key?(:match_globs)
16151627
@soft_deleted_after_time = args[:soft_deleted_after_time] if args.key?(:soft_deleted_after_time)
16161628
@soft_deleted_before_time = args[:soft_deleted_before_time] if args.key?(:soft_deleted_before_time)

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.55.0"
19+
GEM_VERSION = "0.56.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 = "20250718"
25+
REVISION = "20250814"
2626
end
2727
end
2828
end

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,10 @@ class BulkRestoreObjectsRequest
887887
class Representation < Google::Apis::Core::JsonRepresentation
888888
property :allow_overwrite, as: 'allowOverwrite'
889889
property :copy_source_acl, as: 'copySourceAcl'
890+
property :created_after_time, as: 'createdAfterTime', type: DateTime
891+
892+
property :created_before_time, as: 'createdBeforeTime', type: DateTime
893+
890894
collection :match_globs, as: 'matchGlobs'
891895
property :soft_deleted_after_time, as: 'softDeletedAfterTime', type: DateTime
892896

0 commit comments

Comments
 (0)