docs: docs update (#911)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #<issue_number_goes_here> 🦕
diff --git a/docs/dyn/composer_v1beta1.projects.locations.imageVersions.html b/docs/dyn/composer_v1beta1.projects.locations.imageVersions.html
index 1e8a21c..80380df 100644
--- a/docs/dyn/composer_v1beta1.projects.locations.imageVersions.html
+++ b/docs/dyn/composer_v1beta1.projects.locations.imageVersions.html
@@ -75,42 +75,42 @@
<h1><a href="composer_v1beta1.html">Cloud Composer API</a> . <a href="composer_v1beta1.projects.html">projects</a> . <a href="composer_v1beta1.projects.locations.html">locations</a> . <a href="composer_v1beta1.projects.locations.imageVersions.html">imageVersions</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#list">list(parent, pageToken=None, x__xgafv=None, pageSize=None)</a></code></p>
+ <code><a href="#list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
<p class="firstline">List ImageVersions for provided location.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="list">list(parent, pageToken=None, x__xgafv=None, pageSize=None)</code>
+ <code class="details" id="list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</code>
<pre>List ImageVersions for provided location.
Args:
parent: string, List ImageVersions in the given project and location, in the form:
-"projects/{projectId}/locations/{locationId}" (required)
+"projects/{projectId}/locations/{locationId}" (required)
pageToken: string, The next_page_token value returned from a previous List request, if any.
+ pageSize: integer, The maximum number of image_versions to return.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
- pageSize: integer, The maximum number of image_versions to return.
Returns:
An object of the form:
{ # The ImageVersions in a project and location.
- "nextPageToken": "A String", # The page token used to query for the next page if one exists.
- "imageVersions": [ # The list of supported ImageVersions in a location.
+ "imageVersions": [ # The list of supported ImageVersions in a location.
{ # Image Version information
- "supportedPythonVersions": [ # supported python versions
- "A String",
- ],
- "imageVersionId": "A String", # The string identifier of the ImageVersion, in the form:
- # "composer-x.y.z-airflow-a.b(.c)"
- "isDefault": True or False, # Whether this is the default ImageVersion used by Composer during
+ "isDefault": True or False, # Whether this is the default ImageVersion used by Composer during
# environment creation if no input ImageVersion is specified.
+ "imageVersionId": "A String", # The string identifier of the ImageVersion, in the form:
+ # "composer-x.y.z-airflow-a.b(.c)"
+ "supportedPythonVersions": [ # supported python versions
+ "A String",
+ ],
},
],
+ "nextPageToken": "A String", # The page token used to query for the next page if one exists.
}</pre>
</div>
@@ -123,7 +123,7 @@
previous_response: The response from the request for the previous page. (required)
Returns:
- A request object that you can call 'execute()' on to request the next
+ A request object that you can call 'execute()' on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>