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

    Type Alias UpdateClusterVariableRequest

    type UpdateClusterVariableRequest = {
        metadata?: { [key: string]: string | number };
        value: { [key: string]: unknown };
    }
    Index
    metadata?: { [key: string]: string | number }

    A generic key-value metadata bag attached to the cluster variable. Values must be strings or numbers. Limited to 100 entries and a configurable maximum serialized size (default: 100 entries at max key length of a cluster variable name (256 chars) plus the maximum value length, 8192 characters).

    value: { [key: string]: unknown }

    The new value of the cluster variable. Can be any JSON object or primitive value. Will be serialized as a JSON string in responses.