import { IDevKnativeEventingPkgApisDuckV1ChannelableStatus } from "../../duck.knative.dev/v1/ChannelableStatus.js"; import { IDevKnativePkgApisDuckV1Conditions } from "../../duck.knative.dev/v1/Conditions.js"; import { IDevKnativePkgApisDuckV1Addressable } from "../../duck.knative.dev/v1/Addressable.js"; import { IDevKnativeEventingPkgApisDuckV1SubscriberStatus } from "../../duck.knative.dev/v1/SubscriberStatus.js"; import { IDevKnativePkgApisURL } from "../../knative.dev/pkg/apis/URL.js"; import { IDevKnativeEventingPkgApisDuckV1AppliedEventPolicyRef } from "../../duck.knative.dev/v1/AppliedEventPolicyRef.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * ChannelStatus represents the current state of a Channel. */ export interface IInMemoryChannelStatus extends IDevKnativeEventingPkgApisDuckV1ChannelableStatus { } /** * ChannelStatus represents the current state of a Channel. */ export declare class InMemoryChannelStatus extends Model implements IInMemoryChannelStatus { "annotations"?: { [key: string]: string; }; "conditions"?: IDevKnativePkgApisDuckV1Conditions; "observedGeneration"?: number; "address"?: IDevKnativePkgApisDuckV1Addressable; "addresses"?: Array; "subscribers"?: Array; "deadLetterSinkAudience"?: string; "deadLetterSinkCACerts"?: string; "deadLetterSinkUri"?: IDevKnativePkgApisURL; "policies"?: Array; constructor(data?: ModelData); } export type { IInMemoryChannelStatus as IDevKnativeEventingPkgApisMessagingV1InMemoryChannelStatus, InMemoryChannelStatus as DevKnativeEventingPkgApisMessagingV1InMemoryChannelStatus };