import { IDevKnativePkgApisDuckV1SourceStatus } from "../../duck.knative.dev/v1/SourceStatus.js"; import { IDevKnativePkgApisDuckV1Conditions } from "../../duck.knative.dev/v1/Conditions.js"; import { IDevKnativePkgApisDuckV1AuthStatus } from "../../duck.knative.dev/v1/AuthStatus.js"; import { IDevKnativePkgApisDuckV1CloudEventAttributes } from "../../duck.knative.dev/v1/CloudEventAttributes.js"; import { IDevKnativePkgApisURL } from "../../knative.dev/pkg/apis/URL.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * PingSourceStatus defines the observed state of PingSource. */ export interface IPingSourceStatus extends IDevKnativePkgApisDuckV1SourceStatus { } /** * PingSourceStatus defines the observed state of PingSource. */ export declare class PingSourceStatus extends Model implements IPingSourceStatus { "annotations"?: { [key: string]: string; }; "conditions"?: IDevKnativePkgApisDuckV1Conditions; "observedGeneration"?: number; "auth"?: IDevKnativePkgApisDuckV1AuthStatus; "ceAttributes"?: Array; "sinkAudience"?: string; "sinkCACerts"?: string; "sinkUri"?: IDevKnativePkgApisURL; constructor(data?: ModelData); } export type { IPingSourceStatus as IDevKnativeEventingPkgApisSourcesV1PingSourceStatus, PingSourceStatus as DevKnativeEventingPkgApisSourcesV1PingSourceStatus };