Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 8.16] [OpenAPI] Edit script language and context APIs #3065

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/overlays/elasticsearch-shared-overlays.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,6 @@ actions:
# S
- name: script
x-displayName: Script
- name: get_script_context
x-displayName: Script - Get contexts
- name: get_script_languages
x-displayName: Script - Get languages
- name: search
x-displayName: Search
- name: search_application
Expand Down
10 changes: 6 additions & 4 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
import { RequestBase } from '@_types/Base'

/**
* Get script contexts.
*
* Get a list of supported script contexts and their methods.
* @rest_spec_name get_script_context
* @availability stack stability=stable
* @doc_tag script
*/
export interface Request extends RequestBase {}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
import { RequestBase } from '@_types/Base'

/**
* Get script languages.
*
* Get a list of available script types, languages, and contexts.
* @rest_spec_name get_script_languages
* @availability stack stability=stable
* @doc_tag script
*/
export interface Request extends RequestBase {}
Loading