UNPKG

@opensearch-project/opensearch

Version:

The official OpenSearch client for Node.js

39 lines (32 loc) 1.27 kB
/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * */ /* * This file was generated from the OpenSearch API Spec. Do NOT edit it * manually. If you want to make changes, either update the spec or * modify the API generator. */ 'use strict'; /** @namespace API-Ingest */ function IngestApi(bindObj) { this.deletePipeline = require('./deletePipeline').bind(bindObj); this.getPipeline = require('./getPipeline').bind(bindObj); this.processorGrok = require('./processorGrok').bind(bindObj); this.putPipeline = require('./putPipeline').bind(bindObj); this.simulate = require('./simulate').bind(bindObj); // Deprecated: Use deletePipeline instead. this.delete_pipeline = require('./deletePipeline').bind(bindObj); // Deprecated: Use getPipeline instead. this.get_pipeline = require('./getPipeline').bind(bindObj); // Deprecated: Use processorGrok instead. this.processor_grok = require('./processorGrok').bind(bindObj); // Deprecated: Use putPipeline instead. this.put_pipeline = require('./putPipeline').bind(bindObj); } module.exports = IngestApi;