JobCollectionOperationsExtensions.BeginUpdatingAsync Method (IJobCollectionOperations, String, String, JobCollectionUpdateParameters)
Update a job collection.
Namespace: Microsoft.WindowsAzure.Management.Scheduler
Assembly: Microsoft.WindowsAzure.Management.Scheduler (in Microsoft.WindowsAzure.Management.Scheduler.dll)
Syntax
public static Task<JobCollectionUpdateResponse> BeginUpdatingAsync(
this IJobCollectionOperations operations,
string cloudServiceName,
string jobCollectionName,
JobCollectionUpdateParameters parameters
)
public:
[ExtensionAttribute]
static Task<JobCollectionUpdateResponse^>^ BeginUpdatingAsync(
IJobCollectionOperations^ operations,
String^ cloudServiceName,
String^ jobCollectionName,
JobCollectionUpdateParameters^ parameters
)
static member BeginUpdatingAsync :
operations:IJobCollectionOperations *
cloudServiceName:string *
jobCollectionName:string *
parameters:JobCollectionUpdateParameters -> Task<JobCollectionUpdateResponse>
<ExtensionAttribute>
Public Shared Function BeginUpdatingAsync (
operations As IJobCollectionOperations,
cloudServiceName As String,
jobCollectionName As String,
parameters As JobCollectionUpdateParameters
) As Task(Of JobCollectionUpdateResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Scheduler.IJobCollectionOperationsReference to the Microsoft.WindowsAzure.Management.Scheduler.IJobCollectionOperations.
cloudServiceName
Type: System.StringRequired. The name of the cloud service containing the job collection.
jobCollectionName
Type: System.StringRequired. The name of the job collection to update.
parameters
Type: Microsoft.WindowsAzure.Management.Scheduler.Models.JobCollectionUpdateParametersRequired. Parameters supplied to the Update Job Collection operation.
Return Value
Type: System.Threading.Tasks.Task<JobCollectionUpdateResponse>
The Update Job Collection operation response.
See Also
JobCollectionOperationsExtensions Class
Microsoft.WindowsAzure.Management.Scheduler Namespace
Return to top