2026-03-14 23:56:02 +00:00
|
|
|
import * as plugins from '../plugins.ts';
|
|
|
|
|
import * as data from '../data/index.ts';
|
|
|
|
|
|
2026-04-30 07:10:21 +00:00
|
|
|
export interface IReq_GetServerStatus extends
|
|
|
|
|
plugins.typedrequestInterfaces.implementsTR<
|
|
|
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
|
|
|
IReq_GetServerStatus
|
|
|
|
|
> {
|
2026-03-14 23:56:02 +00:00
|
|
|
method: 'getServerStatus';
|
|
|
|
|
request: {
|
|
|
|
|
identity: data.IIdentity;
|
|
|
|
|
};
|
|
|
|
|
response: {
|
|
|
|
|
status: data.IServerStatus;
|
|
|
|
|
connectionInfo: data.IConnectionInfo;
|
|
|
|
|
};
|
|
|
|
|
}
|
2026-04-30 07:10:21 +00:00
|
|
|
|
|
|
|
|
export interface IReq_GetClusterHealth extends
|
|
|
|
|
plugins.typedrequestInterfaces.implementsTR<
|
|
|
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
|
|
|
IReq_GetClusterHealth
|
|
|
|
|
> {
|
|
|
|
|
method: 'getClusterHealth';
|
|
|
|
|
request: {
|
|
|
|
|
identity: data.IIdentity;
|
|
|
|
|
};
|
|
|
|
|
response: {
|
|
|
|
|
clusterHealth: data.IClusterHealth;
|
|
|
|
|
};
|
|
|
|
|
}
|