interfaces/ts/requests/status.ts

13 lines
292 B
TypeScript
Raw Normal View History

2024-01-24 00:09:21 +00:00
import * as clusterInterfaces from '../data/cluster.js';
2024-01-23 22:38:10 +00:00
/**
* a status update dashboard
*/
export interface IRequest_Coreflow_Cloudly_CoreflowManagerStatusupdate {
method: 'cloudlyStatus';
request: {
clusterIdentifier: clusterInterfaces.IClusterIdentifier;
};
response: {};
}