delete method
Deletes a snapshot.
Request parameters:
projectId - The ID of the Cloud Platform project that the snapshot
belongs to.
location - The location that contains this snapshot.
snapshotId - The ID of the snapshot.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a DeleteSnapshotResponse.
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<DeleteSnapshotResponse> delete(
  core.String projectId,
  core.String location,
  core.String snapshotId, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };
  final url_ = 'v1b3/projects/' +
      commons.escapeVariable('$projectId') +
      '/locations/' +
      commons.escapeVariable('$location') +
      '/snapshots/' +
      commons.escapeVariable('$snapshotId');
  final response_ = await _requester.request(
    url_,
    'DELETE',
    queryParams: queryParams_,
  );
  return DeleteSnapshotResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}