The name of the repository to delete a snapshot from.
A comma-separated list of snapshot names to delete.
It also accepts wildcards (*).
The period to wait for the master node.
If the master node is not available before the timeout expires, the request fails and returns an error.
To indicate that the request should never timeout, set it to -1.
If true, the request returns a response when the matching snapshots are all deleted.
If false, the request returns a response as soon as the deletes are scheduled.
DELETE /_snapshot/my_repository/snapshot_2,snapshot_3
resp = client.snapshot.delete(
repository="my_repository",
snapshot="snapshot_2,snapshot_3",
)
const response = await client.snapshot.delete({
repository: "my_repository",
snapshot: "snapshot_2,snapshot_3",
});
response = client.snapshot.delete(
repository: "my_repository",
snapshot: "snapshot_2,snapshot_3"
)
$resp = $client->snapshot()->delete([
"repository" => "my_repository",
"snapshot" => "snapshot_2,snapshot_3",
]);
curl -X DELETE -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_snapshot/my_repository/snapshot_2,snapshot_3"
{
"acknowledged" : true
}