Skip to content

Commit

Permalink
[Security Solution] Add a missing domain tag to Endpoint Exceptions A…
Browse files Browse the repository at this point in the history
…PI (#193019)

**Addresses:** #183375

## Summary

This PR adds a missing domain tag to Endpoint Exceptions API. The rest API endpoints got their tags in #189621.
  • Loading branch information
maximpn authored Sep 19, 2024
1 parent 067d949 commit 09374ad
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Create an endpoint exception list
tags:
- Security Solution Endpoint Exceptions API
/api/endpoint_list/items:
delete:
description: >-
Expand Down Expand Up @@ -111,6 +113,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Delete an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
get:
description: >-
Get the details of an endpoint exception list item using the `id` or
Expand Down Expand Up @@ -171,6 +175,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Get an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
post:
description: >-
Create an endpoint exception list item, and associate it with the
Expand Down Expand Up @@ -250,6 +256,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Create an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
put:
description: >-
Update an endpoint exception list item using the `id` or `item_id`
Expand Down Expand Up @@ -334,6 +342,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Update an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
/api/endpoint_list/items/_find:
get:
description: Get a list of all endpoint exception list items.
Expand Down Expand Up @@ -439,6 +449,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Get endpoint exception list items
tags:
- Security Solution Endpoint Exceptions API
components:
schemas:
EndpointList:
Expand Down Expand Up @@ -867,3 +879,9 @@ components:
type: http
security:
- BasicAuth: []
tags:
- description: >-
Endpoint Exceptions API allows you to manage detection rule endpoint
exceptions to prevent a rule from generating an alert from incoming events
even when the rule's other criteria are met.
name: Security Solution Endpoint Exceptions API
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Create an endpoint exception list
tags:
- Security Solution Endpoint Exceptions API
/api/endpoint_list/items:
delete:
description: >-
Expand Down Expand Up @@ -111,6 +113,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Delete an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
get:
description: >-
Get the details of an endpoint exception list item using the `id` or
Expand Down Expand Up @@ -171,6 +175,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Get an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
post:
description: >-
Create an endpoint exception list item, and associate it with the
Expand Down Expand Up @@ -250,6 +256,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Create an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
put:
description: >-
Update an endpoint exception list item using the `id` or `item_id`
Expand Down Expand Up @@ -334,6 +342,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Update an endpoint exception list item
tags:
- Security Solution Endpoint Exceptions API
/api/endpoint_list/items/_find:
get:
description: Get a list of all endpoint exception list items.
Expand Down Expand Up @@ -439,6 +449,8 @@ paths:
$ref: '#/components/schemas/SiemErrorResponse'
description: Internal server error
summary: Get endpoint exception list items
tags:
- Security Solution Endpoint Exceptions API
components:
schemas:
EndpointList:
Expand Down Expand Up @@ -867,3 +879,9 @@ components:
type: http
security:
- BasicAuth: []
tags:
- description: >-
Endpoint Exceptions API allows you to manage detection rule endpoint
exceptions to prevent a rule from generating an alert from incoming events
even when the rule's other criteria are met.
name: Security Solution Endpoint Exceptions API
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ const ROOT = resolve(__dirname, '..');
title: 'Security Solution Endpoint Exceptions API (Elastic Cloud Serverless)',
description: 'Endpoint Exceptions API allow you to manage Endpoint lists.',
},
tags: [
{
name: 'Security Solution Endpoint Exceptions API',
description:
"Endpoint Exceptions API allows you to manage detection rule endpoint exceptions to prevent a rule from generating an alert from incoming events even when the rule's other criteria are met.",
},
],
},
},
});
Expand All @@ -44,6 +51,13 @@ const ROOT = resolve(__dirname, '..');
title: 'Security Solution Endpoint Exceptions API (Elastic Cloud and self-hosted)',
description: 'Endpoint Exceptions API allow you to manage Endpoint lists.',
},
tags: [
{
name: 'Security Solution Endpoint Exceptions API',
description:
"Endpoint Exceptions API allows you to manage detection rule endpoint exceptions to prevent a rule from generating an alert from incoming events even when the rule's other criteria are met.",
},
],
},
},
});
Expand Down

0 comments on commit 09374ad

Please sign in to comment.