更新连接器索引名称 API

编辑

更新连接器索引名称 API

编辑

此功能处于 beta 测试阶段,可能会发生更改。其设计和代码不如正式 GA 功能成熟,按原样提供,不提供任何担保。Beta 功能不受正式 GA 功能的支持 SLA 约束。

更新连接器的 index_name 字段,指定连接器摄取的数据存储在哪个索引中。

要开始使用连接器 API,请查看我们的教程

请求

编辑

PUT _connector/<connector_id>/_index_name

先决条件

编辑
  • 要使用自托管连接器同步数据,您需要部署Elastic 连接器服务。在您自己的基础设施上。此服务在 Elastic Cloud 上为 Elastic 托管连接器自动运行。
  • connector_id 参数应引用现有连接器。

路径参数

编辑
<connector_id>
(必需,字符串)

请求正文

编辑
index_name
(必需,字符串)连接器摄取数据的索引名称。每个索引名称最多可以与一个连接器关联。

响应代码

编辑
200
连接器的 index_name 字段已成功更新。
400
未提供 connector_id 或请求负载格式错误。
404(缺少资源)
找不到与 connector_id 匹配的连接器。

示例

编辑

以下示例更新 ID 为 my-connector 的连接器的 index_name 字段

resp = client.connector.update_index_name(
    connector_id="my-connector",
    index_name="data-from-my-google-drive",
)
print(resp)
response = client.connector.update_index_name(
  connector_id: 'my-connector',
  body: {
    index_name: 'data-from-my-google-drive'
  }
)
puts response
const response = await client.connector.updateIndexName({
  connector_id: "my-connector",
  index_name: "data-from-my-google-drive",
});
console.log(response);
PUT _connector/my-connector/_index_name
{
    "index_name": "data-from-my-google-drive"
}
{
    "result": "updated"
}