import { ModelData, Model } from "@kubernetes-models/base"; /** * CloudEventOverrides defines arguments for a Source that control the output * format of the CloudEvents produced by the Source. */ export interface ICloudEventOverrides { /** * Extensions specify what attribute are added or overridden on the * outbound event. Each `Extensions` key-value pair are set on the event as * an attribute extension independently. */ "extensions"?: { [key: string]: string; }; } /** * CloudEventOverrides defines arguments for a Source that control the output * format of the CloudEvents produced by the Source. */ export declare class CloudEventOverrides extends Model implements ICloudEventOverrides { "extensions"?: { [key: string]: string; }; constructor(data?: ModelData); } export type { ICloudEventOverrides as IDevKnativePkgApisDuckV1CloudEventOverrides, CloudEventOverrides as DevKnativePkgApisDuckV1CloudEventOverrides };