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/spanner_v1.projects.instanceConfigs.html b/docs/dyn/spanner_v1.projects.instanceConfigs.html
index 120a127..10e69dd 100644
--- a/docs/dyn/spanner_v1.projects.instanceConfigs.html
+++ b/docs/dyn/spanner_v1.projects.instanceConfigs.html
@@ -78,7 +78,7 @@
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Gets information about a particular instance configuration.</p>
<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">Lists the supported instance configurations for a given project.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -101,26 +101,26 @@
{ # A possible configuration for a Cloud Spanner instance. Configurations
# define the geographic placement of nodes and their replication.
- "displayName": "A String", # The name of this instance configuration as it appears in UIs.
- "name": "A String", # A unique identifier for the instance configuration. Values
- # are of the form
- # `projects/<project>/instanceConfigs/a-z*`
- "replicas": [ # The geographic placement of nodes in this instance configuration and their
+ "replicas": [ # The geographic placement of nodes in this instance configuration and their
# replication properties.
{
- "defaultLeaderLocation": True or False, # If true, this location is designated as the default leader location where
+ "location": "A String", # The location of the serving resources, e.g. "us-central1".
+ "type": "A String", # The type of replica.
+ "defaultLeaderLocation": True or False, # If true, this location is designated as the default leader location where
# leader replicas are placed. See the [region types
# documentation](https://cloud.google.com/spanner/docs/instances#region_types)
# for more details.
- "type": "A String", # The type of replica.
- "location": "A String", # The location of the serving resources, e.g. "us-central1".
},
],
+ "name": "A String", # A unique identifier for the instance configuration. Values
+ # are of the form
+ # `projects/<project>/instanceConfigs/a-z*`
+ "displayName": "A String", # The name of this instance configuration as it appears in UIs.
}</pre>
</div>
<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>Lists the supported instance configurations for a given project.
Args:
@@ -130,38 +130,38 @@
pageToken: string, If non-empty, `page_token` should contain a
next_page_token
from a previous ListInstanceConfigsResponse.
+ pageSize: integer, Number of instance configurations to be returned in the response. If 0 or
+less, defaults to the server's maximum allowed page size.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
- pageSize: integer, Number of instance configurations to be returned in the response. If 0 or
-less, defaults to the server's maximum allowed page size.
Returns:
An object of the form:
{ # The response for ListInstanceConfigs.
- "nextPageToken": "A String", # `next_page_token` can be sent in a subsequent
+ "nextPageToken": "A String", # `next_page_token` can be sent in a subsequent
# ListInstanceConfigs call to
# fetch more of the matching instance configurations.
- "instanceConfigs": [ # The list of requested instance configurations.
+ "instanceConfigs": [ # The list of requested instance configurations.
{ # A possible configuration for a Cloud Spanner instance. Configurations
# define the geographic placement of nodes and their replication.
- "displayName": "A String", # The name of this instance configuration as it appears in UIs.
- "name": "A String", # A unique identifier for the instance configuration. Values
- # are of the form
- # `projects/<project>/instanceConfigs/a-z*`
- "replicas": [ # The geographic placement of nodes in this instance configuration and their
+ "replicas": [ # The geographic placement of nodes in this instance configuration and their
# replication properties.
{
- "defaultLeaderLocation": True or False, # If true, this location is designated as the default leader location where
+ "location": "A String", # The location of the serving resources, e.g. "us-central1".
+ "type": "A String", # The type of replica.
+ "defaultLeaderLocation": True or False, # If true, this location is designated as the default leader location where
# leader replicas are placed. See the [region types
# documentation](https://cloud.google.com/spanner/docs/instances#region_types)
# for more details.
- "type": "A String", # The type of replica.
- "location": "A String", # The location of the serving resources, e.g. "us-central1".
},
],
+ "name": "A String", # A unique identifier for the instance configuration. Values
+ # are of the form
+ # `projects/<project>/instanceConfigs/a-z*`
+ "displayName": "A String", # The name of this instance configuration as it appears in UIs.
},
],
}</pre>
@@ -176,7 +176,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>