summaryrefslogtreecommitdiff
path: root/rest-api-spec/api/snapshot.delete.json
blob: de004b2a8759f8badaf832ba15b361ebadc1098b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  "snapshot.delete": {
    "documentation": "http://www.elasticsearch.org/guide/en/elasticsearch/reference/1.x/modules-snapshots.html",
    "methods": ["DELETE"],
    "url": {
      "path": "/_snapshot/{repository}/{snapshot}",
      "paths": ["/_snapshot/{repository}/{snapshot}"],
      "parts": {
        "repository": {
          "type": "string",
          "required" : true,
          "description": "A repository name"
        },
        "snapshot": {
          "type": "string",
          "required" : true,
          "description": "A snapshot name"
        }
      },
      "params": {
        "master_timeout": {
          "type" : "time",
          "description" : "Explicit operation timeout for connection to master node"
        }
      }
    },
    "body": null
  }
}