SchedulesOperations interface
Interfejs reprezentujący operacje Harmonogramy.
Właściwości
| create |
Tworzenie lub aktualizowanie harmonogramu według identyfikatora. |
| delete | Usuń harmonogram. |
| get | Uzyskaj harmonogram według identyfikatora. |
| get |
Pobierz harmonogram uruchamiany przez identyfikator. |
| list | Wyświetl listę wszystkich harmonogramów. |
| list |
Wyświetl listę wszystkich przebiegów harmonogramu. |
Szczegóły nieruchomości
createOrUpdate
Tworzenie lub aktualizowanie harmonogramu według identyfikatora.
createOrUpdate: (id: string, schedule: Schedule, options?: SchedulesCreateOrUpdateOptionalParams) => Promise<Schedule>
Wartość nieruchomości
(id: string, schedule: Schedule, options?: SchedulesCreateOrUpdateOptionalParams) => Promise<Schedule>
delete
Usuń harmonogram.
delete: (id: string, options?: SchedulesDeleteOptionalParams) => Promise<void>
Wartość nieruchomości
(id: string, options?: SchedulesDeleteOptionalParams) => Promise<void>
get
Uzyskaj harmonogram według identyfikatora.
get: (id: string, options?: SchedulesGetOptionalParams) => Promise<Schedule>
Wartość nieruchomości
(id: string, options?: SchedulesGetOptionalParams) => Promise<Schedule>
getRun
Pobierz harmonogram uruchamiany przez identyfikator.
getRun: (scheduleId: string, runId: string, options?: SchedulesGetRunOptionalParams) => Promise<ScheduleRun>
Wartość nieruchomości
(scheduleId: string, runId: string, options?: SchedulesGetRunOptionalParams) => Promise<ScheduleRun>
list
Wyświetl listę wszystkich harmonogramów.
list: (options?: SchedulesListOptionalParams) => PagedAsyncIterableIterator<Schedule, Schedule[], PageSettings>
Wartość nieruchomości
(options?: SchedulesListOptionalParams) => PagedAsyncIterableIterator<Schedule, Schedule[], PageSettings>
listRuns
Wyświetl listę wszystkich przebiegów harmonogramu.
listRuns: (scheduleId: string, options?: SchedulesListRunsOptionalParams) => PagedAsyncIterableIterator<ScheduleRun, ScheduleRun[], PageSettings>
Wartość nieruchomości
(scheduleId: string, options?: SchedulesListRunsOptionalParams) => PagedAsyncIterableIterator<ScheduleRun, ScheduleRun[], PageSettings>