stopBackfillJob method

Future<StopBackfillJobResponse> stopBackfillJob(
  1. String object, {
  2. String? $fields,
})

Stops the backfill job for the specified stream object.

Request parameters:

object - Required. The name of the stream object resource to stop the backfill job for. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/streams/\[^/\]+/objects/\[^/\]+$.

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

Completes with a StopBackfillJobResponse.

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

  final _url =
      'v1alpha1/' + core.Uri.encodeFull('$object') + ':stopBackfillJob';

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