NeahNew/node_modules/@keycloak/keycloak-admin-client/lib/resources/attackDetection.d.ts
2025-05-03 15:36:20 +02:00

21 lines
767 B
TypeScript

import Resource from "./resource.js";
import type KeycloakAdminClient from "../index.js";
export declare class AttackDetection extends Resource<{
realm?: string;
}> {
findOne: (payload?: ({
id: string;
} & {
realm?: string;
}) | undefined, options?: Pick<import("./agent.js").RequestArgs, "catchNotFound">) => Promise<Record<string, any> | undefined>;
del: (payload?: ({
id: string;
} & {
realm?: string;
}) | undefined, options?: Pick<import("./agent.js").RequestArgs, "catchNotFound">) => Promise<void>;
delAll: (payload?: {
realm?: string;
} | undefined, options?: Pick<import("./agent.js").RequestArgs, "catchNotFound">) => Promise<void>;
constructor(client: KeycloakAdminClient);
}