/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ModelEnum } from './ModelEnum'; import type { AppEnum } from './AppEnum'; import type { EventActions } from './EventActions'; /** * Event Matcher Policy Serializer * @export * @interface EventMatcherPolicyRequest */ export interface EventMatcherPolicyRequest { /** * * @type {string} * @memberof EventMatcherPolicyRequest */ name: string; /** * When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. * @type {boolean} * @memberof EventMatcherPolicyRequest */ executionLogging?: boolean; /** * Match created events with this action type. When left empty, all action types will be matched. * @type {EventActions} * @memberof EventMatcherPolicyRequest */ action?: EventActions | null; /** * Matches Event's Client IP (strict matching, for network matching use an Expression Policy) * @type {string} * @memberof EventMatcherPolicyRequest */ clientIp?: string | null; /** * Match events created by selected application. When left empty, all applications are matched. * @type {AppEnum} * @memberof EventMatcherPolicyRequest */ app?: AppEnum | null; /** * Match events created by selected model. When left empty, all models are matched. When an app is selected, all the application's models are matched. * @type {ModelEnum} * @memberof EventMatcherPolicyRequest */ model?: ModelEnum | null; } /** * Check if a given object implements the EventMatcherPolicyRequest interface. */ export declare function instanceOfEventMatcherPolicyRequest(value: object): value is EventMatcherPolicyRequest; export declare function EventMatcherPolicyRequestFromJSON(json: any): EventMatcherPolicyRequest; export declare function EventMatcherPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventMatcherPolicyRequest; export declare function EventMatcherPolicyRequestToJSON(json: any): EventMatcherPolicyRequest; export declare function EventMatcherPolicyRequestToJSONTyped(value?: EventMatcherPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventMatcherPolicyRequest.d.ts.map