InnerT - the fluent type of the resourcepublic interface InnerSupportsGet<InnerT>
(Note: this interface is not intended to be implemented by user code)
| Modifier and Type | Method and Description |
|---|---|
InnerT |
getByResourceGroup(String resourceGroupName,
String resourceName)
Returns the specific resource.
|
Mono<InnerT> |
getByResourceGroupAsync(String resourceGroupName,
String resourceName)
Returns the specific resource asynchronously.
|
InnerT getByResourceGroup(String resourceGroupName, String resourceName)
resourceGroupName - The name of the resource group within the user's subscription.resourceName - The name of the resource within specified resource group.Mono<InnerT> getByResourceGroupAsync(String resourceGroupName, String resourceName)
resourceGroupName - The name of the resource group within the user's subscription.resourceName - The name of the resource within specified resource group.Mono emits the found resource asynchronously.Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.