Interface SupportsListingByFilter<T>
-
- Type Parameters:
T- the fluent type of the resource
public interface SupportsListingByFilter<T>Provides access to listing Azure resources of a specific type filtered based on OData syntax. http://docs.oasis-open.org/odata/odata/v4.0/errata03/os/complete/part2-url-conventions/odata-v4.0-errata03-os-part2-url-conventions-complete.html#_Toc453752358(Note: this interface is not intended to be implemented by user code)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.azure.core.http.rest.PagedIterable<T>listByFilter(String filter)Lists all the resources of the specified type with specific filter.com.azure.core.http.rest.PagedFlux<T>listByFilterAsync(String filter)Lists all the resources of the specified type with specific filter.
-
-
-
Method Detail
-
listByFilter
com.azure.core.http.rest.PagedIterable<T> listByFilter(String filter)
Lists all the resources of the specified type with specific filter.- Parameters:
filter- the filter based on OData syntax- Returns:
- a
PagedIterableof resources
-
listByFilterAsync
com.azure.core.http.rest.PagedFlux<T> listByFilterAsync(String filter)
Lists all the resources of the specified type with specific filter.- Parameters:
filter- the filter based on OData syntax- Returns:
- a representation of the deferred computation of this call, returning the requested resources
-
-