@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias SearchClusterVariablesData

    type SearchClusterVariablesData = {
        body?: SearchQueryRequest & {
            filter?: {
                isTruncated?: boolean;
                name?: StringFilterProperty;
                scope?:
                    | ClusterVariableScopeEnum
                    | {
                        $eq?: ClusterVariableScopeEnum;
                        $exists?: boolean;
                        $in?: ClusterVariableScopeEnum[];
                        $like?: LikeFilter;
                        $neq?: ClusterVariableScopeEnum;
                    };
                tenantId?: StringFilterProperty;
                value?: StringFilterProperty;
            };
            sort?: ClusterVariableSearchQuerySortRequest[];
        };
        path?: never;
        query?: { truncateValues?: boolean };
        url: "/cluster-variables/search";
    }
    Index

    Properties

    Properties

    body?: SearchQueryRequest & {
        filter?: {
            isTruncated?: boolean;
            name?: StringFilterProperty;
            scope?:
                | ClusterVariableScopeEnum
                | {
                    $eq?: ClusterVariableScopeEnum;
                    $exists?: boolean;
                    $in?: ClusterVariableScopeEnum[];
                    $like?: LikeFilter;
                    $neq?: ClusterVariableScopeEnum;
                };
            tenantId?: StringFilterProperty;
            value?: StringFilterProperty;
        };
        sort?: ClusterVariableSearchQuerySortRequest[];
    }

    Cluster variable search query request.

    Type Declaration

    path?: never
    query?: { truncateValues?: boolean }

    Type Declaration

    • OptionaltruncateValues?: boolean

      When true (default), long variable values in the response are truncated. When false, full variable values are returned.

    url: "/cluster-variables/search"