import { IDevKnativePkgApisDuckV1Status } from "../../duck.knative.dev/v1/Status.js"; import { IDevKnativePkgApisDuckV1Conditions } from "../../duck.knative.dev/v1/Conditions.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * EventPolicyStatus represents the current state of a EventPolicy. */ export interface IEventPolicyStatus extends IDevKnativePkgApisDuckV1Status { /** * From is the list of resolved oidc identities from .spec.from */ "from"?: Array; } /** * EventPolicyStatus represents the current state of a EventPolicy. */ export declare class EventPolicyStatus extends Model implements IEventPolicyStatus { "annotations"?: { [key: string]: string; }; "conditions"?: IDevKnativePkgApisDuckV1Conditions; "observedGeneration"?: number; "from"?: Array; constructor(data?: ModelData); } export type { IEventPolicyStatus as IDevKnativeEventingPkgApisEventingV1alpha1EventPolicyStatus, EventPolicyStatus as DevKnativeEventingPkgApisEventingV1alpha1EventPolicyStatus };