@opensearch-project/opensearch
Version:
The official OpenSearch client for Node.js
53 lines (46 loc) • 2.04 kB
JavaScript
/*
* 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-Notifications */
function NotificationsApi(bindObj) {
this.createConfig = require('./createConfig').bind(bindObj);
this.deleteConfig = require('./deleteConfig').bind(bindObj);
this.deleteConfigs = require('./deleteConfigs').bind(bindObj);
this.getConfig = require('./getConfig').bind(bindObj);
this.getConfigs = require('./getConfigs').bind(bindObj);
this.listChannels = require('./listChannels').bind(bindObj);
this.listFeatures = require('./listFeatures').bind(bindObj);
this.sendTest = require('./sendTest').bind(bindObj);
this.updateConfig = require('./updateConfig').bind(bindObj);
// Deprecated: Use createConfig instead.
this.create_config = require('./createConfig').bind(bindObj);
// Deprecated: Use deleteConfig instead.
this.delete_config = require('./deleteConfig').bind(bindObj);
// Deprecated: Use deleteConfigs instead.
this.delete_configs = require('./deleteConfigs').bind(bindObj);
// Deprecated: Use getConfig instead.
this.get_config = require('./getConfig').bind(bindObj);
// Deprecated: Use getConfigs instead.
this.get_configs = require('./getConfigs').bind(bindObj);
// Deprecated: Use listChannels instead.
this.list_channels = require('./listChannels').bind(bindObj);
// Deprecated: Use listFeatures instead.
this.list_features = require('./listFeatures').bind(bindObj);
// Deprecated: Use sendTest instead.
this.send_test = require('./sendTest').bind(bindObj);
// Deprecated: Use updateConfig instead.
this.update_config = require('./updateConfig').bind(bindObj);
}
module.exports = NotificationsApi;