IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delete snapshot API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Delete snapshot API
editDeletes a snapshot.
resp = client.snapshot.delete(
repository="my_repository",
snapshot="my_snapshot",
)
print(resp)
response = client.snapshot.delete( repository: 'my_repository', snapshot: 'my_snapshot' ) puts response
const response = await client.snapshot.delete({
repository: "my_repository",
snapshot: "my_snapshot",
});
console.log(response);
DELETE /_snapshot/my_repository/my_snapshot
Request
editDELETE /_snapshot/<repository>/<snapshot>
Prerequisites
edit-
If the Elasticsearch security features are enabled, you must have the
managecluster privilege to use this API.
Path parameters
edit-
<repository> - (Required, string) Name of the repository to delete a snapshot from.
-
<snapshot> -
(Required, string)
Comma-separated list of snapshot names to delete. Also accepts wildcards (
*).
Query parameters
edit-
master_timeout -
(Optional, time units)
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. Defaults to
30s. Can also be set to-1to indicate that the request should never timeout. -
wait_for_completion -
(Optional, Boolean) If
true, the request returns a response when the matching snapshots are all deleted. Iffalse, the request returns a response as soon as the deletes are scheduled. Defaults totrue.
Example
editThe following request deletes snapshot_2 and snapshot_3 from the repository named my_repository.
resp = client.snapshot.delete(
repository="my_repository",
snapshot="snapshot_2,snapshot_3",
)
print(resp)
response = client.snapshot.delete( repository: 'my_repository', snapshot: 'snapshot_2,snapshot_3' ) puts response
const response = await client.snapshot.delete({
repository: "my_repository",
snapshot: "snapshot_2,snapshot_3",
});
console.log(response);
DELETE /_snapshot/my_repository/snapshot_2,snapshot_3
The API returns the following response:
{
"acknowledged" : true
}