[[reference-ingest-put_pipeline]] //////// =========================================================================================================================== || || || || || || || ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ || || ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ || || ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ || || ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ || || ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ || || ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ || || || || || || 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.ingest.putPipeline]] === client.ingest.putPipeline Creates or updates an ingest pipeline. Changes made using this API take effect immediately. {ref}/ingest.html[{es} documentation] [discrete] ==== Function signature [source,ts] ---- (IngestPutPipelineRequest, options?): Promise ---- [discrete] ==== IngestPutPipelineRequest [pass] ++++
++++
interface IngestPutPipelineRequest extends <> {
  id: <>
  master_timeout?: <>
  timeout?: <>
  if_version?: <>
  _meta?: <>
  description?: string
  on_failure?: IngestProcessorContainer[]
  processors?: IngestProcessorContainer[]
  version?: <>
  deprecated?: boolean
}

[pass]
++++
++++ [discrete] ==== IngestPutPipelineResponse [pass] ++++
++++
type IngestPutPipelineResponse = <>

[pass]
++++
++++