interfaces/ts/requests/identity.ts
2024-01-24 01:09:21 +01:00

24 lines
605 B
TypeScript

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;
};
}