ICloudJobScheduleOperations Interface
Article
03/10/2016
2 minutes to read
In this article
Operations for managing Azure Batch job schedules. A job schedule specifies when to run jobs, and includes a specification that is used to create each job.
Namespace: Microsoft.Azure.Batch.Protocol
Assembly: Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)
Syntax
public interface ICloudJobScheduleOperations
public interface class ICloudJobScheduleOperations
type ICloudJobScheduleOperations = interface end
Public Interface ICloudJobScheduleOperations
Methods
AddAsync(CloudJobScheduleAddParameters, CancellationToken)
Adds a job schedule to the specified account.
DeleteAsync(String, CloudJobScheduleDeleteParameters, CancellationToken)
Deletes a job schedule from the specified account.
DisableAsync(String, CloudJobScheduleDisableParameters, CancellationToken)
EnableAsync(String, CloudJobScheduleEnableParameters, CancellationToken)
ExistsAsync(String, CloudJobScheduleExistsParameters, CancellationToken)
Checks the specified job schedule exists.
GetAsync(String, CloudJobScheduleGetParameters, CancellationToken)
Gets information about the specified job schedule.
ListAsync(CloudJobScheduleListParameters, CancellationToken)
Lists all of the job schedules in the specified account.
ListNextAsync(String, CloudJobScheduleListParameters, CancellationToken)
Lists all of the job schedules in the specified account.
PatchAsync(String, CloudJobSchedulePatchParameters, CancellationToken)
Updates the properties of the specified job schedule.
TerminateAsync(String, CloudJobScheduleTerminateParameters, CancellationToken)
Terminates a job schedule.
UpdateAsync(String, CloudJobScheduleUpdateParameters, CancellationToken)
Updates the properties of the specified job schedule.
Extension Methods
Add(CloudJobScheduleAddParameters)
AddAsync(CloudJobScheduleAddParameters)
Delete(String, CloudJobScheduleDeleteParameters)
DeleteAsync(String, CloudJobScheduleDeleteParameters)
Disable(String, CloudJobScheduleDisableParameters)
DisableAsync(String, CloudJobScheduleDisableParameters)
Enable(String, CloudJobScheduleEnableParameters)
EnableAsync(String, CloudJobScheduleEnableParameters)
Exists(String, CloudJobScheduleExistsParameters)
ExistsAsync(String, CloudJobScheduleExistsParameters)
Get(String, CloudJobScheduleGetParameters)
GetAsync(String, CloudJobScheduleGetParameters)
List(CloudJobScheduleListParameters)
ListAsync(CloudJobScheduleListParameters)
ListNext(String, CloudJobScheduleListParameters)
ListNextAsync(String, CloudJobScheduleListParameters)
Patch(String, CloudJobSchedulePatchParameters)
PatchAsync(String, CloudJobSchedulePatchParameters)
Terminate(String, CloudJobScheduleTerminateParameters)
TerminateAsync(String, CloudJobScheduleTerminateParameters)
Update(String, CloudJobScheduleUpdateParameters)
UpdateAsync(String, CloudJobScheduleUpdateParameters)
See Also
Microsoft.Azure.Batch.Protocol Namespace
Return to top