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

    Type Alias ClusterRuntimeBackupTenantInfoWritable

    What a single physical tenant reports for a runtime backup id.

    type ClusterRuntimeBackupTenantInfoWritable = {
        details: PartitionBackupInfoWritable[];
        failureReason: string | null;
        physicalTenantId: string;
        state: StateCode;
    }
    Index

    Detailed status of the backup per partition of this physical tenant. Contains every partition of the tenant when the backup id was looked up directly, including for a tenant that holds no such backup. Empty for a tenant that holds nothing for a listed id: a listing asks each tenant for the backups it has, so there is nothing to report per partition for one it does not.

    failureReason: string | null

    Reason for failure if the state is 'FAILED'.

    physicalTenantId: string

    The id of the physical tenant.

    state: StateCode

    The state of the backup on this physical tenant, aggregated over its partitions.