JobScheduleOperations Class
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.
Performs operations on Azure Batch job schedules.
In this article
public class JobScheduleOperations : Microsoft.Azure.Batch.IInheritedBehaviors
type JobScheduleOperations = class
interface IInheritedBehaviors
Public Class JobScheduleOperations
Implements IInheritedBehaviors
Inheritance
Implements
Properties
Methods
CreateJobSchedule()
Creates an instance of CloudJobSchedule that is unbound and does not have a consistency relationship to any job schedule in the Batch Service.
CreateJobSchedule(String, Schedule, JobSpecification)
Creates an instance of CloudJobSchedule that is unbound and does not have a consistency relationship to any job schedule in the Batch Service.
DeleteJobSchedule(String, IEnumerable<BatchClientBehavior>)
Deletes the specified job schedule.
DeleteJobScheduleAsync(String, IEnumerable<BatchClientBehavior>, CancellationToken)
Deletes the specified job schedule.
DisableJobSchedule(String, IEnumerable<BatchClientBehavior>)
Disables the specified job schedule. Disabled schedules do not create new jobs, but may be re-enabled later.
DisableJobScheduleAsync(String, IEnumerable<BatchClientBehavior>, CancellationToken)
Disables the specified job schedule. Disabled schedules do not create new jobs, but may be re-enabled later.
EnableJobSchedule(String, IEnumerable<BatchClientBehavior>)
Enables the specified job schedule, allowing jobs to be created according to its Schedule .
EnableJobScheduleAsync(String, IEnumerable<BatchClientBehavior>, CancellationToken)
Enables the specified job schedule, allowing jobs to be created according to its Schedule .
GetJobSchedule(String, DetailLevel, IEnumerable<BatchClientBehavior>)
Gets the specified CloudJobSchedule .
GetJobScheduleAsync(String, DetailLevel, IEnumerable<BatchClientBehavior>, CancellationToken)
Gets the specified CloudJobSchedule .
ListJobs(String, DetailLevel, IEnumerable<BatchClientBehavior>)
Enumerates the jobs created under the specified job schedule.
ListJobSchedules(DetailLevel, IEnumerable<BatchClientBehavior>)
Enumerates the job schedules in the Batch account.
TerminateJobSchedule(String, IEnumerable<BatchClientBehavior>)
Terminates the specified job schedule.
TerminateJobScheduleAsync(String, IEnumerable<BatchClientBehavior>, CancellationToken)
Terminates the specified job schedule.
Applies to
See also