Skip to content

Commit 53cb3d9

Browse files
feat(storage): update the api
#### storage:v1 The following keys were added: - resources.buckets.methods.list.parameters.returnPartialSuccess (Total Keys: 2) - schemas.Buckets.properties.unreachable (Total Keys: 2)
1 parent e53f470 commit 53cb3d9

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

docs/dyn/storage_v1.buckets.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h2>Instance Methods</h2>
9393
<code><a href="#insert">insert(project, body=None, enableObjectRetention=None, predefinedAcl=None, predefinedDefaultObjectAcl=None, projection=None, userProject=None)</a></code></p>
9494
<p class="firstline">Creates a new bucket.</p>
9595
<p class="toc_element">
96-
<code><a href="#list">list(project, maxResults=None, pageToken=None, prefix=None, projection=None, softDeleted=None, userProject=None)</a></code></p>
96+
<code><a href="#list">list(project, maxResults=None, pageToken=None, prefix=None, projection=None, returnPartialSuccess=None, softDeleted=None, userProject=None)</a></code></p>
9797
<p class="firstline">Retrieves a list of buckets for a given project.</p>
9898
<p class="toc_element">
9999
<code><a href="#list_next">list_next()</a></code></p>
@@ -924,7 +924,7 @@ <h3>Method Details</h3>
924924
</div>
925925

926926
<div class="method">
927-
<code class="details" id="list">list(project, maxResults=None, pageToken=None, prefix=None, projection=None, softDeleted=None, userProject=None)</code>
927+
<code class="details" id="list">list(project, maxResults=None, pageToken=None, prefix=None, projection=None, returnPartialSuccess=None, softDeleted=None, userProject=None)</code>
928928
<pre>Retrieves a list of buckets for a given project.
929929

930930
Args:
@@ -936,6 +936,7 @@ <h3>Method Details</h3>
936936
Allowed values
937937
full - Include all properties.
938938
noAcl - Omit owner, acl and defaultObjectAcl properties.
939+
returnPartialSuccess: boolean, If true, return a list of bucket resource names for buckets that are in unreachable locations.
939940
softDeleted: boolean, If true, only soft-deleted bucket versions will be returned. The default is false. For more information, see [Soft Delete](https://cloud.google.com/storage/docs/soft-delete).
940941
userProject: string, The project to be billed for this request.
941942

@@ -1163,6 +1164,9 @@ <h3>Method Details</h3>
11631164
],
11641165
&quot;kind&quot;: &quot;storage#buckets&quot;, # The kind of item this is. For lists of buckets, this is always storage#buckets.
11651166
&quot;nextPageToken&quot;: &quot;A String&quot;, # The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
1167+
&quot;unreachable&quot;: [ # The list of bucket resource names that could not be reached during the listing operation.
1168+
&quot;A String&quot;,
1169+
],
11661170
}</pre>
11671171
</div>
11681172

googleapiclient/discovery_cache/documents/storage.v1.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
"location": "northamerica-south1"
254254
}
255255
],
256-
"etag": "\"3136333632333439343533383832363638313632\"",
256+
"etag": "\"3131343633323936333034313936343439353533\"",
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"
@@ -1083,6 +1083,11 @@
10831083
"location": "query",
10841084
"type": "string"
10851085
},
1086+
"returnPartialSuccess": {
1087+
"description": "If true, return a list of bucket resource names for buckets that are in unreachable locations.",
1088+
"location": "query",
1089+
"type": "boolean"
1090+
},
10861091
"softDeleted": {
10871092
"description": "If true, only soft-deleted bucket versions will be returned. The default is false. For more information, see [Soft Delete](https://cloud.google.com/storage/docs/soft-delete).",
10881093
"location": "query",
@@ -4544,7 +4549,7 @@
45444549
}
45454550
}
45464551
},
4547-
"revision": "20250814",
4552+
"revision": "20250925",
45484553
"rootUrl": "https://storage.googleapis.com/",
45494554
"schemas": {
45504555
"AdvanceRelocateBucketOperationRequest": {
@@ -5385,6 +5390,13 @@
53855390
"nextPageToken": {
53865391
"description": "The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results.",
53875392
"type": "string"
5393+
},
5394+
"unreachable": {
5395+
"description": "The list of bucket resource names that could not be reached during the listing operation.",
5396+
"items": {
5397+
"type": "string"
5398+
},
5399+
"type": "array"
53885400
}
53895401
},
53905402
"type": "object"

0 commit comments

Comments
 (0)