Skip to content

Commit fa4f674

Browse files
chore(area120tables): update the api
#### area120tables:v1alpha1 The following keys were added: - resources.tables.resources.rows.methods.batchDelete (Total Keys: 12) - resources.tables.resources.rows.methods.list.parameters.filter (Total Keys: 2) - schemas.BatchDeleteRowsRequest (Total Keys: 4) - schemas.Row.properties.createTime (Total Keys: 2) - schemas.Row.properties.updateTime (Total Keys: 2) - schemas.Table.properties.createTime (Total Keys: 2) - schemas.Table.properties.updateTime (Total Keys: 2) - schemas.Workspace.properties.createTime (Total Keys: 2) - schemas.Workspace.properties.updateTime (Total Keys: 2) The following keys were changed: - resources.tables.methods.get (Total Keys: 1) - resources.tables.methods.list (Total Keys: 1) - resources.tables.resources.rows.methods.batchCreate (Total Keys: 1) - resources.tables.resources.rows.methods.batchUpdate (Total Keys: 1) - resources.tables.resources.rows.methods.create (Total Keys: 1) - resources.tables.resources.rows.methods.delete (Total Keys: 1) - resources.tables.resources.rows.methods.get (Total Keys: 1) - resources.tables.resources.rows.methods.list (Total Keys: 1) - resources.tables.resources.rows.methods.patch (Total Keys: 1) - resources.workspaces.methods.get (Total Keys: 1) - resources.workspaces.methods.list (Total Keys: 1)
1 parent ce57bc0 commit fa4f674

File tree

4 files changed

+965
-808
lines changed

4 files changed

+965
-808
lines changed

docs/dyn/area120tables_v1alpha1.tables.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,10 @@ <h3>Method Details</h3>
132132
},
133133
},
134134
],
135+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the table was created.
135136
&quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the table.
136137
&quot;name&quot;: &quot;A String&quot;, # The resource name of the table. Table names have the form `tables/{table}`.
138+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the table was last updated excluding updates to individual rows
137139
}</pre>
138140
</div>
139141

@@ -176,8 +178,10 @@ <h3>Method Details</h3>
176178
},
177179
},
178180
],
181+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the table was created.
179182
&quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the table.
180183
&quot;name&quot;: &quot;A String&quot;, # The resource name of the table. Table names have the form `tables/{table}`.
184+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the table was last updated excluding updates to individual rows
181185
},
182186
],
183187
}</pre>

docs/dyn/area120tables_v1alpha1.tables.rows.html

