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.x] [OpenAPI] Edit search application summaries #2946

Merged
merged 1 commit into from
Sep 27, 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
20 changes: 12 additions & 8 deletions output/openapi/elasticsearch-openapi.json

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

20 changes: 12 additions & 8 deletions output/openapi/elasticsearch-serverless-openapi.json

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

34 changes: 17 additions & 17 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,8 @@ import { RequestBase } from '@_types/Base'
import { Name } from '@_types/common'

/**
* Deletes a search application.
* Delete a search application.
* Remove a search application and its associated alias. Indices attached to the search application are not removed.
* @rest_spec_name search_application.delete
* @availability stack since=8.8.0 stability=beta
* @availability serverless stability=beta visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { Name } from '@_types/common'

/**
* Delete a behavioral analytics collection.
* The associated data stream is also deleted.
* @rest_spec_name search_application.delete_behavioral_analytics
* @availability stack since=8.8.0 stability=experimental
* @availability serverless stability=experimental visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { RequestBase } from '@_types/Base'
import { Name } from '@_types/common'

/**
* Returns the details about a search application
* Get search application details.
* @rest_spec_name search_application.get
* @availability stack since=8.8.0 stability=beta
* @availability serverless stability=beta visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { RequestBase } from '@_types/Base'
import { Name } from '@_types/common'

/**
* Returns the existing behavioral analytics collections.
* Get behavioral analytics collections.
* @rest_spec_name search_application.get_behavioral_analytics
* @availability stack since=8.8.0 stability=experimental
* @availability serverless stability=experimental visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Name } from '@_types/common'
import { SearchApplication } from '../_types/SearchApplication'

/**
* Creates or updates a search application.
* Create or update a search application.
* @rest_spec_name search_application.put
* @availability stack since=8.8.0 stability=beta
* @availability serverless stability=beta visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { RequestBase } from '@_types/Base'
import { Name } from '@_types/common'

/**
* Creates a behavioral analytics collection.
* Create a behavioral analytics collection.
* @rest_spec_name search_application.put_behavioral_analytics
* @availability stack since=8.8.0 stability=experimental
* @availability serverless stability=experimental visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ import { RequestBase } from '@_types/Base'
import { Name } from '@_types/common'

/**
* Perform a search against a search application.
* Run a search application search.
* Generate and run an Elasticsearch query that uses the specified query parameteter and the search template associated with the search application or default template.
* Unspecified template parameters are assigned their default values if applicable.
* @rest_spec_name search_application.search
* @availability stack since=8.8.0 stability=beta
* @availability serverless stability=beta visibility=public
Expand Down
Loading