@opensearch-project/opensearch
Version:
The official OpenSearch client for Node.js
49 lines (42 loc) • 1.93 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-Replication */
function ReplicationApi(bindObj) {
this.autofollowStats = require('./autofollowStats').bind(bindObj);
this.createReplicationRule = require('./createReplicationRule').bind(bindObj);
this.deleteReplicationRule = require('./deleteReplicationRule').bind(bindObj);
this.followerStats = require('./followerStats').bind(bindObj);
this.leaderStats = require('./leaderStats').bind(bindObj);
this.pause = require('./pause').bind(bindObj);
this.resume = require('./resume').bind(bindObj);
this.start = require('./start').bind(bindObj);
this.status = require('./status').bind(bindObj);
this.stop = require('./stop').bind(bindObj);
this.updateSettings = require('./updateSettings').bind(bindObj);
// Deprecated: Use autofollowStats instead.
this.autofollow_stats = require('./autofollowStats').bind(bindObj);
// Deprecated: Use createReplicationRule instead.
this.create_replication_rule = require('./createReplicationRule').bind(bindObj);
// Deprecated: Use deleteReplicationRule instead.
this.delete_replication_rule = require('./deleteReplicationRule').bind(bindObj);
// Deprecated: Use followerStats instead.
this.follower_stats = require('./followerStats').bind(bindObj);
// Deprecated: Use leaderStats instead.
this.leader_stats = require('./leaderStats').bind(bindObj);
// Deprecated: Use updateSettings instead.
this.update_settings = require('./updateSettings').bind(bindObj);
}
module.exports = ReplicationApi;