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

[8.x] [DOCS] Edit migration summaries (#3298) #3320

Merged
merged 1 commit into from
Dec 17, 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
12 changes: 8 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.

29 changes: 20 additions & 9 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 @@ -21,8 +21,13 @@ import { RequestBase } from '@_types/Base'
import { IndexName } from '@_types/common'

/**
* Get deprecation information.
* Get information about different cluster, node, and index level settings that use deprecated features that will be removed or changed in the next major version.
*
* TIP: This APIs is designed for indirect use by the Upgrade Assistant. We strongly recommend you use the Upgrade Assistant.
* @rest_spec_name migration.deprecations
* @availability stack since=6.1.0 stability=stable
* @cluster_privileges manage
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,15 @@
import { RequestBase } from '@_types/Base'

/**
* Get feature migration information.
* Version upgrades sometimes require changes to how features store configuration information and data in system indices.
* Check which features need to be migrated and the status of any migrations that are in progress.
*
* TIP: This API is designed for indirect use by the Upgrade Assistant.
* We strongly recommend you use the Upgrade Assistant.
* @rest_spec_name migration.get_feature_upgrade_status
* @availability stack since=7.16.0 stability=stable
* @index_privileges manage
* @cluster_privileges manage
*/
export interface Request extends RequestBase {}
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,16 @@
import { RequestBase } from '@_types/Base'

/**
* Start the feature migration.
* Version upgrades sometimes require changes to how features store configuration information and data in system indices.
* This API starts the automatic migration process.
*
* Some functionality might be temporarily unavailable during the migration process.
*
* TIP: The API is designed for indirect use by the Upgrade Assistant. We strongly recommend you use the Upgrade Assistant.
* @rest_spec_name migration.post_feature_upgrade
* @availability stack since=7.16.0 stability=stable
* @index_privileges manage
* @cluster_privileges manage
*/
export interface Request extends RequestBase {}
Loading