admin_get_config_toggles¶
Get the current set of config toggles
Functions
- async pydelfini.delfini_core.api.admin.admin_get_config_toggles.asyncio(*, client, details=Unset)[source]¶
Get the current set of config toggles
Retrieve all current config toggle settings. Administrator access required.
- Parameters:
client (AuthenticatedClient)
- 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[ConfigToggles]
- Return type:
- async pydelfini.delfini_core.api.admin.admin_get_config_toggles.asyncio_detailed(*, client, details=Unset)[source]¶
Get the current set of config toggles
Retrieve all current config toggle settings. Administrator access required.
- Parameters:
client (AuthenticatedClient)
- 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[ConfigToggles, ServerError]]
- Return type:
- pydelfini.delfini_core.api.admin.admin_get_config_toggles.sync(*, client, details=Unset)[source]¶
Get the current set of config toggles
Retrieve all current config toggle settings. Administrator access required.
- Parameters:
client (AuthenticatedClient)
- 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[ConfigToggles]
- Return type:
- pydelfini.delfini_core.api.admin.admin_get_config_toggles.sync_detailed(*, client, details=Unset)[source]¶
Get the current set of config toggles
Retrieve all current config toggle settings. Administrator access required.
- Parameters:
client (AuthenticatedClient)
- 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[ConfigToggles, ServerError]]
- Return type: