你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

JobScheduleOperations.CreateJobSchedule 方法

定义

重载

CreateJobSchedule()

创建一个未绑定且与 Batch 服务中的任何作业计划不具有一致性关系的 CloudJobSchedule 实例。

CreateJobSchedule(String, Schedule, JobSpecification)

创建一个未绑定且与 Batch 服务中的任何作业计划不具有一致性关系的 CloudJobSchedule 实例。

CreateJobSchedule()

Source:
JobScheduleOperations.cs

创建一个未绑定且与 Batch 服务中的任何作业计划不具有一致性关系的 CloudJobSchedule 实例。

public Microsoft.Azure.Batch.CloudJobSchedule CreateJobSchedule ();
member this.CreateJobSchedule : unit -> Microsoft.Azure.Batch.CloudJobSchedule
Public Function CreateJobSchedule () As CloudJobSchedule

返回

一个 CloudJobSchedule ,表示尚未提交到 Batch 服务的新作业计划。

适用于

CreateJobSchedule(String, Schedule, JobSpecification)

Source:
JobScheduleOperations.cs

创建一个未绑定且与 Batch 服务中的任何作业计划不具有一致性关系的 CloudJobSchedule 实例。

public Microsoft.Azure.Batch.CloudJobSchedule CreateJobSchedule (string jobScheduleId, Microsoft.Azure.Batch.Schedule schedule, Microsoft.Azure.Batch.JobSpecification jobSpecification);
member this.CreateJobSchedule : string * Microsoft.Azure.Batch.Schedule * Microsoft.Azure.Batch.JobSpecification -> Microsoft.Azure.Batch.CloudJobSchedule
Public Function CreateJobSchedule (jobScheduleId As String, schedule As Schedule, jobSpecification As JobSpecification) As CloudJobSchedule

参数

jobScheduleId
String

作业计划的 ID。

schedule
Schedule

确定何时创建作业的计划。

jobSpecification
JobSpecification

一个 , JobSpecification 其中包含要根据 schedule创建的作业的详细信息。

返回

一个 CloudJobSchedule ,表示尚未提交到 Batch 服务的新作业计划。

适用于