patch method
Updates a row.
request
- The metadata request object.
Request parameters:
name
- The resource name of the row. Row names have the form
tables/{table}/rows/{row}
. The name is ignored when creating a row.
Value must have pattern ^tables/\[^/\]+/rows/\[^/\]+$
.
updateMask
- The list of fields to update.
view
- Optional. Column key to use for values in the row. Defaults to
user entered name.
Possible string values are:
- "VIEW_UNSPECIFIED" : Defaults to user entered text.
- "COLUMN_ID_VIEW" : Uses internally generated column id to identify values.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Row.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Row> patch(
Row request,
core.String name, {
core.String? updateMask,
core.String? view,
core.String? $fields,
}) async {
final _body = convert.json.encode(request.toJson());
final _queryParams = <core.String, core.List<core.String>>{
if (updateMask != null) 'updateMask': [updateMask],
if (view != null) 'view': [view],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1alpha1/' + core.Uri.encodeFull('$name');
final _response = await _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
);
return Row.fromJson(_response as core.Map<core.String, core.dynamic>);
}