export interface TenantsTenantRenameResponse { /** * ConnectorReassignment reports how the rename's connector sweep ended: * "complete" (every connector already targets the new name), "queued" (a * durable background reconciliation owns the remainder and retries until * drained), or "failed" (neither — contact support; the failure is also * alerted on server-side). The rename itself has succeeded in all three * states. */ connectorReassignment?: string; /** Owning database. Formerly `tenant_id`; the `tenant_id` alias is still accepted (deprecated). */ database?: string; /** Human-readable result message. */ message?: string; oldDatabase?: string; oldTenantId?: string; /** Current lifecycle or processing state. */ status?: string; tenantId?: string; }