SupportsGettingById<T> Interface
Type Parameters
- T
the type of the resource collection
public interface SupportsGettingById
Provides access to getting a specific Azure resource based on its resource ID.
(Note this interface is not intended to be implemented by user code.)
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract T |
getById(String id)
Gets the information about a resource from Azure based on the resource id. |
abstract Mono<T> |
getByIdAsync(String id)
Gets the information about a resource from Azure based on the resource id. |
Method Details
getById
public abstract T getById(String id)
Gets the information about a resource from Azure based on the resource id.
Parameters:
Returns:
getByIdAsync
public abstract Mono
Gets the information about a resource from Azure based on the resource id.
Parameters:
Returns:
Applies to
Azure SDK for Java