调用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

返回结果:

  • true:创建成功
  • false:创建失败

示例

请求示例

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"
}

错误码

访问错误中心查看更多错误码。