root_version_info¶
Get API version
Functions
- async pydelfini.delfini_core.api.general.root_version_info.asyncio(*, client)[source]¶
Get API version
- 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[FederationSystem]
- Parameters:
client (AuthenticatedClient | Client)
- Return type:
- async pydelfini.delfini_core.api.general.root_version_info.asyncio_detailed(*, client)[source]¶
Get API version
- 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[FederationSystem, ServerError]]
- Parameters:
client (AuthenticatedClient | Client)
- Return type:
- pydelfini.delfini_core.api.general.root_version_info.sync(*, client)[source]¶
Get API version
- 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[FederationSystem]
- Parameters:
client (AuthenticatedClient | Client)
- Return type:
- pydelfini.delfini_core.api.general.root_version_info.sync_detailed(*, client)[source]¶
Get API version
- 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[FederationSystem, ServerError]]
- Parameters:
client (AuthenticatedClient | Client)
- Return type: