deleteSnapshots 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> deleteSnapshots(
core.String projectId, {
core.String? location,
core.String? snapshotId,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (location != null) 'location': [location],
if (snapshotId != null) 'snapshotId': [snapshotId],
if ($fields != null) 'fields': [$fields],
};
final _url =
'v1b3/projects/' + commons.escapeVariable('$projectId') + '/snapshots';
final _response = await _requester.request(
_url,
'DELETE',
queryParams: _queryParams,
);
return DeleteSnapshotResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}