Aracılığıyla paylaş


PrivateLinkResources Interface

public interface PrivateLinkResources

Resource collection API of PrivateLinkResources.

Method Summary

Modifier and Type Method and Description
abstract GroupIdInformation get(String resourceGroupName, String resourceName, String resourceId)

Get the specified private link resource for the given Digital Twin.

abstract Response<GroupIdInformation> getWithResponse(String resourceGroupName, String resourceName, String resourceId, Context context)

Get the specified private link resource for the given Digital Twin.

abstract GroupIdInformationResponse list(String resourceGroupName, String resourceName)

List private link resources for given Digital Twin.

abstract Response<GroupIdInformationResponse> listWithResponse(String resourceGroupName, String resourceName, Context context)

List private link resources for given Digital Twin.

Method Details

get

public abstract GroupIdInformation get(String resourceGroupName, String resourceName, String resourceId)

Get the specified private link resource for the given Digital Twin.

Parameters:

resourceGroupName - The name of the resource group that contains the DigitalTwinsInstance.
resourceName - The name of the DigitalTwinsInstance.
resourceId - The name of the private link resource.

Returns:

the specified private link resource for the given Digital Twin.

getWithResponse

public abstract Response<GroupIdInformation> getWithResponse(String resourceGroupName, String resourceName, String resourceId, Context context)

Get the specified private link resource for the given Digital Twin.

Parameters:

resourceGroupName - The name of the resource group that contains the DigitalTwinsInstance.
resourceName - The name of the DigitalTwinsInstance.
resourceId - The name of the private link resource.
context - The context to associate with this operation.

Returns:

the specified private link resource for the given Digital Twin along with Response<T>.

list

public abstract GroupIdInformationResponse list(String resourceGroupName, String resourceName)

List private link resources for given Digital Twin.

Parameters:

resourceGroupName - The name of the resource group that contains the DigitalTwinsInstance.
resourceName - The name of the DigitalTwinsInstance.

Returns:

the available private link resources for a Digital Twin.

listWithResponse

public abstract Response<GroupIdInformationResponse> listWithResponse(String resourceGroupName, String resourceName, Context context)

List private link resources for given Digital Twin.

Parameters:

resourceGroupName - The name of the resource group that contains the DigitalTwinsInstance.
resourceName - The name of the DigitalTwinsInstance.
context - The context to associate with this operation.

Returns:

the available private link resources for a Digital Twin along with Response<T>.

Applies to