PrivateLinkResources Interface

public interface PrivateLinkResources

Resource collection API of PrivateLinkResources.

Method Summary

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

Gets information about the specified private link resource.

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

Gets information about the specified private link resource.

abstract PagedIterable<PrivateLinkResource> listByBatchAccount(String resourceGroupName, String accountName)

Lists all of the private link resources in the specified account.

abstract PagedIterable<PrivateLinkResource> listByBatchAccount(String resourceGroupName, String accountName, Integer maxresults, Context context)

Lists all of the private link resources in the specified account.

Method Details

get

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

Gets information about the specified private link resource.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
privateLinkResourceName - The private link resource name. This must be unique within the account.

Returns:

information about the specified private link resource.

getWithResponse

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

Gets information about the specified private link resource.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
privateLinkResourceName - The private link resource name. This must be unique within the account.
context - The context to associate with this operation.

Returns:

information about the specified private link resource along with Response<T>.

listByBatchAccount

public abstract PagedIterable<PrivateLinkResource> listByBatchAccount(String resourceGroupName, String accountName)

Lists all of the private link resources in the specified account.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.

Returns:

values returned by the List operation as paginated response with PagedIterable<T>.

listByBatchAccount

public abstract PagedIterable<PrivateLinkResource> listByBatchAccount(String resourceGroupName, String accountName, Integer maxresults, Context context)

Lists all of the private link resources in the specified account.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
accountName - A name for the Batch account which must be unique within the region. Batch account names must be between 3 and 24 characters in length and must use only numbers and lowercase letters. This name is used as part of the DNS name that is used to access the Batch service in the region in which the account is created. For example: http://accountname.region.batch.azure.com/.
maxresults - The maximum number of items to return in the response.
context - The context to associate with this operation.

Returns:

values returned by the List operation as paginated response with PagedIterable<T>.

Applies to