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

    Type Alias ClusterVariableResultBase

    Cluster variable response item.

    type ClusterVariableResultBase = {
        kind: ClusterVariableKindEnum;
        metadata: { [key: string]: string | number };
        name: ClusterVariableName;
        scope: ClusterVariableScopeEnum;
        tenantId: string | null;
    }
    Index
    metadata: { [key: string]: string | number }

    A generic key-value metadata bag attached to the cluster variable. Values are strings or numbers.

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

    tenantId: string | null

    Only provided if the cluster variable scope is TENANT. Null for global scope variables.