[[reference-fleet-global_checkpoints]] //////// =========================================================================================================================== || || || || || || || ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ || || ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ || || ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ || || ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ || || ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ || || ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ || || || || || || This file is autogenerated, DO NOT send pull requests that changes this file directly. || || You should update the script that does the generation, which can be found in: || || https://github.com/elastic/elastic-client-generator-js || || || || You can run the script with the following command: || || npm run elasticsearch -- --version || || || || || || || =========================================================================================================================== //////// [discrete] === client.fleet.globalCheckpoints Returns the current global checkpoints for an index. This API is design for internal use by the fleet server project. {ref}/get-global-checkpoints.html[{es} documentation] [discrete] ==== Function signature [source,ts] ---- (FleetGlobalCheckpointsRequest, options?): Promise ---- [discrete] ===== `FleetGlobalCheckpointsRequest` [source,ts] ---- interface FleetGlobalCheckpointsRequest extends <> { index: <> | <> wait_for_advance?: boolean wait_for_index?: boolean checkpoints?: FleetCheckpoint[] timeout?: <> } ---- [discrete] ===== `FleetGlobalCheckpointsResponse` [source,ts] ---- interface FleetGlobalCheckpointsResponse { global_checkpoints: FleetCheckpoint[] timed_out: boolean } ----