更新异常项
编辑更新异常项
编辑更新现有的异常项。
请求 URL
编辑PUT <kibana 主机>:<端口>/api/exception_lists/items
请求体
编辑名称 | 类型 | 描述 | 必填 |
---|---|---|---|
|
comments[] |
要追加的评论数组
无法修改评论 - 只能追加。 |
否,默认为空数组。 |
|
字符串 |
描述异常项。 |
是 |
|
包含异常查询的数组。布尔值 |
是 |
|
|
字符串 |
异常项的过期日期,以 ISO 格式表示。此字段仅适用于常规异常项,不适用于端点异常。 |
否 |
|
字符串 |
项目的唯一标识符。 |
是,当项目的 |
|
字符串 |
您正在更新的项目的 |
是,当项目的 |
|
对象 |
异常项元数据的占位符。 |
否 |
|
字符串 |
异常项的名称。 |
是 |
|
字符串 |
确定异常项是在所有 Kibana 空间中可用,还是仅在其创建的空间中可用,其中
|
否,默认为 |
|
字符串[] |
包含单词和短语的字符串数组,有助于对异常项进行分类。 |
否 |
|
字符串 |
异常查询类型,必须为 |
是 |
示例请求
编辑更新 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" }