List of schedule updates. Must be up to a maximum of 1000 items.
Array of UpdateItemWithExternalId_ScheduleUpdate (object) or UpdateItemWithId_ScheduleUpdate (object) |
Response with list of schedules.
The response for a failed request.
The response for a forbidden request.
The response for a conflict.
transformation_schedule = client.transformations.schedules.retrieve(id=1) transformation_schedule.is_paused = True res = client.transformations.schedules.update(transformation_schedule) from cognite.client.data_classes import TransformationScheduleUpdate my_update = TransformationScheduleUpdate(id=1).interval.set("0 * * * *").is_paused.set(False) res = client.transformations.schedules.update(my_update)
{- "items": [
- {
- "id": 0,
- "externalId": "string",
- "createdTime": 0,
- "lastUpdatedTime": 0,
- "interval": "0 0 * * *",
- "isPaused": true
}
]
}