@hpcc-js/comms
Version:
hpcc-js - Communications
83 lines • 4.96 kB
JavaScript
import { __extends } from "tslib";
import { Service } from "../../../../espConnection";
export var WsTopology;
(function (WsTopology) {
var RoxieQueueFilter;
(function (RoxieQueueFilter) {
RoxieQueueFilter["All"] = "All";
RoxieQueueFilter["QueriesOnly"] = "QueriesOnly";
RoxieQueueFilter["WorkunitsOnly"] = "WorkunitsOnly";
})(RoxieQueueFilter = WsTopology.RoxieQueueFilter || (WsTopology.RoxieQueueFilter = {}));
})(WsTopology || (WsTopology = {}));
var TopologyServiceBase = /** @class */ (function (_super) {
__extends(TopologyServiceBase, _super);
function TopologyServiceBase(optsConnection) {
return _super.call(this, optsConnection, "WsTopology", "1.32") || this;
}
TopologyServiceBase.prototype.Ping = function (request) {
return this._connection.send("Ping", request, "json", false, undefined, "WsTopologyPingResponse");
};
TopologyServiceBase.prototype.SystemLog = function (request) {
return this._connection.send("SystemLog", request, "json", false, undefined, "SystemLogResponse");
};
TopologyServiceBase.prototype.TpClusterInfo = function (request) {
return this._connection.send("TpClusterInfo", request, "json", false, undefined, "TpClusterInfoResponse");
};
TopologyServiceBase.prototype.TpClusterQuery = function (request) {
return this._connection.send("TpClusterQuery", request, "json", false, undefined, "TpClusterQueryResponse");
};
TopologyServiceBase.prototype.TpDropZoneQuery = function (request) {
return this._connection.send("TpDropZoneQuery", request, "json", false, undefined, "TpDropZoneQueryResponse");
};
TopologyServiceBase.prototype.TpGetComponentFile = function (request) {
return this._connection.send("TpGetComponentFile", request, "json", false, undefined, "TpGetComponentFileResponse");
};
TopologyServiceBase.prototype.TpGetServicePlugins = function (request) {
return this._connection.send("TpGetServicePlugins", request, "json", false, undefined, "TpGetServicePluginsResponse");
};
TopologyServiceBase.prototype.TpGroupQuery = function (request) {
return this._connection.send("TpGroupQuery", request, "json", false, undefined, "TpGroupQueryResponse");
};
TopologyServiceBase.prototype.TpListLogFiles = function (request) {
return this._connection.send("TpListLogFiles", request, "json", false, undefined, "TpListLogFilesResponse");
};
TopologyServiceBase.prototype.TpListTargetClusters = function (request) {
return this._connection.send("TpListTargetClusters", request, "json", false, undefined, "TpListTargetClustersResponse");
};
TopologyServiceBase.prototype.TpLogFile = function (request) {
return this._connection.send("TpLogFile", request, "json", false, undefined, "TpLogFileResponse");
};
TopologyServiceBase.prototype.TpLogFileDisplay = function (request) {
return this._connection.send("TpLogFileDisplay", request, "json", false, undefined, "TpLogFileResponse");
};
TopologyServiceBase.prototype.TpLogicalClusterQuery = function (request) {
return this._connection.send("TpLogicalClusterQuery", request, "json", false, undefined, "TpLogicalClusterQueryResponse");
};
TopologyServiceBase.prototype.TpMachineInfo = function (request) {
return this._connection.send("TpMachineInfo", request, "json", false, undefined, "TpMachineInfoResponse");
};
TopologyServiceBase.prototype.TpMachineQuery = function (request) {
return this._connection.send("TpMachineQuery", request, "json", false, undefined, "TpMachineQueryResponse");
};
TopologyServiceBase.prototype.TpServiceQuery = function (request) {
return this._connection.send("TpServiceQuery", request, "json", false, undefined, "TpServiceQueryResponse");
};
TopologyServiceBase.prototype.TpSetMachineStatus = function (request) {
return this._connection.send("TpSetMachineStatus", request, "json", false, undefined, "TpSetMachineStatusResponse");
};
TopologyServiceBase.prototype.TpSwapNode = function (request) {
return this._connection.send("TpSwapNode", request, "json", false, undefined, "TpSwapNodeResponse");
};
TopologyServiceBase.prototype.TpTargetClusterQuery = function (request) {
return this._connection.send("TpTargetClusterQuery", request, "json", false, undefined, "TpTargetClusterQueryResponse");
};
TopologyServiceBase.prototype.TpThorStatus = function (request) {
return this._connection.send("TpThorStatus", request, "json", false, undefined, "TpThorStatusResponse");
};
TopologyServiceBase.prototype.TpXMLFile = function (request) {
return this._connection.send("TpXMLFile", request, "json", false, undefined, "TpXMLFileResponse");
};
return TopologyServiceBase;
}(Service));
export { TopologyServiceBase };
//# sourceMappingURL=WsTopology.js.map