import { IIoK8sApiBatchV1Job } from "kubernetes-models/batch/v1/Job"; import { ModelData, Model } from "@kubernetes-models/base"; /** * JobSinkSpec defines the desired state of the JobSink. */ export interface IJobSinkSpec { /** * Job to run when an event occur. */ "job"?: IIoK8sApiBatchV1Job; } /** * JobSinkSpec defines the desired state of the JobSink. */ export declare class JobSinkSpec extends Model implements IJobSinkSpec { "job"?: IIoK8sApiBatchV1Job; constructor(data?: ModelData); } export type { IJobSinkSpec as IDevKnativeEventingPkgApisSinksV1alpha1JobSinkSpec, JobSinkSpec as DevKnativeEventingPkgApisSinksV1alpha1JobSinkSpec };