File tree Expand file tree Collapse file tree 5 files changed +24
-2
lines changed
generated/google-apis-storage_v1
lib/google/apis/storage_v1 Expand file tree Collapse file tree 5 files changed +24
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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
2828end
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments