[[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]] === 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] ==== Request [pass] ++++
++++
interface FleetGlobalCheckpointsRequest extends <> {
  index: <> | <>
  wait_for_advance?: boolean
  wait_for_index?: boolean
  checkpoints?: <>[]
  timeout?: <>
}

[pass]
++++
++++ [discrete] ==== Response [pass] ++++
++++
interface FleetGlobalCheckpointsResponse {
  global_checkpoints: <>[]
  timed_out: boolean
}

[pass]
++++
++++