JobOperationsExtensions Class

 

Namespace:   Microsoft.WindowsAzure.Scheduler
Assembly:  Microsoft.WindowsAzure.Management.Scheduler (in Microsoft.WindowsAzure.Management.Scheduler.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Scheduler.JobOperationsExtensions

Syntax

public static class JobOperationsExtensions
[ExtensionAttribute]
public ref class JobOperationsExtensions abstract sealed 
[<AbstractClass>]
[<Sealed>]
type JobOperationsExtensions = class end
<ExtensionAttribute>
Public NotInheritable Class JobOperationsExtensions

Methods

Name Description
System_CAPS_pubmethodSystem_CAPS_static Create(IJobOperations, JobCreateParameters)

Creates a new Job, allowing the service to generate a job id. Use CreateOrUpdate if a user-chosen job id is required.

System_CAPS_pubmethodSystem_CAPS_static CreateAsync(IJobOperations, JobCreateParameters)

Creates a new Job, allowing the service to generate a job id. Use CreateOrUpdate if a user-chosen job id is required.

System_CAPS_pubmethodSystem_CAPS_static CreateOrUpdate(IJobOperations, String, JobCreateOrUpdateParameters)

Creates a new Job with a user-provided job id, or updates an existing job, replacing its definition with that specified.

System_CAPS_pubmethodSystem_CAPS_static CreateOrUpdateAsync(IJobOperations, String, JobCreateOrUpdateParameters)

Creates a new Job with a user-provided job id, or updates an existing job, replacing its definition with that specified.

System_CAPS_pubmethodSystem_CAPS_static Delete(IJobOperations, String)

Deletes a job.

System_CAPS_pubmethodSystem_CAPS_static DeleteAsync(IJobOperations, String)

Deletes a job.

System_CAPS_pubmethodSystem_CAPS_static Get(IJobOperations, String)

Get the definition and status of a job.

System_CAPS_pubmethodSystem_CAPS_static GetAsync(IJobOperations, String)

Get the definition and status of a job.

System_CAPS_pubmethodSystem_CAPS_static GetHistory(IJobOperations, String, JobGetHistoryParameters)

Get the execution history of a Job.

System_CAPS_pubmethodSystem_CAPS_static GetHistoryAsync(IJobOperations, String, JobGetHistoryParameters)

Get the execution history of a Job.

System_CAPS_pubmethodSystem_CAPS_static GetHistoryWithFilter(IJobOperations, String, JobGetHistoryWithFilterParameters)

Get the execution history of a Job with a filter on the job Status.

System_CAPS_pubmethodSystem_CAPS_static GetHistoryWithFilterAsync(IJobOperations, String, JobGetHistoryWithFilterParameters)

Get the execution history of a Job with a filter on the job Status.

System_CAPS_pubmethodSystem_CAPS_static List(IJobOperations, JobListParameters)

Get the list of all jobs in a job collection.

System_CAPS_pubmethodSystem_CAPS_static ListAsync(IJobOperations, JobListParameters)

Get the list of all jobs in a job collection.

System_CAPS_pubmethodSystem_CAPS_static ListWithFilter(IJobOperations, JobListWithFilterParameters)

Get the list of jobs in a job collection matching a filter on job state.

System_CAPS_pubmethodSystem_CAPS_static ListWithFilterAsync(IJobOperations, JobListWithFilterParameters)

Get the list of jobs in a job collection matching a filter on job state.

System_CAPS_pubmethodSystem_CAPS_static UpdateJobCollectionState(IJobOperations, JobCollectionJobsUpdateStateParameters)

Update the state of all jobs in a job collections.

System_CAPS_pubmethodSystem_CAPS_static UpdateJobCollectionStateAsync(IJobOperations, JobCollectionJobsUpdateStateParameters)

Update the state of all jobs in a job collections.

System_CAPS_pubmethodSystem_CAPS_static UpdateState(IJobOperations, String, JobUpdateStateParameters)

Update the state of a job.

System_CAPS_pubmethodSystem_CAPS_static UpdateStateAsync(IJobOperations, String, JobUpdateStateParameters)

Update the state of a job.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.Scheduler Namespace

Return to top