Delete function schedule

async AsyncCogniteClient.functions.schedules.delete(id: int) None

Delete a schedule associated with a specific project.

Parameters:

id (int) – Id of the schedule

Examples

Delete function schedule:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> client.functions.schedules.delete(id=123)