Skip to content

Commit 4c81332

Browse files
committed
Run make contrib
1 parent 64dd485 commit 4c81332

File tree

5 files changed

+230
-10
lines changed

5 files changed

+230
-10
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 224 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/migrate/_types/CreateFrom.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* under the License.
1818
*/
1919

20-
import { Indices } from '@_types/common'
2120
import { IndexSettings } from '@indices/_types/IndexSettings'
2221
import { TypeMapping } from '@_types/mapping/TypeMapping'
2322

@@ -31,4 +30,3 @@ export class CreateFrom {
3130
*/
3231
settings_override?: IndexSettings
3332
}
34-

specification/migrate/create_from/MigrateCreateFromRequest.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
* under the License.
1818
*/
1919

20-
import { MigrateReindex } from '../_types/MigrateReindex'
2120
import { RequestBase } from '@_types/Base'
22-
import { Indices } from '@_types/common'
21+
import { MigrateReindex } from '../_types/MigrateReindex'
2322

2423
/**
2524
* 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.
@@ -33,10 +32,10 @@ import { Indices } from '@_types/common'
3332
export interface Request extends RequestBase {
3433
path_parts: {
3534
/** The source index or data stream name */
36-
source: string,
35+
source: string
3736
/** The destination index or data stream name */
3837
dest: string
39-
},
38+
}
4039
/** @codegen_name create_from */
4140
body: MigrateReindex
4241
}

specification/migrate/reindex/MigrateReindexRequest.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
* under the License.
1818
*/
1919

20-
import { MigrateReindex } from '../_types/MigrateReindex'
2120
import { RequestBase } from '@_types/Base'
22-
import { Indices } from '@_types/common'
21+
import { MigrateReindex } from '../_types/MigrateReindex'
2322

2423
/**
2524
* "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

0 commit comments

Comments
 (0)