Lines changed: 53 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ <h2>Instance Methods</h2>
7777
<p class="toc_element">
7878
<code><a href="#batchCreate">batchCreate(parent, body=None, x__xgafv=None)</a></code></p>
7979
<p class="firstline">Creates multiple rows.</p>
80+
<p class="toc_element">
81+
<code><a href="#batchDelete">batchDelete(parent, body=None, x__xgafv=None)</a></code></p>
82+
<p class="firstline">Deletes multiple rows.</p>
8083
<p class="toc_element">
8184
<code><a href="#batchUpdate">batchUpdate(parent, body=None, x__xgafv=None)</a></code></p>
8285
<p class="firstline">Updates multiple rows.</p>
@@ -93,7 +96,7 @@ <h2>Instance Methods</h2>
9396
<code><a href="#get">get(name, view=None, x__xgafv=None)</a></code></p>
9497
<p class="firstline">Gets a row. Returns NOT_FOUND if the row does not exist in the table.</p>
9598
<p class="toc_element">
96-
<code><a href="#list">list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)</a></code></p>
99+
<code><a href="#list">list(parent, filter=None, pageSize=None, pageToken=None, view=None, x__xgafv=None)</a></code></p>
97100
<p class="firstline">Lists rows in a table. Returns NOT_FOUND if the table does not exist.</p>
98101
<p class="toc_element">
99102
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -116,7 +119,9 @@ <h3>Method Details</h3>
116119
{ # Request message for TablesService.CreateRow.
117120
&quot;parent&quot;: &quot;A String&quot;, # Required. The parent table where this row will be created. Format: tables/{table}
118121
&quot;row&quot;: { # A single row in a table. # Required. The row to create.
122+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
119123
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
124+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
120125
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
121126
&quot;a_key&quot;: &quot;&quot;,
122127
},
@@ -137,7 +142,9 @@ <h3>Method Details</h3>
137142
{ # Response message for TablesService.BatchCreateRows.
138143
&quot;rows&quot;: [ # The created rows.
139144
{ # A single row in a table.
145+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
140146
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
147+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
141148
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
142149
&quot;a_key&quot;: &quot;&quot;,
143150
},
@@ -146,6 +153,33 @@ <h3>Method Details</h3>
146153
}</pre>
147154
</div>
148155

156+
<div class="method">
157+
<code class="details" id="batchDelete">batchDelete(parent, body=None, x__xgafv=None)</code>
158+
<pre>Deletes multiple rows.
159+
160+
Args:
161+
parent: string, Required. The parent table shared by all rows being deleted. Format: tables/{table} (required)
162+
body: object, The request body.
163+
The object takes the form of:
164+
165+
{ # Request message for TablesService.BatchDeleteRows
166+
&quot;names&quot;: [ # Required. The names of the rows to delete. All rows must belong to the parent table or else the entire batch will fail. A maximum of 500 rows can be deleted in a batch. Format: tables/{table}/rows/{row}
167+
&quot;A String&quot;,
168+
],
169+
}
170+
171+
x__xgafv: string, V1 error format.
172+
Allowed values
173+
1 - v1 error format
174+
2 - v2 error format
175+
176+
Returns:
177+
An object of the form:
178+
179+
{ # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
180+
}</pre>
181+
</div>
182+
149183
<div class="method">
150184
<code class="details" id="batchUpdate">batchUpdate(parent, body=None, x__xgafv=None)</code>
151185
<pre>Updates multiple rows.
@@ -159,7 +193,9 @@ <h3>Method Details</h3>
159193
&quot;requests&quot;: [ # Required. The request messages specifying the rows to update. A maximum of 500 rows can be modified in a single batch.
160194
{ # Request message for TablesService.UpdateRow.
161195
&quot;row&quot;: { # A single row in a table. # Required. The row to update.
196+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
162197
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
198+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
163199
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
164200
&quot;a_key&quot;: &quot;&quot;,
165201
},
@@ -181,7 +217,9 @@ <h3>Method Details</h3>
181217
{ # Response message for TablesService.BatchUpdateRows.
182218
&quot;rows&quot;: [ # The updated rows.
183219
{ # A single row in a table.
220+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
184221
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
222+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
185223
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
186224
&quot;a_key&quot;: &quot;&quot;,
187225
},
@@ -205,7 +243,9 @@ <h3>Method Details</h3>
205243
The object takes the form of:
206244

207245
{ # A single row in a table.
246+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
208247
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
248+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
209249
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
210250
&quot;a_key&quot;: &quot;&quot;,
211251
},
@@ -224,7 +264,9 @@ <h3>Method Details</h3>
224264
An object of the form:
225265

226266
{ # A single row in a table.
267+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
227268
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
269+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
228270
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
229271
&quot;a_key&quot;: &quot;&quot;,
230272
},
@@ -268,19 +310,22 @@ <h3>Method Details</h3>
268310
An object of the form:
269311

270312
{ # A single row in a table.
313+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
271314
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
315+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
272316
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
273317
&quot;a_key&quot;: &quot;&quot;,
274318
},
275319
}</pre>
276320
</div>
277321

278322
<div class="method">
279-
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)</code>
323+
<code class="details" id="list">list(parent, filter=None, pageSize=None, pageToken=None, view=None, x__xgafv=None)</code>
280324
<pre>Lists rows in a table. Returns NOT_FOUND if the table does not exist.
281325

282326
Args:
283327
parent: string, Required. The parent table. Format: tables/{table} (required)
328+
filter: string, Optional. Raw text query to search for in rows of the table. Special characters must be escaped. Logical operators and field specific filtering not supported.
284329
pageSize: integer, The maximum number of rows to return. The service may return fewer than this value. If unspecified, at most 50 rows are returned. The maximum value is 1,000; values above 1,000 are coerced to 1,000.
285330
pageToken: string, A page token, received from a previous `ListRows` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRows` must match the call that provided the page token.
286331
view: string, Optional. Column key to use for values in the row. Defaults to user entered name.
@@ -299,7 +344,9 @@ <h3>Method Details</h3>
299344
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages.
300345
&quot;rows&quot;: [ # The rows from the specified table.
301346
{ # A single row in a table.
347+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
302348
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
349+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
303350
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
304351
&quot;a_key&quot;: &quot;&quot;,
305352
},
@@ -332,7 +379,9 @@ <h3>Method Details</h3>
332379
The object takes the form of:
333380

334381
{ # A single row in a table.
382+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
335383
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
384+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
336385
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
337386
&quot;a_key&quot;: &quot;&quot;,
338387
},
@@ -352,7 +401,9 @@ <h3>Method Details</h3>
352401
An object of the form:
353402

354403
{ # A single row in a table.
404+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the row was created.
355405
&quot;name&quot;: &quot;A String&quot;, # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
406+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the row was last updated.
356407
&quot;values&quot;: { # The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
357408
&quot;a_key&quot;: &quot;&quot;,
358409
},

docs/dyn/area120tables_v1alpha1.workspaces.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ <h3>Method Details</h3>
107107
An object of the form:
108108

109109
{ # A single workspace.
110+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the workspace was created.
110111
&quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the workspace.
111112
&quot;name&quot;: &quot;A String&quot;, # The resource name of the workspace. Workspace names have the form `workspaces/{workspace}`.
112113
&quot;tables&quot;: [ # The list of tables in the workspace.
@@ -131,10 +132,13 @@ <h3>Method Details</h3>
131132
},
132133
},
133134
],
135+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the table was created.
134136
&quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the table.
135137
&quot;name&quot;: &quot;A String&quot;, # The resource name of the table. Table names have the form `tables/{table}`.
138+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the table was last updated excluding updates to individual rows
136139
},
137140
],
141+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the workspace was last updated.
138142
}</pre>
139143
</div>
140144

@@ -157,6 +161,7 @@ <h3>Method Details</h3>
157161
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages.
158162
&quot;workspaces&quot;: [ # The list of workspaces.
159163
{ # A single workspace.
164+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the workspace was created.
160165
&quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the workspace.
161166
&quot;name&quot;: &quot;A String&quot;, # The resource name of the workspace. Workspace names have the form `workspaces/{workspace}`.
162167
&quot;tables&quot;: [ # The list of tables in the workspace.
@@ -181,10 +186,13 @@ <h3>Method Details</h3>
181186
},
182187
},
183188
],
189+
&quot;createTime&quot;: &quot;A String&quot;, # Time when the table was created.
184190
&quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the table.
185191
&quot;name&quot;: &quot;A String&quot;, # The resource name of the table. Table names have the form `tables/{table}`.
192+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the table was last updated excluding updates to individual rows
186193
},
187194
],
195+
&quot;updateTime&quot;: &quot;A String&quot;, # Time when the workspace was last updated.
188196
},
189197
],
190198
}</pre>

0 commit comments

Comments
 (0)