Share via


IJobScheduleOperations.CreateAsync Method (String, JobScheduleCreateParameters, CancellationToken)

 

Create a job schedule. (see https://aka.ms/azureautomationsdk/jobscheduleoperations for more information)

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

Syntax

Task<JobScheduleCreateResponse> CreateAsync(
    string automationAccount,
    JobScheduleCreateParameters parameters,
    CancellationToken cancellationToken
)
Task<JobScheduleCreateResponse^>^ CreateAsync(
    String^ automationAccount,
    JobScheduleCreateParameters^ parameters,
    CancellationToken cancellationToken
)
abstract CreateAsync : 
        automationAccount:string *
        parameters:JobScheduleCreateParameters *
        cancellationToken:CancellationToken -> Task<JobScheduleCreateResponse>
Function CreateAsync (
    automationAccount As String,
    parameters As JobScheduleCreateParameters,
    cancellationToken As CancellationToken
) As Task(Of JobScheduleCreateResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

Type: System.Threading.Tasks.Task<JobScheduleCreateResponse>

The response model for the create job schedule operation.

See Also

IJobScheduleOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top