调用UpdateComponentIndex,更新Elasticsearch的组合模板。
详细信息请参见通过OpenStore实现海量数据存储。
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
请求头
该接口使用公共请求头,无特殊请求头。请参见公共请求参数文档。
请求语法
PUT /openapi/instances/{InstanceId}/component-index/{name} HTTP/1.1
请求参数
名称 | 类型 | 位置 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|---|
InstanceId | String | Path | 是 | es-cn-t57p81n7ai89v**** |
实例ID。 |
name | String | Path | 是 | component-openstore-index-template |
模板名称。 |
Object | Body | 否 |
RequestBody参数。 |
||
template | Object | Body | 否 |
组合模板信息。 |
|
settings | Map | Body | 否 | { "index.number_of_replicas": 0 } |
模板settings配置。 |
mappings | Map | Body | 否 | { "properties": { "@timestamp": { "type": "date" } } } |
模板mappings配置。 |
aliases | Map | Body | 否 | {} |
模板别名配置。 |
_meta | Map | Body | 否 | { "description": "set number of shards to one" } |
元数据,用于存储备注等信息。 |
返回数据
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
requestId | String | F99407AB-2FA9-489E-A259-40CF6DCC47D9 |
请求ID。 |
示例
请求示例
PUT /openapi/instances/es-cn-t57p81n7ai89v****/component-index/component-openstore-index-template HTTP/1.1
Host:elasticsearch.aliyuncs.com
Content-Type:application/json
{
"template": {
"settings": {
"index.number_of_replicas": 0
},
"mappings": {
"properties": {
"@timestamp": {
"type": "date"
}
}
},
"aliases": {}
},
"_meta": {
"description": "set number of shards to one"
}
}
正常返回示例
JSON
格式
HTTP/1.1 200 OK
Content-Type:application/json
{
"RequestId" : "F99407AB-2FA9-489E-A259-40CF6DCC47D9"
}
错误码
访问错误中心查看更多错误码。