get method

Future<Operation> get(
  1. String project,
  2. String operation, {
  3. String? $fields,
})

Retrieves an instance operation that has been performed on an instance.

Request parameters:

project - Project ID of the project that contains the instance.

operation - Instance operation ID.

$fields - Selector specifying which fields to include in a partial response.

Completes with a Operation.

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

  final _url = 'sql/v1beta4/projects/' +
      commons.escapeVariable('$project') +
      '/operations/' +
      commons.escapeVariable('$operation');

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