-
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.
[8.15] [DOCS][API] Adds Crowdstrike connector config and secrets; edi…
…ts UI text (#192526) (#192651) # Backport This will backport the following commits from `main` to `8.15`: - [[DOCS][API] Adds Crowdstrike connector config and secrets; edits UI text (#192526)](#192526) NOTE: There are more files in this backport than in the original because we are not using the automated OpenAPI output for connector APIs in this branch. <!--- Backport version: 8.9.8 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Lisa Cawley","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-09-11T22:02:26Z","message":"[DOCS][API] Adds Crowdstrike connector config and secrets; edits UI text (#192526)","sha":"0ce33f842df3e63d971af553e16e68da75a20bc0","branchLabelMapping":{"^v8.16.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","Team:ResponseOps","docs","Feature:Actions/ConnectorTypes","v8.16.0","v8.15.2"],"number":192526,"url":"https://github.com/elastic/kibana/pull/192526","mergeCommit":{"message":"[DOCS][API] Adds Crowdstrike connector config and secrets; edits UI text (#192526)","sha":"0ce33f842df3e63d971af553e16e68da75a20bc0"}},"sourceBranch":"main","suggestedTargetBranches":["8.15"],"targetPullRequestStates":[{"branch":"main","label":"v8.16.0","labelRegex":"^v8.16.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/192526","number":192526,"mergeCommit":{"message":"[DOCS][API] Adds Crowdstrike connector config and secrets; edits UI text (#192526)","sha":"0ce33f842df3e63d971af553e16e68da75a20bc0"}},{"branch":"8.15","label":"v8.15.2","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT-->
- Loading branch information
Showing
6 changed files
with
34 additions
and
10 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions
11
x-pack/plugins/actions/docs/openapi/components/schemas/crowdstrike_config.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,11 @@ | ||
title: Connector request config properties for a Crowdstrike connector | ||
required: | ||
- url | ||
description: Defines config properties for connectors when type is `.crowdstrike`. | ||
type: object | ||
properties: | ||
url: | ||
description: > | ||
The CrowdStrike tenant URL. | ||
If you are using the `xpack.actions.allowedHosts` setting, add the hostname to the allowed hosts. | ||
type: string |
13 changes: 13 additions & 0 deletions
13
x-pack/plugins/actions/docs/openapi/components/schemas/crowdstrike_secrets.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,13 @@ | ||
title: Connector secrets properties for a Crowdstrike connector | ||
description: Defines secrets for connectors when type is `.crowdstrike`. | ||
type: object | ||
required: | ||
- clientId | ||
- clientSecret | ||
properties: | ||
clientId: | ||
description: The CrowdStrike API client identifier. | ||
type: string | ||
clientSecret: | ||
description: The CrowdStrike API client secret to authenticate the `clientId`. | ||
type: string |
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