SchedulesOperations interface
Interface représentant une opération de planification.
Propriétés
| create |
Créez ou mettez à jour un planning par id. |
| delete | Supprimez une planification. |
| get | Obtenez un horaire par id. |
| get |
Obtenez un calendrier exécuté par id. |
| list | Énumérez tous les horaires. |
| list |
Répertoriez toutes les exécutions planifiées. |
Détails de la propriété
createOrUpdate
Créez ou mettez à jour un planning par id.
createOrUpdate: (id: string, schedule: Schedule, options?: SchedulesCreateOrUpdateOptionalParams) => Promise<Schedule>
Valeur de propriété
(id: string, schedule: Schedule, options?: SchedulesCreateOrUpdateOptionalParams) => Promise<Schedule>
delete
Supprimez une planification.
delete: (id: string, options?: SchedulesDeleteOptionalParams) => Promise<void>
Valeur de propriété
(id: string, options?: SchedulesDeleteOptionalParams) => Promise<void>
get
Obtenez un horaire par id.
get: (id: string, options?: SchedulesGetOptionalParams) => Promise<Schedule>
Valeur de propriété
(id: string, options?: SchedulesGetOptionalParams) => Promise<Schedule>
getRun
Obtenez un calendrier exécuté par id.
getRun: (scheduleId: string, runId: string, options?: SchedulesGetRunOptionalParams) => Promise<ScheduleRun>
Valeur de propriété
(scheduleId: string, runId: string, options?: SchedulesGetRunOptionalParams) => Promise<ScheduleRun>
list
Énumérez tous les horaires.
list: (options?: SchedulesListOptionalParams) => PagedAsyncIterableIterator<Schedule, Schedule[], PageSettings>
Valeur de propriété
(options?: SchedulesListOptionalParams) => PagedAsyncIterableIterator<Schedule, Schedule[], PageSettings>
listRuns
Répertoriez toutes les exécutions planifiées.
listRuns: (scheduleId: string, options?: SchedulesListRunsOptionalParams) => PagedAsyncIterableIterator<ScheduleRun, ScheduleRun[], PageSettings>
Valeur de propriété
(scheduleId: string, options?: SchedulesListRunsOptionalParams) => PagedAsyncIterableIterator<ScheduleRun, ScheduleRun[], PageSettings>