SupportsGettingByResourceGroup<T> 接口
定义
Provides access to getting a specific Azure resource based on its name and resource group.
(Note this interface is not intended to be implemented by user code.)
public interface SupportsGettingByResourceGroup<T>
类型参数
- T
the type of the resource to get.
方法
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.
|
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.
|
getByResourceGroupAsync(String resourceGroupName, String name, ServiceCallback<T> callback) |
Gets the information about a resource from Azure based on the resource name and the name of its resource group.
|