Interface PrivateLinkResources
public interface PrivateLinkResources
Resource collection API of PrivateLinkResources.
-
Method Summary
Modifier and TypeMethodDescriptionGets a private link resource.com.azure.core.http.rest.Response<PrivateLinkResource>
getWithResponse
(String resourceGroupName, String clusterName, String privateLinkResourceName, com.azure.core.util.Context context) Gets a private link resource.com.azure.core.http.rest.PagedIterable<PrivateLinkResource>
Returns the list of private link resources.com.azure.core.http.rest.PagedIterable<PrivateLinkResource>
Returns the list of private link resources.
-
Method Details
-
list
com.azure.core.http.rest.PagedIterable<PrivateLinkResource> list(String resourceGroupName, String clusterName) Returns the list of private link resources.- Parameters:
resourceGroupName
- The name of the resource group containing the Kusto cluster.clusterName
- The name of the Kusto cluster.- Returns:
- a list of private link resources as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
list
com.azure.core.http.rest.PagedIterable<PrivateLinkResource> list(String resourceGroupName, String clusterName, com.azure.core.util.Context context) Returns the list of private link resources.- Parameters:
resourceGroupName
- The name of the resource group containing the Kusto cluster.clusterName
- The name of the Kusto cluster.context
- The context to associate with this operation.- Returns:
- a list of private link resources as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
get
PrivateLinkResource get(String resourceGroupName, String clusterName, String privateLinkResourceName) Gets a private link resource.- Parameters:
resourceGroupName
- The name of the resource group containing the Kusto cluster.clusterName
- The name of the Kusto cluster.privateLinkResourceName
- The name of the private link resource.- Returns:
- a private link resource.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
getWithResponse
com.azure.core.http.rest.Response<PrivateLinkResource> getWithResponse(String resourceGroupName, String clusterName, String privateLinkResourceName, com.azure.core.util.Context context) Gets a private link resource.- Parameters:
resourceGroupName
- The name of the resource group containing the Kusto cluster.clusterName
- The name of the Kusto cluster.privateLinkResourceName
- The name of the private link resource.context
- The context to associate with this operation.- Returns:
- a private link resource along with
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-