All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rest-api-spec.api.indices.delete.json Maven / Gradle / Ivy

There is a newer version: 8.16.0
Show newest version
{
  "indices.delete":{
    "documentation":{
      "url":"https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-delete-index.html",
      "description":"Deletes an index."
    },
    "stability":"stable",
    "visibility":"public",
    "headers":{
      "accept": [ "application/json"]
    },
    "url":{
      "paths":[
        {
          "path":"/{index}",
          "methods":[
            "DELETE"
          ],
          "parts":{
            "index":{
              "type":"list",
              "description":"A comma-separated list of indices to delete; use `_all` or `*` string to delete all indices"
            }
          }
        }
      ]
    },
    "params":{
      "timeout":{
        "type":"time",
        "description":"Explicit operation timeout"
      },
      "master_timeout":{
        "type":"time",
        "description":"Specify timeout for connection to master"
      },
      "ignore_unavailable":{
        "type":"boolean",
        "description":"Ignore unavailable indexes (default: false)"
      },
      "allow_no_indices":{
        "type":"boolean",
        "description":"Ignore if a wildcard expression resolves to no concrete indices (default: false)"
      },
      "expand_wildcards":{
        "type":"enum",
        "options":[
          "open",
          "closed",
          "hidden",
          "none",
          "all"
        ],
        "default":"open,closed",
        "description":"Whether wildcard expressions should get expanded to open, closed, or hidden indices"
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy