Dela via


PrivateLinkResources Interface

public interface PrivateLinkResources

Type representing PrivateLinkResources.

Method Summary

Modifier and Type Method and Description
abstract rx.Observable<PrivateLinkResource> getAsync(String resourceGroupName, String parentType, String parentName, String privateLinkResourceName)

Get a private link resource.

abstract rx.Observable<PrivateLinkResource> listByResourceAsync(String resourceGroupName, String parentType, String parentName)

List private link resources under specific topic or domain.

Method Details

getAsync

public abstract Observable<PrivateLinkResource> getAsync(String resourceGroupName, String parentType, String parentName, String privateLinkResourceName)

Get a private link resource. Get properties of a private link resource.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
parentType - The type of the parent resource. This can be either 'topics' or 'domains'.
parentName - The name of the parent resource (namely, either, the topic name or domain name).
privateLinkResourceName - The name of private link resource.

Returns:

the observable for the request

listByResourceAsync

public abstract Observable<PrivateLinkResource> listByResourceAsync(String resourceGroupName, String parentType, String parentName)

List private link resources under specific topic or domain. List all the private link resources under a topic or domain.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription.
parentType - The type of the parent resource. This can be either 'topics' or 'domains'.
parentName - The name of the parent resource (namely, either, the topic name or domain name).

Returns:

the observable for the request

Applies to