chore: regens API reference docs (#889)
diff --git a/docs/dyn/firebaserules_v1.projects.releases.html b/docs/dyn/firebaserules_v1.projects.releases.html
index 837d63b..b71c6b3 100644
--- a/docs/dyn/firebaserules_v1.projects.releases.html
+++ b/docs/dyn/firebaserules_v1.projects.releases.html
@@ -75,7 +75,7 @@
<h1><a href="firebaserules_v1.html">Firebase Rules API</a> . <a href="firebaserules_v1.projects.html">projects</a> . <a href="firebaserules_v1.projects.releases.html">releases</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#create">create(name, body, x__xgafv=None)</a></code></p>
+ <code><a href="#create">create(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Create a `Release`.</p>
<p class="toc_element">
<code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
@@ -93,11 +93,11 @@
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
- <code><a href="#patch">patch(name, body, x__xgafv=None)</a></code></p>
+ <code><a href="#patch">patch(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Update a `Release` via PATCH.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="create">create(name, body, x__xgafv=None)</code>
+ <code class="details" id="create">create(name, body=None, x__xgafv=None)</code>
<pre>Create a `Release`.
Release names should reflect the developer's deployment practices. For
@@ -125,7 +125,7 @@
name: string, Resource name for the project which owns this `Release`.
Format: `projects/{project_id}` (required)
- body: object, The request body. (required)
+ body: object, The request body.
The object takes the form of:
{ # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a
@@ -303,10 +303,10 @@
An object of the form:
{ # The response for FirebaseRulesService.GetReleaseExecutable
- "executable": "A String", # Executable view of the `Ruleset` referenced by the `Release`.
+ "updateTime": "A String", # Timestamp for the most recent `Release.update_time`.
"language": "A String", # `Language` used to generate the executable bytes.
"rulesetName": "A String", # `Ruleset` name associated with the `Release` executable.
- "updateTime": "A String", # Timestamp for the most recent `Release.update_time`.
+ "executable": "A String", # Executable view of the `Ruleset` referenced by the `Release`.
"syncTime": "A String", # Optional, indicates the freshness of the result. The response is
# guaranteed to be the latest within an interval up to the
# sync_time (inclusive).
@@ -418,7 +418,7 @@
</div>
<div class="method">
- <code class="details" id="patch">patch(name, body, x__xgafv=None)</code>
+ <code class="details" id="patch">patch(name, body=None, x__xgafv=None)</code>
<pre>Update a `Release` via PATCH.
Only updates to the `ruleset_name` and `test_suite_name` fields will be
@@ -429,7 +429,7 @@
name: string, Resource name for the project which owns this `Release`.
Format: `projects/{project_id}` (required)
- body: object, The request body. (required)
+ body: object, The request body.
The object takes the form of:
{ # The request for FirebaseRulesService.UpdateReleasePatch.