更新异常项目
编辑更新异常项目编辑
更新现有异常项目。
请求 URL编辑
PUT <kibana 主机>:<端口>/api/exception_lists/items
请求主体编辑
名称 | 类型 | 描述 | 必需 |
---|---|---|---|
|
comments[] |
要追加的评论数组
评论无法修改——只能追加。 |
否,默认为空数组。 |
|
字符串 |
描述异常项目。 |
是 |
|
包含异常查询的数组。布尔值 |
是 |
|
|
字符串 |
异常项目的过期日期,以 ISO 格式表示。此字段仅适用于常规异常项目,不适用于端点异常。 |
否 |
|
字符串 |
项目的唯一标识符。 |
是,当项目的 |
|
字符串 |
您要更新的项目的 |
是,当项目的 |
|
对象 |
用于存储有关异常项目的元数据的占位符。 |
否 |
|
字符串 |
异常项目的名称。 |
是 |
|
字符串 |
确定异常项目是在所有 Kibana 空间中可用,还是仅在创建它的空间中可用,其中
|
否,默认为 |
|
String[] |
包含单词和短语的字符串数组,用于帮助对异常项目进行分类。 |
否 |
|
字符串 |
异常查询类型,必须为 |
是 |
示例请求编辑
更新 entries
对象
PUT api/exception_lists/items { "description": "Process allowlist", "entries": [ { "field": "process.name", "operator": "included", "type": "match", "value": "maintenance" }, { "field": "host.name", "operator": "included", "type": "match_any", "value": [ "liv-win-anf", "livw-win-mel", "linux-anfield", "new-host" ] } ], "item_id": "allow-process-on-machines", "name": "Host-process exclusions", "namespace_type": "single", "tags": [ "hosts", "processes" ], "type": "simple" }
响应代码编辑
-
200
- 表示调用成功。
响应有效负载编辑
更新后的对象,包括其更新时间。
示例响应
{ "_tags": [], "comments": [], "created_at": "2020-07-15T06:28:32.457Z", "created_by": "elastic", "description": "Process allowlist", "entries": [ { "field": "process.name", "operator": "included", "type": "match", "value": "maintenance" }, { "field": "host.name", "operator": "included", "type": "match_any", "value": [ "liv-win-anf", "livw-win-mel", "linux-anfield", "new-host" ] } ], "id": "67a70610-c664-11ea-bab5-9d6ae015701b", "item_id": "allow-process-on-machines", "list_id": "allowed-processes", "name": "Host-process exclusions", "namespace_type": "single", "tags": [ "hosts", "processes" ], "tie_breaker_id": "15d7f2eb-7192-4f4b-a803-ad8a4f5efd08", "type": "simple", "updated_at": "2020-07-15T06:28:50.494Z", "updated_by": "elastic" }