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

JobOperationsExtensions.CreateAsync 方法

定义

重载

CreateAsync(IJobOperations, String, String, JobCreateParameters)
CreateAsync(IJobOperations, String, String, String, JobCreateParameters, String, CancellationToken)

创建 Runbook 的作业。 http://aka.ms/azureautomationsdk/joboperations

CreateAsync(IJobOperations, String, String, JobCreateParameters)

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.JobCreateResponse> CreateAsync (this Microsoft.Azure.Management.Automation.IJobOperations operations, string resourceGroupName, string automationAccount, Microsoft.Azure.Management.Automation.Models.JobCreateParameters parameters);
static member CreateAsync : Microsoft.Azure.Management.Automation.IJobOperations * string * string * Microsoft.Azure.Management.Automation.Models.JobCreateParameters -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.JobCreateResponse>
<Extension()>
Public Function CreateAsync (operations As IJobOperations, resourceGroupName As String, automationAccount As String, parameters As JobCreateParameters) As Task(Of JobCreateResponse)

参数

operations
IJobOperations
resourceGroupName
String
automationAccount
String
parameters
JobCreateParameters

返回

适用于

CreateAsync(IJobOperations, String, String, String, JobCreateParameters, String, CancellationToken)

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.Job> CreateAsync (this Microsoft.Azure.Management.Automation.IJobOperations operations, string resourceGroupName, string automationAccountName, string jobName, Microsoft.Azure.Management.Automation.Models.JobCreateParameters parameters, string clientRequestId = default, System.Threading.CancellationToken cancellationToken = default);
static member CreateAsync : Microsoft.Azure.Management.Automation.IJobOperations * string * string * string * Microsoft.Azure.Management.Automation.Models.JobCreateParameters * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.Job>
<Extension()>
Public Function CreateAsync (operations As IJobOperations, resourceGroupName As String, automationAccountName As String, jobName As String, parameters As JobCreateParameters, Optional clientRequestId As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Job)

参数

operations
IJobOperations

此扩展方法的操作组。

resourceGroupName
String

Azure 资源组的名称。

automationAccountName
String

自动化帐户的名称。

jobName
String

作业名称。

parameters
JobCreateParameters

提供给创建作业操作的参数。

clientRequestId
String

标识此特定客户端请求。

cancellationToken
CancellationToken

取消标记。

返回

适用于