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

    Type Alias ClusterRuntimeBackupTakeResult

    Whether one physical tenant's runtime backup was triggered, and under which id it can be monitored and deleted.

    type ClusterRuntimeBackupTakeResult = {
        backupId: BackupId | null;
        outcome: ClusterRuntimeBackupTakeOutcome;
        physicalTenantId: string;
        reason: string | null;
    }
    Index
    backupId: BackupId | null

    The id to monitor or delete this physical tenant's backup by: the id it is running under when TRIGGERED — the requested one, or the one the tenant generated when ids are generated — and the requested id to check when UNKNOWN. Null when the tenant is known to be running no backup, and also when an UNKNOWN tenant generates its own ids, because the id it may be running under was never reported; list that tenant's backups to find it.

    What this physical tenant did with the trigger.

    physicalTenantId: string

    The id of the physical tenant.

    reason: string | null

    Why this physical tenant reported no triggered backup. Null when it was triggered.