-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/shared_field_picker
- Loading branch information
Showing
20 changed files
with
750 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
x-pack/plugins/cases/docs/openapi/components/examples/get_tags_response.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
summary: A list of tags that are used in cases | ||
value: | ||
[ | ||
"observability", | ||
"security", | ||
"tag 1", | ||
"tag 2" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
x-pack/plugins/cases/docs/openapi/paths/api@cases@tags.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
get: | ||
summary: Aggregates and returns a list of case tags. | ||
description: > | ||
You must have read privileges for the **Cases** feature in the | ||
**Management**, **Observability**, or **Security** section of the Kibana | ||
feature privileges, depending on the owner of the cases you're seeking. | ||
tags: | ||
- cases | ||
- kibana | ||
parameters: | ||
- in: query | ||
name: owner | ||
description: A filter to limit the retrieved case statistics to a specific set of applications. If this parameter is omitted, the response contains tags from all cases that the user has access to read. | ||
schema: | ||
oneOf: | ||
- $ref: '../components/schemas/owners.yaml' | ||
- type: array | ||
items: | ||
$ref: '../components/schemas/owners.yaml' | ||
responses: | ||
'200': | ||
description: Indicates a successful call. | ||
content: | ||
application/json; charset=utf-8: | ||
schema: | ||
type: array | ||
items: | ||
type: string | ||
examples: | ||
getTagsResponse: | ||
$ref: '../components/examples/get_tags_response.yaml' | ||
servers: | ||
- url: https://localhost:5601 | ||
servers: | ||
- url: https://localhost:5601 |
Oops, something went wrong.