Skip to content

Commit 467f1bc

Browse files
feat(storage): update the api
#### storage:v1 The following keys were added: - schemas.BulkRestoreObjectsRequest.properties.createdAfterTime (Total Keys: 2) - schemas.BulkRestoreObjectsRequest.properties.createdBeforeTime (Total Keys: 2)
1 parent b811701 commit 467f1bc

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

docs/dyn/storage_v1.objects.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ <h3>Method Details</h3>
144144
{ # A bulk restore objects request.
145145
&quot;allowOverwrite&quot;: True or False, # If false (default), the restore will not overwrite live objects with the same name at the destination. This means some deleted objects may be skipped. If true, live objects will be overwritten resulting in a noncurrent object (if versioning is enabled). If versioning is not enabled, overwriting the object will result in a soft-deleted object. In either case, if a noncurrent object already exists with the same name, a live version can be written without issue.
146146
&quot;copySourceAcl&quot;: True or False, # If true, copies the source object&#x27;s ACL; otherwise, uses the bucket&#x27;s default object ACL. The default is false.
147+
&quot;createdAfterTime&quot;: &quot;A String&quot;, # Restores only the objects that were created after this time.
148+
&quot;createdBeforeTime&quot;: &quot;A String&quot;, # Restores only the objects that were created before this time.
147149
&quot;matchGlobs&quot;: [ # Restores only the objects matching any of the specified glob(s). If this parameter is not specified, all objects will be restored within the specified time range.
148150
&quot;A String&quot;,
149151
],

googleapiclient/discovery_cache/documents/storage.v1.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
"location": "northamerica-south1"
254254
}
255255
],
256-
"etag": "\"31383438373536343936353833383831333836\"",
256+
"etag": "\"3136333632333439343533383832363638313632\"",
257257
"icons": {
258258
"x16": "https://www.google.com/images/icons/product/cloud_storage-16.png",
259259
"x32": "https://www.google.com/images/icons/product/cloud_storage-32.png"
@@ -4544,7 +4544,7 @@
45444544
}
45454545
}
45464546
},
4547-
"revision": "20250718",
4547+
"revision": "20250814",
45484548
"rootUrl": "https://storage.googleapis.com/",
45494549
"schemas": {
45504550
"AdvanceRelocateBucketOperationRequest": {
@@ -5401,6 +5401,16 @@
54015401
"description": "If true, copies the source object's ACL; otherwise, uses the bucket's default object ACL. The default is false.",
54025402
"type": "boolean"
54035403
},
5404+
"createdAfterTime": {
5405+
"description": "Restores only the objects that were created after this time.",
5406+
"format": "date-time",
5407+
"type": "string"
5408+
},
5409+
"createdBeforeTime": {
5410+
"description": "Restores only the objects that were created before this time.",
5411+
"format": "date-time",
5412+
"type": "string"
5413+
},
54045414
"matchGlobs": {
54055415
"description": "Restores only the objects matching any of the specified glob(s). If this parameter is not specified, all objects will be restored within the specified time range.",
54065416
"items": {

0 commit comments

Comments
 (0)