Argo CD API Client
    Preparing search index...

    Interface ArgoCdEvent

    A Kubernetes event associated with an application or one of its resources.

    interface ArgoCdEvent {
        count?: number;
        firstTimestamp?: string;
        involvedObject?: {
            kind?: string;
            name?: string;
            namespace?: string;
            uid?: string;
        };
        lastTimestamp?: string;
        message?: string;
        reason?: string;
        source?: { component?: string; host?: string };
        type?: string;
    }
    Index

    Properties

    count?: number

    Number of times this event has occurred.

    firstTimestamp?: string

    Timestamp of the first occurrence.

    involvedObject?: {
        kind?: string;
        name?: string;
        namespace?: string;
        uid?: string;
    }

    The Kubernetes object this event refers to.

    lastTimestamp?: string

    Timestamp of the most recent occurrence.

    message?: string

    Human-readable event message.

    reason?: string

    Short machine-readable reason for the event (e.g. "Pulled", "OOMKilling").

    source?: { component?: string; host?: string }

    Component that generated the event.

    type?: string

    Event type: Normal or Warning.