deleteEvents method
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>);
}