interfaces/ts/requests/status.ts
2024-01-23 23:38:10 +01:00

13 lines
301 B
TypeScript

import * as clusterInterfaces from '../loint-cloudly.cluster.js';
/**
* a status update dashboard
*/
export interface IRequest_Coreflow_Cloudly_CoreflowManagerStatusupdate {
method: 'cloudlyStatus';
request: {
clusterIdentifier: clusterInterfaces.IClusterIdentifier;
};
response: {};
}