import type { IClusterConfig } from '../data/cluster.js'; import * as plugins from '../plugins.js'; export interface IRequest_CreateCluster extends plugins.typedrequestInterfaces.implementsTR< plugins.typedrequestInterfaces.ITypedRequest, IRequest_CreateCluster > { method: 'createCluster'; request: { clusterName: string; }; response: { clusterConfig: IClusterConfig; }; } export interface IRequest_UpdateCluster extends plugins.typedrequestInterfaces.implementsTR< plugins.typedrequestInterfaces.ITypedRequest, IRequest_UpdateCluster > { method: 'updateCluster'; request: { clusterConfig: IClusterConfig; }; response: { clusterConfig: IClusterConfig; }; }