"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.registerFlushRoute = registerFlushRoute; var _configSchema = require("@kbn/config-schema"); var _ = require(".."); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const bodySchema = _configSchema.schema.object({ indices: _configSchema.schema.arrayOf(_configSchema.schema.string()) }); function registerFlushRoute({ router, lib: { handleEsError } }) { router.post({ path: (0, _.addBasePath)('/indices/flush'), validate: { body: bodySchema } }, async (context, request, response) => { const { client } = (await context.core).elasticsearch; const { indices = [] } = request.body; const params = { expand_wildcards: 'none', format: 'json', index: indices }; try { await client.asCurrentUser.indices.flush(params); return response.ok(); } catch (error) { return handleEsError({ error, response }); } }); }