ITriggeredWebJobOperations Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Operations for managing Triggered WebJobs.
public interface ITriggeredWebJobOperations
type ITriggeredWebJobOperations = interface
Public Interface ITriggeredWebJobOperations
Methods
DeleteAsync(String, CancellationToken) |
Delete a triggered WebJob. |
GetAsync(String, CancellationToken) |
Get a triggered web job. |
GetRunAsync(String, String, CancellationToken) |
Get a web job run. |
GetSettingsAsync(String, CancellationToken) |
Get the settings of a triggered WebJob. |
ListAsync(CancellationToken) |
List the triggered WebJobs. |
ListRunsAsync(String, CancellationToken) |
List the triggered WebJob runs. |
RunAsync(String, CancellationToken) |
Run a triggered WebJob. |
SetSettingsAsync(String, TriggeredWebJobSettingsUpdateParameters, CancellationToken) |
Set the settings of a triggered WebJob (will replace the current settings of the WebJob). |
UploadFileAsync(String, String, Stream, CancellationToken) |
Create or replace a triggered WebJob with a script file (.exe, .bat, .php, .js...). |
UploadZipAsync(String, String, Stream, CancellationToken) |
Create or replace a triggered WebJob with a zip file (containing the WebJob binaries). |