删除连接器同步作业 API
编辑删除连接器同步作业 API
编辑此功能处于测试阶段,可能随时更改。其设计和代码不如正式 GA 功能成熟,按现状提供,不提供任何担保。测试版功能不受正式 GA 功能支持服务水平协议 (SLA) 的约束。
删除连接器同步作业及其关联数据。这是一个不可恢复的破坏性操作。
要开始使用连接器 API,请查看 我们的教程。
请求
编辑DELETE _connector/_sync_job/<connector_sync_job_id>
先决条件
编辑- 要使用自管理连接器同步数据,您需要在自己的基础设施上部署 Elastic 连接器服务。对于 Elastic 托管连接器,此服务会在 Elastic Cloud 上自动运行。
路径参数
编辑-
<connector_sync_job_id>
- (必需,字符串)
响应代码
编辑-
400
- 未提供
connector_sync_job_id
。 -
404
- 找不到与
connector_sync_job_id
匹配的连接器同步作业。
示例
编辑以下示例删除 ID 为 my-connector-sync-job-id
的连接器同步作业。
resp = client.perform_request( "DELETE", "/_connector/_sync_job/my-connector-sync-job-id", ) print(resp)
response = client.connector.sync_job_delete( connector_sync_job_id: 'my-connector-sync-job-id' ) puts response
const response = await client.transport.request({ method: "DELETE", path: "/_connector/_sync_job/my-connector-sync-job-id", }); console.log(response);
DELETE _connector/_sync_job/my-connector-sync-job-id
{ "acknowledged": true }