-
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.
[DOCS] Add specifications for deprecated connector APIs (#149637)
- Loading branch information
Showing
13 changed files
with
1,660 additions
and
22 deletions.
There are no files selected for viewing
520 changes: 514 additions & 6 deletions
520
docs/api-generated/connectors/connector-apis-passthru.asciidoc
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ schema: | |
type: string | ||
in: header | ||
name: kbn-xsrf | ||
description: Cross-site request forgery protection | ||
required: true |
7 changes: 7 additions & 0 deletions
7
x-pack/plugins/actions/docs/openapi/components/parameters/action_id.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,7 @@ | ||
in: path | ||
name: actionId | ||
description: An identifier for the action. | ||
required: true | ||
schema: | ||
type: string | ||
example: c55b6eb0-6bad-11eb-9f3b-611eebc6c3ad |
21 changes: 21 additions & 0 deletions
21
x-pack/plugins/actions/docs/openapi/components/schemas/action_response_properties.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,21 @@ | ||
title: Action response properties | ||
description: The properties vary depending on the action type. | ||
type: object | ||
properties: | ||
actionTypeId: | ||
type: string | ||
config: | ||
type: object | ||
id: | ||
type: string | ||
isDeprecated: | ||
type: boolean | ||
description: Indicates whether the action type is deprecated. | ||
isMissingSecrets: | ||
type: boolean | ||
description: Indicates whether secrets are missing for the action. | ||
isPreconfigured: | ||
type: boolean | ||
description: Indicates whether it is a preconfigured action. | ||
name: | ||
type: string |
Oops, something went wrong.