Share via


JobCollectionOperationsExtensions.BeginCreatingAsync Method (IJobCollectionOperations, String, String, JobCollectionCreateParameters)

 

Create a job collection.

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

Syntax

public static Task<JobCollectionCreateResponse> BeginCreatingAsync(
    this IJobCollectionOperations operations,
    string cloudServiceName,
    string jobCollectionName,
    JobCollectionCreateParameters parameters
)
public:
[ExtensionAttribute]
static Task<JobCollectionCreateResponse^>^ BeginCreatingAsync(
    IJobCollectionOperations^ operations,
    String^ cloudServiceName,
    String^ jobCollectionName,
    JobCollectionCreateParameters^ parameters
)
static member BeginCreatingAsync : 
        operations:IJobCollectionOperations *
        cloudServiceName:string *
        jobCollectionName:string *
        parameters:JobCollectionCreateParameters -> Task<JobCollectionCreateResponse>
<ExtensionAttribute>
Public Shared Function BeginCreatingAsync (
    operations As IJobCollectionOperations,
    cloudServiceName As String,
    jobCollectionName As String,
    parameters As JobCollectionCreateParameters
) As Task(Of JobCollectionCreateResponse)

Parameters

  • cloudServiceName
    Type: System.String

    Required. The name of the cloud service containing the job collection.

  • jobCollectionName
    Type: System.String

    Required. The name of the job collection to create.

Return Value

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

The Create Job Collection operation response.

See Also

JobCollectionOperationsExtensions Class
Microsoft.WindowsAzure.Management.Scheduler Namespace

Return to top