Status Flags
Provides coroutine-based access to retrieve status flags stored in the Norman persistence service.
The StatusFlags class allows querying operational flags, health indicators, or runtime markers for various Norman entities such as models, invocations, or services.
get_status_flags(token, constraints=None) async
Coroutine
Retrieve status flags matching the specified query constraints.
This method fetches one or more collections of status flags from the persistence layer, grouped by their associated entity identifiers.
Parameters
token (
Sensitive[str]) — Authentication token authorizing the request.constraints (
Optional[QueryConstraints]) — Optional query object for filtering or pagination.
Response Structure
response (
dict[str, list[StatusFlag]]) — Dictionary mapping entity IDs to a list ofStatusFlagobjects.