admin_tasks_schedules

List scheduled tasks

Functions

async pydelfini.delfini_core.api.admin.admin_tasks_schedules.asyncio(*, client)[source]

List scheduled tasks

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

Parameters:

client (AuthenticatedClient)

Return type:

TasksSchedules

async pydelfini.delfini_core.api.admin.admin_tasks_schedules.asyncio_detailed(*, client)[source]

List scheduled tasks

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

Parameters:

client (AuthenticatedClient)

Return type:

Response[ServerError | TasksSchedules]

pydelfini.delfini_core.api.admin.admin_tasks_schedules.sync(*, client)[source]

List scheduled tasks

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

Parameters:

client (AuthenticatedClient)

Return type:

TasksSchedules

pydelfini.delfini_core.api.admin.admin_tasks_schedules.sync_detailed(*, client)[source]

List scheduled tasks

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

Parameters:

client (AuthenticatedClient)

Return type:

Response[ServerError | TasksSchedules]