import * as plugins from '../plugins.js'; import * as clusterInterfaces from '../data/cluster.js'; // ======== // IDENTITY // ======== /** * get the identity that then will be used to get the config */ export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode extends plugins.typedrequestInterfaces.implementsTR< plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_CoreflowManager_GetIdentityByJumpCode > { method: 'getIdentityByJumpCode'; request: { jumpCode: string; }; response: { clusterIdentifier: clusterInterfaces.IClusterIdentifier; }; }