You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"parent": "A String", # Required. The parent table where this row will be created. Format: tables/{table}
118
121
"row": { # A single row in a table. # Required. The row to create.
122
+
"createTime": "A String", # Time when the row was created.
119
123
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
124
+
"updateTime": "A String", # Time when the row was last updated.
120
125
"values": { # 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.
121
126
"a_key": "",
122
127
},
@@ -137,7 +142,9 @@ <h3>Method Details</h3>
137
142
{ # Response message for TablesService.BatchCreateRows.
138
143
"rows": [ # The created rows.
139
144
{ # A single row in a table.
145
+
"createTime": "A String", # Time when the row was created.
140
146
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
147
+
"updateTime": "A String", # Time when the row was last updated.
141
148
"values": { # 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.
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
+
"names": [ # 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
+
"A String",
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 `{}`.
"requests": [ # Required. The request messages specifying the rows to update. A maximum of 500 rows can be modified in a single batch.
160
194
{ # Request message for TablesService.UpdateRow.
161
195
"row": { # A single row in a table. # Required. The row to update.
196
+
"createTime": "A String", # Time when the row was created.
162
197
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
198
+
"updateTime": "A String", # Time when the row was last updated.
163
199
"values": { # 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.
164
200
"a_key": "",
165
201
},
@@ -181,7 +217,9 @@ <h3>Method Details</h3>
181
217
{ # Response message for TablesService.BatchUpdateRows.
182
218
"rows": [ # The updated rows.
183
219
{ # A single row in a table.
220
+
"createTime": "A String", # Time when the row was created.
184
221
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
222
+
"updateTime": "A String", # Time when the row was last updated.
185
223
"values": { # 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.
186
224
"a_key": "",
187
225
},
@@ -205,7 +243,9 @@ <h3>Method Details</h3>
205
243
The object takes the form of:
206
244
207
245
{ # A single row in a table.
246
+
"createTime": "A String", # Time when the row was created.
208
247
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
248
+
"updateTime": "A String", # Time when the row was last updated.
209
249
"values": { # 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.
210
250
"a_key": "",
211
251
},
@@ -224,7 +264,9 @@ <h3>Method Details</h3>
224
264
An object of the form:
225
265
226
266
{ # A single row in a table.
267
+
"createTime": "A String", # Time when the row was created.
227
268
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
269
+
"updateTime": "A String", # Time when the row was last updated.
228
270
"values": { # 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.
229
271
"a_key": "",
230
272
},
@@ -268,19 +310,22 @@ <h3>Method Details</h3>
268
310
An object of the form:
269
311
270
312
{ # A single row in a table.
313
+
"createTime": "A String", # Time when the row was created.
271
314
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
315
+
"updateTime": "A String", # Time when the row was last updated.
272
316
"values": { # 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.
<pre>Lists rows in a table. Returns NOT_FOUND if the table does not exist.
281
325
282
326
Args:
283
327
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.
284
329
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.
285
330
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.
286
331
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>
299
344
"nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages.
300
345
"rows": [ # The rows from the specified table.
301
346
{ # A single row in a table.
347
+
"createTime": "A String", # Time when the row was created.
302
348
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
349
+
"updateTime": "A String", # Time when the row was last updated.
303
350
"values": { # 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.
304
351
"a_key": "",
305
352
},
@@ -332,7 +379,9 @@ <h3>Method Details</h3>
332
379
The object takes the form of:
333
380
334
381
{ # A single row in a table.
382
+
"createTime": "A String", # Time when the row was created.
335
383
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
384
+
"updateTime": "A String", # Time when the row was last updated.
336
385
"values": { # 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.
337
386
"a_key": "",
338
387
},
@@ -352,7 +401,9 @@ <h3>Method Details</h3>
352
401
An object of the form:
353
402
354
403
{ # A single row in a table.
404
+
"createTime": "A String", # Time when the row was created.
355
405
"name": "A String", # The resource name of the row. Row names have the form `tables/{table}/rows/{row}`. The name is ignored when creating a row.
406
+
"updateTime": "A String", # Time when the row was last updated.
356
407
"values": { # 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.
Copy file name to clipboardExpand all lines: docs/dyn/area120tables_v1alpha1.workspaces.html
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,7 @@ <h3>Method Details</h3>
107
107
An object of the form:
108
108
109
109
{ # A single workspace.
110
+
"createTime": "A String", # Time when the workspace was created.
110
111
"displayName": "A String", # The human readable title of the workspace.
111
112
"name": "A String", # The resource name of the workspace. Workspace names have the form `workspaces/{workspace}`.
112
113
"tables": [ # The list of tables in the workspace.
@@ -131,10 +132,13 @@ <h3>Method Details</h3>
131
132
},
132
133
},
133
134
],
135
+
"createTime": "A String", # Time when the table was created.
134
136
"displayName": "A String", # The human readable title of the table.
135
137
"name": "A String", # The resource name of the table. Table names have the form `tables/{table}`.
138
+
"updateTime": "A String", # Time when the table was last updated excluding updates to individual rows
136
139
},
137
140
],
141
+
"updateTime": "A String", # Time when the workspace was last updated.
138
142
}</pre>
139
143
</div>
140
144
@@ -157,6 +161,7 @@ <h3>Method Details</h3>
157
161
"nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages.
158
162
"workspaces": [ # The list of workspaces.
159
163
{ # A single workspace.
164
+
"createTime": "A String", # Time when the workspace was created.
160
165
"displayName": "A String", # The human readable title of the workspace.
161
166
"name": "A String", # The resource name of the workspace. Workspace names have the form `workspaces/{workspace}`.
162
167
"tables": [ # The list of tables in the workspace.
@@ -181,10 +186,13 @@ <h3>Method Details</h3>
181
186
},
182
187
},
183
188
],
189
+
"createTime": "A String", # Time when the table was created.
184
190
"displayName": "A String", # The human readable title of the table.
185
191
"name": "A String", # The resource name of the table. Table names have the form `tables/{table}`.
192
+
"updateTime": "A String", # Time when the table was last updated excluding updates to individual rows
186
193
},
187
194
],
195
+
"updateTime": "A String", # Time when the workspace was last updated.
0 commit comments