auth_signout

Displays the built-in/unbranded sign out page.

Functions

async pydelfini.delfini_core.api.auth.auth_signout.asyncio(*, client)[source]

Displays the built-in/unbranded sign out page.

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[AuthSignoutNoData]

Parameters:

client (AuthenticatedClient)

Return type:

AuthSignoutNoData

async pydelfini.delfini_core.api.auth.auth_signout.asyncio_detailed(*, client)[source]

Displays the built-in/unbranded sign out page.

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[AuthSignoutNoData, ServerError]]

Parameters:

client (AuthenticatedClient)

Return type:

Response[AuthSignoutNoData | ServerError]

pydelfini.delfini_core.api.auth.auth_signout.sync(*, client)[source]

Displays the built-in/unbranded sign out page.

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[AuthSignoutNoData]

Parameters:

client (AuthenticatedClient)

Return type:

AuthSignoutNoData

pydelfini.delfini_core.api.auth.auth_signout.sync_detailed(*, client)[source]

Displays the built-in/unbranded sign out page.

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[AuthSignoutNoData, ServerError]]

Parameters:

client (AuthenticatedClient)

Return type:

Response[AuthSignoutNoData | ServerError]