// This file is autogenerated, DO NOT EDIT // Use `node scripts/generate-docs-examples.js` to generate the docs examples [source, js] ---- const response = await client.indices.getSettings({ index: "my-index-000001,my-index-000002", }); console.log(response); const response1 = await client.indices.getSettings({ index: "_all", }); console.log(response1); const response2 = await client.indices.getSettings({ index: "log_2099_*", }); console.log(response2); ----