Share via


ITriggeredWebJobOperations Interface

 

Operations for managing Triggered WebJobs.

Namespace:   Microsoft.WindowsAzure.WebSitesExtensions
Assembly:  Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)

Syntax

public interface ITriggeredWebJobOperations
public interface class ITriggeredWebJobOperations
type ITriggeredWebJobOperations = interface end
Public Interface ITriggeredWebJobOperations

Methods

Name Description
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

Name Description
Delete(String)

Delete a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

DeleteAsync(String)

Delete a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

Get(String)

Get a triggered web job.(Defined by TriggeredWebJobOperationsExtensions.)

GetAsync(String)

Get a triggered web job.(Defined by TriggeredWebJobOperationsExtensions.)

GetRun(String, String)

Get a web job run.(Defined by TriggeredWebJobOperationsExtensions.)

GetRunAsync(String, String)

Get a web job run.(Defined by TriggeredWebJobOperationsExtensions.)

GetSettings(String)

Get the settings of a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

GetSettingsAsync(String)

Get the settings of a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

List()

List the triggered WebJobs.(Defined by TriggeredWebJobOperationsExtensions.)

ListAsync()

List the triggered WebJobs.(Defined by TriggeredWebJobOperationsExtensions.)

ListRuns(String)

List the triggered WebJob runs.(Defined by TriggeredWebJobOperationsExtensions.)

ListRunsAsync(String)

List the triggered WebJob runs.(Defined by TriggeredWebJobOperationsExtensions.)

Run(String)

Run a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

RunAsync(String)

Run a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

SetSettings(String, TriggeredWebJobSettingsUpdateParameters)

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

SetSettingsAsync(String, TriggeredWebJobSettingsUpdateParameters)

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

UploadFile(String, String, Stream)

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

UploadFileAsync(String, String, Stream)

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

UploadZip(String, String, Stream)

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

UploadZipAsync(String, String, Stream)

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

See Also

Microsoft.WindowsAzure.WebSitesExtensions Namespace

Return to top