Argo CD API Client
    Preparing search index...

    Interface ArgoCdDeleteResourceParams

    Query parameters for deleteResource() — deletes one managed Kubernetes resource.

    interface ArgoCdDeleteResourceParams {
        appNamespace?: string;
        force?: boolean;
        group?: string;
        kind?: string;
        namespace?: string;
        orphan?: boolean;
        recurse?: boolean;
        resourceName?: string;
        version?: string;
        [key: string]: QueryValue | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    appNamespace?: string

    Application namespace for multi-namespace installs.

    force?: boolean

    When true, force-delete even if the resource is stuck terminating.

    group?: string

    API group of the resource (e.g. apps, empty for core resources).

    kind?: string

    Kubernetes kind (e.g. Deployment, Pod).

    namespace?: string

    Namespace of the resource.

    orphan?: boolean

    When true, leave child resources as orphans instead of cascading the delete.

    recurse?: boolean

    When true, recursively delete child resources.

    resourceName?: string

    Name of the resource.

    version?: string

    API version (e.g. v1, apps/v1).