Package com.microsoft.azure.batch
Class DetailLevel
- java.lang.Object
-
- com.microsoft.azure.batch.DetailLevel
-
public class DetailLevel extends Object
Controls the amount of detail requested from the Azure Batch service when listing or retrieving resources.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DetailLevel.Builder
The builder class to initiate aDetailLevel
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
expandClause()
Gets the OData expand clause.String
filterClause()
Gets the OData filter clause.String
selectClause()
Gets the OData select clause.
-
-
-
Method Detail
-
filterClause
public String filterClause()
Gets the OData filter clause. Used to restrict a list operation to items that match specified criteria.- Returns:
- The filter clause.
-
selectClause
public String selectClause()
Gets the OData select clause. Used to retrieve only specific properties instead of all object properties.- Returns:
- The select clause.
-
expandClause
public String expandClause()
Gets the OData expand clause. Used to retrieve associated entities of the main entity being retrieved.- Returns:
- The expand clause.
-
-