interfaces/ts/requests/identity.ts

24 lines
628 B
TypeScript
Raw Normal View History

2024-01-23 22:38:10 +00:00
import * as plugins from '../loint-cloudly.plugins.js';
import * as clusterInterfaces from '../loint-cloudly.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;
};
}