PrivateLinkResources Interface

public interface PrivateLinkResources

Resource collection API of PrivateLinkResources.

Method Summary

Modifier and Type Method and Description
abstract PrivateLinkResource get(String resourceGroupName, String workspaceName, String privateLinkResourceName)

Get Private Link Resource Get private link resource in workspace.

abstract Response<PrivateLinkResource> getWithResponse(String resourceGroupName, String workspaceName, String privateLinkResourceName, Context context)

Get Private Link Resource Get private link resource in workspace.

abstract PagedIterable<PrivateLinkResource> list(String resourceGroupName, String workspaceName)

Private Link Resources Get all private link resources for a workspaces.

abstract PagedIterable<PrivateLinkResource> list(String resourceGroupName, String workspaceName, Context context)

Private Link Resources Get all private link resources for a workspaces.

Method Details

get

public abstract PrivateLinkResource get(String resourceGroupName, String workspaceName, String privateLinkResourceName)

Get Private Link Resource Get private link resource in workspace.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
privateLinkResourceName - The name of the private link resource.

Returns:

private link resource in workspace.

getWithResponse

public abstract Response<PrivateLinkResource> getWithResponse(String resourceGroupName, String workspaceName, String privateLinkResourceName, Context context)

Get Private Link Resource Get private link resource in workspace.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
privateLinkResourceName - The name of the private link resource.
context - The context to associate with this operation.

Returns:

private link resource in workspace along with Response<T>.

list

public abstract PagedIterable<PrivateLinkResource> list(String resourceGroupName, String workspaceName)

Private Link Resources Get all private link resources for a workspaces.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.

Returns:

all private link resources for a workspaces as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<PrivateLinkResource> list(String resourceGroupName, String workspaceName, Context context)

Private Link Resources Get all private link resources for a workspaces.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
context - The context to associate with this operation.

Returns:

all private link resources for a workspaces as paginated response with PagedIterable<T>.

Applies to