SupportsGettingByParent<T,ParentT,ManagerT> 接口
定义
Provides access to getting a specific Azure resource based on its resource group and parent.
(Note this interface is not intended to be implemented by user code.)
public interface SupportsGettingByParent<T,ParentT extends Resource &HasResourceGroup,ManagerT>
类型参数
- T
the type of the resource collection
- ParentT
the parent resource type
- ManagerT
the client manager type representing the service
方法
getByParent(ParentT parentResource, String name) |
Gets the information about a resource from Azure based on the resource id.
|
getByParent(String resourceGroup, String parentName, String name) |
Gets the information about a resource from Azure based on the resource id.
|
getByParentAsync(ParentT parentResource, String name) |
Gets the information about a resource from Azure based on the resource id.
|
getByParentAsync(String resourceGroup, String parentName, String name) |
Gets the information about a resource from Azure based on the resource id.
|