import type * as HydraDB from "../index.js"; export interface TenantsInfraStatusResponseV2 { /** Owning database. Formerly `tenant_id`; the `tenant_id` alias is still accepted (deprecated). */ database?: string; infra?: HydraDB.TenantsInfraV2; /** Human-readable result message. */ message?: string; /** Organization that owns this resource. */ orgId?: string; tenantId?: string; /** * Type is the storage layout (split or unified) the database was created * with; absent while the database is deleting or unknown. */ type?: HydraDB.TenantsInfraStatusResponseV2Type; }