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

    Type Alias CreateClusterVariableRequest

    type CreateClusterVariableRequest = {
        kind?: ClusterVariableKindEnum;
        metadata?: { [key: string]: string | number };
        name: ClusterVariableName;
        value: { [key: string]: unknown };
    }
    Index

    The kind of the cluster variable. Defaults to JSON if not specified.

    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).

    The name of the cluster variable. Must be unique within its scope (global or tenant-specific).

    value: { [key: string]: unknown }

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