chore: update docs/dyn (#1106)
diff --git a/docs/dyn/pubsub_v1beta1a.topics.html b/docs/dyn/pubsub_v1beta1a.topics.html
index 576c3ba..feb13f1 100644
--- a/docs/dyn/pubsub_v1beta1a.topics.html
+++ b/docs/dyn/pubsub_v1beta1a.topics.html
@@ -87,7 +87,7 @@
<code><a href="#get">get(topic, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the configuration of a topic. Since the topic only has the name attribute, this method is only useful to check the existence of a topic. If other attributes are added in the future, they will be returned here.</p>
<p class="toc_element">
- <code><a href="#list">list(query=None, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p>
+ <code><a href="#list">list(pageToken=None, maxResults=None, query=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists matching topics.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -167,13 +167,13 @@
</div>
<div class="method">
- <code class="details" id="list">list(query=None, maxResults=None, pageToken=None, x__xgafv=None)</code>
+ <code class="details" id="list">list(pageToken=None, maxResults=None, query=None, x__xgafv=None)</code>
<pre>Lists matching topics.
Args:
- query: string, A valid label query expression.
- maxResults: integer, Maximum number of topics to return.
pageToken: string, The value obtained in the last ListTopicsResponse for continuation.
+ maxResults: integer, Maximum number of topics to return.
+ query: string, A valid label query expression.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
@@ -183,12 +183,12 @@
An object of the form:
{ # Response for the ListTopics method.
- "nextPageToken": "A String", # If not empty, indicates that there are more topics that match the request, and this value should be passed to the next ListTopicsRequest to continue.
"topic": [ # The resulting topics.
{ # A topic resource.
"name": "A String", # Name of the topic.
},
],
+ "nextPageToken": "A String", # If not empty, indicates that there are more topics that match the request, and this value should be passed to the next ListTopicsRequest to continue.
}</pre>
</div>
@@ -215,9 +215,9 @@
The object takes the form of:
{ # Request for the Publish method.
- "topic": "A String", # The message in the request will be published on this topic.
"message": { # A message data and its labels. # The message to publish.
"data": "A String", # The message payload.
+ "messageId": "A String", # ID of this message assigned by the server at publication time. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a PubsubMessage via a Pull call or a push delivery. It must not be populated by a publisher in a Publish call.
"label": [ # Optional list of labels for this message. Keys in this collection must be unique.
{ # A key-value pair applied to a given object.
"strValue": "A String", # A string value.
@@ -226,8 +226,8 @@
},
],
"publishTime": "A String", # The time at which the message was published. The time is milliseconds since the UNIX epoch.
- "messageId": "A String", # ID of this message assigned by the server at publication time. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a PubsubMessage via a Pull call or a push delivery. It must not be populated by a publisher in a Publish call.
},
+ "topic": "A String", # The message in the request will be published on this topic.
}
x__xgafv: string, V1 error format.
@@ -254,6 +254,7 @@
"messages": [ # The messages to publish.
{ # A message data and its labels.
"data": "A String", # The message payload.
+ "messageId": "A String", # ID of this message assigned by the server at publication time. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a PubsubMessage via a Pull call or a push delivery. It must not be populated by a publisher in a Publish call.
"label": [ # Optional list of labels for this message. Keys in this collection must be unique.
{ # A key-value pair applied to a given object.
"strValue": "A String", # A string value.
@@ -262,7 +263,6 @@
},
],
"publishTime": "A String", # The time at which the message was published. The time is milliseconds since the UNIX epoch.
- "messageId": "A String", # ID of this message assigned by the server at publication time. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a PubsubMessage via a Pull call or a push delivery. It must not be populated by a publisher in a Publish call.
},
],
"topic": "A String", # The messages in the request will be published on this topic.