Argo CD API Client
    Preparing search index...

    Interface ArgoCdApplicationWaitRequest

    Request body for wait() — waits until the application reaches a desired state.

    interface ArgoCdApplicationWaitRequest {
        health?: boolean;
        operation?: boolean;
        resources?: {
            group?: string;
            kind?: string;
            name?: string;
            namespace?: string;
        }[];
        suspended?: boolean;
        timeout?: string;
    }
    Index

    Properties

    health?: boolean

    Wait until health status is not Progressing.

    operation?: boolean

    Wait until no active operation is running.

    resources?: { group?: string; kind?: string; name?: string; namespace?: string }[]

    Specific resources to wait for (filters the wait scope).

    suspended?: boolean

    Wait until the app is not suspended.

    timeout?: string

    Maximum time to wait as a Go duration string (e.g. "60s", "5m").