get method

Future<Row> get(
  1. String name, {
  2. String? view,
  3. String? $fields,
})

Gets a row.

Returns NOT_FOUND if the row does not exist in the table.

Request parameters:

name - Required. The name of the row to retrieve. Format: tables/{table}/rows/{row} Value must have pattern ^tables/\[^/\]+/rows/\[^/\]+$.

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> get(
  core.String name, {
  core.String? view,
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if (view != null) 'view': [view],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1alpha1/' + core.Uri.encodeFull('$name');

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return Row.fromJson(_response as core.Map<core.String, core.dynamic>);
}