更新连接器服务类型 API

编辑

更新连接器服务类型 API

编辑

此功能为 Beta 版,可能会发生更改。其设计和代码不如正式 GA 功能成熟,且按“原样”提供,不提供任何保证。Beta 版功能不受官方 GA 功能的支持 SLA 约束。

更新连接器的 service_type

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

请求

编辑

PUT _connector/<connector_id>/_service_type

先决条件

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

    • 当您更改已配置连接器的 service_type 时,您还需要重置其配置以确保兼容性。

路径参数

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

请求正文

编辑
service_type
(必需,字符串)连接器框架中定义的连接器服务类型。

响应代码

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

示例

编辑

以下示例更新 ID 为 my-connector 的连接器的 service_type

resp = client.connector.update_service_type(
    connector_id="my-connector",
    service_type="sharepoint_online",
)
print(resp)
response = client.connector.update_service_type(
  connector_id: 'my-connector',
  body: {
    service_type: 'sharepoint_online'
  }
)
puts response
const response = await client.connector.updateServiceType({
  connector_id: "my-connector",
  service_type: "sharepoint_online",
});
console.log(response);
PUT _connector/my-connector/_service_type
{
    "service_type": "sharepoint_online"
}
{
    "result": "updated"
}