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
System_CAPS_pubmethod DeleteAsync(String, CancellationToken)

Delete a triggered WebJob.

System_CAPS_pubmethod GetAsync(String, CancellationToken)

Get a triggered web job.

System_CAPS_pubmethod GetRunAsync(String, String, CancellationToken)

Get a web job run.

System_CAPS_pubmethod GetSettingsAsync(String, CancellationToken)

Get the settings of a triggered WebJob.

System_CAPS_pubmethod ListAsync(CancellationToken)

List the triggered WebJobs.

System_CAPS_pubmethod ListRunsAsync(String, CancellationToken)

List the triggered WebJob runs.

System_CAPS_pubmethod RunAsync(String, CancellationToken)

Run a triggered WebJob.

System_CAPS_pubmethod SetSettingsAsync(String, TriggeredWebJobSettingsUpdateParameters, CancellationToken)

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

System_CAPS_pubmethod UploadFileAsync(String, String, Stream, CancellationToken)

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

System_CAPS_pubmethod UploadZipAsync(String, String, Stream, CancellationToken)

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

Extension Methods

Name Description
System_CAPS_pubmethod Delete(String)

Delete a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

System_CAPS_pubmethod DeleteAsync(String)

Delete a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

System_CAPS_pubmethod Get(String)

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

System_CAPS_pubmethod GetAsync(String)

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

System_CAPS_pubmethod GetRun(String, String)

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

System_CAPS_pubmethod GetRunAsync(String, String)

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

System_CAPS_pubmethod GetSettings(String)

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

System_CAPS_pubmethod GetSettingsAsync(String)

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

System_CAPS_pubmethod List()

List the triggered WebJobs.(Defined by TriggeredWebJobOperationsExtensions.)

System_CAPS_pubmethod ListAsync()

List the triggered WebJobs.(Defined by TriggeredWebJobOperationsExtensions.)

System_CAPS_pubmethod ListRuns(String)

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

System_CAPS_pubmethod ListRunsAsync(String)

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

System_CAPS_pubmethod Run(String)

Run a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

System_CAPS_pubmethod RunAsync(String)

Run a triggered WebJob.(Defined by TriggeredWebJobOperationsExtensions.)

System_CAPS_pubmethod SetSettings(String, TriggeredWebJobSettingsUpdateParameters)

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

System_CAPS_pubmethod SetSettingsAsync(String, TriggeredWebJobSettingsUpdateParameters)

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

System_CAPS_pubmethod UploadFile(String, String, Stream)

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

System_CAPS_pubmethod UploadFileAsync(String, String, Stream)

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

System_CAPS_pubmethod UploadZip(String, String, Stream)

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

System_CAPS_pubmethod 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