索引模板是否存在 API
编辑索引模板是否存在 API
编辑检查旧版索引模板是否存在。
resp = client.indices.exists_template( name="template_1", ) print(resp)
response = client.indices.exists_template( name: 'template_1' ) puts response
const response = await client.indices.existsTemplate({ name: "template_1", }); console.log(response);
HEAD /_template/template_1
请求
编辑HEAD /_template/<index-template>
路径参数
编辑-
<index-template>
- (必需,字符串)用于限制请求的索引模板名称的逗号分隔列表。支持通配符 (
*
) 表达式。
查询参数
编辑-
flat_settings
- (可选,布尔值)如果为
true
,则以扁平格式返回设置。默认为false
。 -
local
- (可选,布尔值)如果为
true
,则请求仅从本地节点检索信息。默认为false
,这意味着信息是从主节点检索的。 -
master_timeout
- (可选,时间单位)等待主节点的时长。如果在超时到期之前主节点不可用,则请求失败并返回错误。默认为
30s
。也可以设置为-1
表示请求永远不应超时。
响应代码
编辑-
200
- 指示所有指定的索引模板都存在。
-
404
- 指示一个或多个指定的索引模板不存在。