調用CreateComponentIndex,創建Elasticsearch組合模板。
詳細信息請參見通過OpenStore實現海量數據存儲。
調試
您可以在OpenAPI Explorer中直接運行該接口,免去您計算簽名的困擾。運行成功后,OpenAPI Explorer可以自動生成SDK代碼示例。
請求頭
該接口使用公共請求頭,無特殊請求頭。請參見公共請求參數文檔。
請求語法
POST /openapi/instances/{InstanceId}/component-index/{name} HTTP/1.1
請求參數
名稱 | 類型 | 位置 | 是否必選 | 示例值 | 描述 |
---|---|---|---|---|---|
InstanceId | String | Path | 是 | es-cn-tl329rbpc0001**** |
實例ID。 |
name | String | Path | 是 | template |
模板名稱。 |
Object | Body | 否 |
請求體信息。 |
||
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 | C20022BA-5382-4339-89FB-30AF48A05431 |
請求ID。 |
Result | Boolean | true |
返回結果:
|
示例
請求示例
POST /openapi/instances/es-cn-tl329rbpc0001****/component-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
{
"Result" : true,
"RequestId" : "C20022BA-5382-4339-89FB-30AF48A05431"
}
錯誤碼
訪問錯誤中心查看更多錯誤碼。