@opensearch-project/opensearch
Version:
The official OpenSearch client for Node.js
47 lines (40 loc) • 1.73 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-Observability */
function ObservabilityApi(bindObj) {
this.createObject = require('./createObject').bind(bindObj);
this.deleteObject = require('./deleteObject').bind(bindObj);
this.deleteObjects = require('./deleteObjects').bind(bindObj);
this.getLocalstats = require('./getLocalstats').bind(bindObj);
this.getObject = require('./getObject').bind(bindObj);
this.listObjects = require('./listObjects').bind(bindObj);
this.updateObject = require('./updateObject').bind(bindObj);
// Deprecated: Use createObject instead.
this.create_object = require('./createObject').bind(bindObj);
// Deprecated: Use deleteObject instead.
this.delete_object = require('./deleteObject').bind(bindObj);
// Deprecated: Use deleteObjects instead.
this.delete_objects = require('./deleteObjects').bind(bindObj);
// Deprecated: Use getLocalstats instead.
this.get_localstats = require('./getLocalstats').bind(bindObj);
// Deprecated: Use getObject instead.
this.get_object = require('./getObject').bind(bindObj);
// Deprecated: Use listObjects instead.
this.list_objects = require('./listObjects').bind(bindObj);
// Deprecated: Use updateObject instead.
this.update_object = require('./updateObject').bind(bindObj);
}
module.exports = ObservabilityApi;