deleteEvents method

Future<DeleteEventsResponse> deleteEvents(
  1. String projectName, {
  2. String? $fields,
})

Deletes all error events of a given project.

Request parameters:

projectName - Required. The resource name of the Google Cloud Platform project. Written as projects/{projectID}, where {projectID} is the Google Cloud Platform project ID. Example: projects/my-project-123. Value must have pattern ^projects/\[^/\]+$.

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

Completes with a DeleteEventsResponse.

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

  final _url = 'v1beta1/' + core.Uri.encodeFull('$projectName') + '/events';

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