![JAR search and dependency download from the Maven repository](/logo.png)
rest-api-spec.api.indices.simulate_index_template.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
{
"indices.simulate_index_template":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-simulate-index.html",
"description": "Simulate matching the given index name against the index templates in the system"
},
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"],
"content_type": ["application/json"]
},
"url":{
"paths":[
{
"path":"/_index_template/_simulate_index/{name}",
"methods":[
"POST"
],
"parts":{
"name":{
"type":"string",
"description":"The name of the index (it must be a concrete index name)"
}
}
}
]
},
"params":{
"create":{
"type":"boolean",
"description":"Whether the index template we optionally defined in the body should only be dry-run added if new or can also replace an existing one",
"default":false
},
"cause":{
"type":"string",
"description":"User defined reason for dry-run creating the new template for simulation purposes",
"default":false
},
"master_timeout":{
"type":"time",
"description":"Specify timeout for connection to master"
},
"include_defaults":{
"type":"boolean",
"description":"Return all relevant default configurations for this index template simulation (default: false)"
}
},
"body":{
"description":"New index template definition, which will be included in the simulation, as if it already exists in the system",
"required":false
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy