ApplicationOperations.GetApplicationSummary 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 information about the specified application.
public Microsoft.Azure.Batch.ApplicationSummary GetApplicationSummary (string applicationId, Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.GetApplicationSummary : string * Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.ApplicationSummary
Public Function GetApplicationSummary (applicationId As String, Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As ApplicationSummary
Parameters
- applicationId
- String
The id of the application 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
An ApplicationSummary containing information about the specified application.
Remarks
This is a blocking operation. For a non-blocking equivalent, see GetApplicationSummaryAsync(String, DetailLevel, IEnumerable<BatchClientBehavior>, CancellationToken).
Applies to
Azure SDK for .NET