Interface SupportsGettingById<T>

    • Method Detail

      • getById

        T getById​(String id)
        Gets the information about a resource from Azure based on the resource id.
        Parameters:
        id - the id of the resource.
        Returns:
        an immutable representation of the resource
      • getByIdAsync

        Mono<T> getByIdAsync​(String id)
        Gets the information about a resource from Azure based on the resource id.
        Parameters:
        id - the id of the resource.
        Returns:
        a Mono that emits the found resource asynchronously