diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 961f05ea36..875a737c7d 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -17863,7 +17863,7 @@ "/_migration/reindex/{index}/_cancel": { "post": { "tags": [ - "cancel_reindex" + "migration" ], "summary": "This API cancels a migration reindex attempt for a data stream or index", "operationId": "migrate-cancel-reindex", @@ -17898,7 +17898,7 @@ "/_create_from/{source}/{dest}": { "put": { "tags": [ - "create_from" + "migration" ], "summary": "This API creates a destination from a source index", "description": "It copies the mappings and settings from the source index while allowing request settings and mappings to override the source values.", @@ -17923,7 +17923,7 @@ }, "post": { "tags": [ - "create_from" + "migration" ], "summary": "This API creates a destination from a source index", "description": "It copies the mappings and settings from the source index while allowing request settings and mappings to override the source values.", @@ -17950,7 +17950,7 @@ "/_migration/reindex/{index}/_status": { "get": { "tags": [ - "get_reindex_status" + "migration" ], "summary": "This API returns the status of a migration reindex attempt for a data stream or index", "operationId": "migrate-get-reindex-status", @@ -18033,7 +18033,7 @@ "/_migration/reindex": { "post": { "tags": [ - "reindex" + "migration" ], "summary": "\"This API reindexes all legacy backing indices for a data stream", "description": "It does this in a persistent task. The persistent task id is returned immediately, and the reindexing work is completed in that task", diff --git a/output/schema/schema.json b/output/schema/schema.json index 62f1eea61c..aacb299761 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -10040,7 +10040,7 @@ }, "description": "This API cancels a migration reindex attempt for a data stream or index", "docId": "migrate", - "docTag": "cancel_reindex", + "docTag": "migration", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migrate-data-stream.html", "name": "migrate.cancel_reindex", "request": { @@ -10080,7 +10080,7 @@ }, "description": "This API creates a destination from a source index. It copies the mappings and settings from the source index while allowing request settings and mappings to override the source values.", "docId": "migrate", - "docTag": "create_from", + "docTag": "migration", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migrate-data-stream.html", "name": "migrate.create_from", "request": { @@ -10121,7 +10121,7 @@ }, "description": "This API returns the status of a migration reindex attempt for a data stream or index", "docId": "migrate", - "docTag": "get_reindex_status", + "docTag": "migration", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migrate-data-stream.html", "name": "migrate.get_reindex_status", "request": { @@ -10157,7 +10157,7 @@ }, "description": "\"This API reindexes all legacy backing indices for a data stream. It does this in a persistent task. The persistent task id is returned immediately, and the reindexing work is completed in that task", "docId": "migrate", - "docTag": "reindex", + "docTag": "migration", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/migrate-data-stream.html", "name": "migrate.reindex", "request": { diff --git a/specification/migrate/cancel_reindex/MigrateCancelReindexRequest.ts b/specification/migrate/cancel_reindex/MigrateCancelReindexRequest.ts index 2d75a195fa..a58b77ea9a 100644 --- a/specification/migrate/cancel_reindex/MigrateCancelReindexRequest.ts +++ b/specification/migrate/cancel_reindex/MigrateCancelReindexRequest.ts @@ -27,7 +27,7 @@ import { Indices } from '@_types/common' * @availability stack since=8.18.0 stability=experimental * @availability serverless stability=experimental visibility=private * @doc_id migrate - * @doc_tag cancel_reindex + * @doc_tag migration */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/migrate/create_from/MigrateCreateFromRequest.ts b/specification/migrate/create_from/MigrateCreateFromRequest.ts index f4f7983830..2079f4ba66 100644 --- a/specification/migrate/create_from/MigrateCreateFromRequest.ts +++ b/specification/migrate/create_from/MigrateCreateFromRequest.ts @@ -29,7 +29,7 @@ import { TypeMapping } from '@_types/mapping/TypeMapping' * @availability stack since=8.18.0 stability=experimental * @availability serverless stability=experimental visibility=private * @doc_id migrate - * @doc_tag create_from + * @doc_tag migration */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/migrate/get_reindex_status/MigrateGetReindexStatusRequest.ts b/specification/migrate/get_reindex_status/MigrateGetReindexStatusRequest.ts index c490e71a36..b5396085f4 100644 --- a/specification/migrate/get_reindex_status/MigrateGetReindexStatusRequest.ts +++ b/specification/migrate/get_reindex_status/MigrateGetReindexStatusRequest.ts @@ -27,7 +27,7 @@ import { Indices } from '@_types/common' * @availability stack since=8.18.0 stability=experimental * @availability serverless stability=experimental visibility=private * @doc_id migrate - * @doc_tag get_reindex_status + * @doc_tag migration */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/migrate/reindex/MigrateReindexRequest.ts b/specification/migrate/reindex/MigrateReindexRequest.ts index e3db0d852a..f156a26ffd 100644 --- a/specification/migrate/reindex/MigrateReindexRequest.ts +++ b/specification/migrate/reindex/MigrateReindexRequest.ts @@ -26,7 +26,7 @@ import { IndexName } from '@_types/common' * @rest_spec_name migrate.reindex * @availability stack since=8.18.0 stability=experimental * @doc_id migrate - * @doc_tag reindex + * @doc_tag migration */ export interface Request extends RequestBase { /** @codegen_name reindex */