metrics_list_events¶
List real-time event sources
Functions
- async pydelfini.delfini_core.api.metrics.metrics_list_events.asyncio(*, client)[source]¶
List real-time event sources
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[MetricEventList]
- Parameters:
client (AuthenticatedClient)
- Return type:
- async pydelfini.delfini_core.api.metrics.metrics_list_events.asyncio_detailed(*, client)[source]¶
List real-time event sources
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[MetricEventList, ServerError]]
- Parameters:
client (AuthenticatedClient)
- Return type:
- pydelfini.delfini_core.api.metrics.metrics_list_events.sync(*, client)[source]¶
List real-time event sources
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[MetricEventList]
- Parameters:
client (AuthenticatedClient)
- Return type:
- pydelfini.delfini_core.api.metrics.metrics_list_events.sync_detailed(*, client)[source]¶
List real-time event sources
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[MetricEventList, ServerError]]
- Parameters:
client (AuthenticatedClient)
- Return type: