chore: update generated docs (#1115)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/2ed9ab0e-55b4-4ab2-aede-c95e765f7376/targets
- [x] To automatically regenerate this PR, check this box.
Source-Link: https://github.com/googleapis/discovery-artifact-manager/commit/0bed8bdae25d545e796cfcdd7a9bfffff11e69da
Source-Link: https://github.com/googleapis/synthtool/commit/c2de32114ec484aa708d32012d1fa8d75232daf5
diff --git a/docs/dyn/firebasehosting_v1beta1.sites.versions.files.html b/docs/dyn/firebasehosting_v1beta1.sites.versions.files.html
index ce52d4b..3fa04e1 100644
--- a/docs/dyn/firebasehosting_v1beta1.sites.versions.files.html
+++ b/docs/dyn/firebasehosting_v1beta1.sites.versions.files.html
@@ -78,7 +78,7 @@
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
- <code><a href="#list">list(parent, pageSize=None, pageToken=None, status=None, x__xgafv=None)</a></code></p>
+ <code><a href="#list">list(parent, pageToken=None, pageSize=None, status=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists the remaining files to be uploaded for the specified version.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -90,13 +90,13 @@
</div>
<div class="method">
- <code class="details" id="list">list(parent, pageSize=None, pageToken=None, status=None, x__xgafv=None)</code>
+ <code class="details" id="list">list(parent, pageToken=None, pageSize=None, status=None, x__xgafv=None)</code>
<pre>Lists the remaining files to be uploaded for the specified version.
Args:
parent: string, Required. The parent to list files for, in the format: sites/site-name /versions/versionID (required)
- pageSize: integer, The page size to return. Defaults to 1000.
pageToken: string, The next_page_token from a previous request, if provided. This will be the encoded version of a firebase.hosting.proto.metadata.ListFilesPageToken.
+ pageSize: integer, The page size to return. Defaults to 1000.
status: string, The type of files in the version that should be listed.
Allowed values
STATUS_UNSPECIFIED - The default status; should not be intentionally used.
@@ -111,14 +111,14 @@
An object of the form:
{
- "nextPageToken": "A String", # The pagination token, if more results exist.
"files": [ # The list path/hashes in the specified version.
{ # A static content file that is part of a version.
"path": "A String", # The URI at which the file's content should display.
- "hash": "A String", # The SHA256 content hash of the file.
"status": "A String", # Output only. The current status of a particular file in the specified version. The value will be either `pending upload` or `uploaded`.
+ "hash": "A String", # The SHA256 content hash of the file.
},
],
+ "nextPageToken": "A String", # The pagination token, if more results exist.
}</pre>
</div>