[[reference-indices-simulate_template]] //////// =========================================================================================================================== || || || || || || || ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ || || ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ || || ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ || || ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ || || ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ || || ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ || || || || || || 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.indices.simulateTemplate]] === client.indices.simulateTemplate Simulate an index template. Returns the index configuration that would be applied by a particular index template. {ref}/indices-simulate-template.html[{es} documentation] [discrete] ==== Function signature [source,ts] ---- (IndicesSimulateTemplateRequest, options?): Promise ---- [discrete] ==== IndicesSimulateTemplateRequest [pass] ++++
++++
interface IndicesSimulateTemplateRequest extends <> {
  name?: <>
  create?: boolean
  master_timeout?: <>
  include_defaults?: boolean
  allow_auto_create?: boolean
  index_patterns?: <>
  composed_of?: <>[]
  template?: IndicesPutIndexTemplateIndexTemplateMapping
  data_stream?: <>
  priority?: <>
  version?: <>
  _meta?: <>
  ignore_missing_component_templates?: string[]
  deprecated?: boolean
}

[pass]
++++
++++ [discrete] ==== IndicesSimulateTemplateResponse [pass] ++++
++++
interface IndicesSimulateTemplateResponse {
  overlapping?: IndicesSimulateTemplateOverlapping[]
  template: IndicesSimulateTemplateTemplate
}

[pass]
++++
++++