JobOperations.GetJob Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the specified CloudJob.
public Microsoft.Azure.Batch.CloudJob GetJob (string jobId, Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.GetJob : string * Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.CloudJob
Public Function GetJob (jobId As String, Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As CloudJob
Parameters
- jobId
- String
The id of the job to get.
- detailLevel
- DetailLevel
A DetailLevel used for controlling which properties are retrieved from the service.
- additionalBehaviors
- IEnumerable<BatchClientBehavior>
A collection of BatchClientBehavior instances that are applied to the Batch service request after the CustomBehaviors and detailLevel
.
Returns
A CloudJob containing information about the specified Azure Batch job.
Remarks
This is a blocking operation. For a non-blocking equivalent, see GetJobAsync(String, DetailLevel, IEnumerable<BatchClientBehavior>, CancellationToken).
Applies to
Azure SDK for .NET