ITriggeredWebJobOperations Interface

Definition

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).

Extension Methods

Delete(ITriggeredWebJobOperations, String)

Delete a triggered WebJob.

DeleteAsync(ITriggeredWebJobOperations, String)

Delete a triggered WebJob.

Get(ITriggeredWebJobOperations, String)

Get a triggered web job.

GetAsync(ITriggeredWebJobOperations, String)

Get a triggered web job.

GetRun(ITriggeredWebJobOperations, String, String)

Get a web job run.

GetRunAsync(ITriggeredWebJobOperations, String, String)

Get a web job run.

GetSettings(ITriggeredWebJobOperations, String)

Get the settings of a triggered WebJob.

GetSettingsAsync(ITriggeredWebJobOperations, String)

Get the settings of a triggered WebJob.

List(ITriggeredWebJobOperations)

List the triggered WebJobs.

ListAsync(ITriggeredWebJobOperations)

List the triggered WebJobs.

ListRuns(ITriggeredWebJobOperations, String)

List the triggered WebJob runs.

ListRunsAsync(ITriggeredWebJobOperations, String)

List the triggered WebJob runs.

Run(ITriggeredWebJobOperations, String)

Run a triggered WebJob.

RunAsync(ITriggeredWebJobOperations, String)

Run a triggered WebJob.

SetSettings(ITriggeredWebJobOperations, String, TriggeredWebJobSettingsUpdateParameters)

Set the settings of a triggered WebJob (will replace the current settings of the WebJob).

SetSettingsAsync(ITriggeredWebJobOperations, String, TriggeredWebJobSettingsUpdateParameters)

Set the settings of a triggered WebJob (will replace the current settings of the WebJob).

UploadFile(ITriggeredWebJobOperations, String, String, Stream)

Create or replace a triggered WebJob with a script file (.exe, .bat, .php, .js...).

UploadFileAsync(ITriggeredWebJobOperations, String, String, Stream)

Create or replace a triggered WebJob with a script file (.exe, .bat, .php, .js...).

UploadZip(ITriggeredWebJobOperations, String, String, Stream)

Create or replace a triggered WebJob with a zip file (containing the WebJob binaries).

UploadZipAsync(ITriggeredWebJobOperations, String, String, Stream)

Create or replace a triggered WebJob with a zip file (containing the WebJob binaries).

Applies to