T - the type of the resource to get.public interface SupportsGettingByResourceGroup<T>
(Note this interface is not intended to be implemented by user code.)
| Modifier and Type | Method and Description |
|---|---|
T |
getByResourceGroup(String resourceGroupName,
String name)
Gets the information about a resource from Azure based on the resource name and the name of its resource group.
|
Mono<T> |
getByResourceGroupAsync(String resourceGroupName,
String name)
Gets the information about a resource from Azure based on the resource name and the name of its resource group.
|
T getByResourceGroup(String resourceGroupName, String name)
resourceGroupName - the name of the resource group the resource is inname - the name of the resource. (Note, this is not the ID)Mono<T> getByResourceGroupAsync(String resourceGroupName, String name)
resourceGroupName - the name of the resource group the resource is inname - the name of the resource. (Note, this is not the ID)Mono that emits the found resource asynchronously.Copyright © 2021 Microsoft Corporation. All rights reserved.