(scheduleId: string)
| 408 | } |
| 409 | |
| 410 | async deleteSchedule(scheduleId: string): Promise<void> { |
| 411 | const client = await this.getScheduleClient(); |
| 412 | const handle = client.getHandle(scheduleId); |
| 413 | await handle.delete(); |
| 414 | } |
| 415 | |
| 416 | async pauseSchedule(scheduleId: string, note = 'Paused via API'): Promise<void> { |
| 417 | const client = await this.getScheduleClient(); |
no test coverage detected