DataLakeStoreAccountsClient Interface

public interface DataLakeStoreAccountsClient

An instance of this class provides access to all the operations defined in DataLakeStoreAccountsClient.

Method Summary

Modifier and Type Method and Description
abstract void add(String resourceGroupName, String accountName, String dataLakeStoreAccountName)

Updates the specified Data Lake Analytics account to include the additional Data Lake Store account.

abstract Response<Void> addWithResponse(String resourceGroupName, String accountName, String dataLakeStoreAccountName, AddDataLakeStoreParameters parameters, Context context)

Updates the specified Data Lake Analytics account to include the additional Data Lake Store account.

abstract void delete(String resourceGroupName, String accountName, String dataLakeStoreAccountName)

Updates the Data Lake Analytics account specified to remove the specified Data Lake Store account.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String dataLakeStoreAccountName, Context context)

Updates the Data Lake Analytics account specified to remove the specified Data Lake Store account.

abstract DataLakeStoreAccountInformationInner get(String resourceGroupName, String accountName, String dataLakeStoreAccountName)

Gets the specified Data Lake Store account details in the specified Data Lake Analytics account.

abstract Response<DataLakeStoreAccountInformationInner> getWithResponse(String resourceGroupName, String accountName, String dataLakeStoreAccountName, Context context)

Gets the specified Data Lake Store account details in the specified Data Lake Analytics account.

abstract PagedIterable<DataLakeStoreAccountInformationInner> listByAccount(String resourceGroupName, String accountName)

Gets the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account.

abstract PagedIterable<DataLakeStoreAccountInformationInner> listByAccount(String resourceGroupName, String accountName, String filter, Integer top, Integer skip, String select, String orderby, Boolean count, Context context)

Gets the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account.

Method Details

add

public abstract void add(String resourceGroupName, String accountName, String dataLakeStoreAccountName)

Updates the specified Data Lake Analytics account to include the additional Data Lake Store account.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
dataLakeStoreAccountName - The name of the Data Lake Store account to add.

addWithResponse

public abstract Response<Void> addWithResponse(String resourceGroupName, String accountName, String dataLakeStoreAccountName, AddDataLakeStoreParameters parameters, Context context)

Updates the specified Data Lake Analytics account to include the additional Data Lake Store account.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
dataLakeStoreAccountName - The name of the Data Lake Store account to add.
parameters - The details of the Data Lake Store account.
context - The context to associate with this operation.

Returns:

delete

public abstract void delete(String resourceGroupName, String accountName, String dataLakeStoreAccountName)

Updates the Data Lake Analytics account specified to remove the specified Data Lake Store account.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
dataLakeStoreAccountName - The name of the Data Lake Store account to remove.

deleteWithResponse

public abstract Response<Void> deleteWithResponse(String resourceGroupName, String accountName, String dataLakeStoreAccountName, Context context)

Updates the Data Lake Analytics account specified to remove the specified Data Lake Store account.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
dataLakeStoreAccountName - The name of the Data Lake Store account to remove.
context - The context to associate with this operation.

Returns:

get

public abstract DataLakeStoreAccountInformationInner get(String resourceGroupName, String accountName, String dataLakeStoreAccountName)

Gets the specified Data Lake Store account details in the specified Data Lake Analytics account.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
dataLakeStoreAccountName - The name of the Data Lake Store account to retrieve.

Returns:

the specified Data Lake Store account details in the specified Data Lake Analytics account.

getWithResponse

public abstract Response<DataLakeStoreAccountInformationInner> getWithResponse(String resourceGroupName, String accountName, String dataLakeStoreAccountName, Context context)

Gets the specified Data Lake Store account details in the specified Data Lake Analytics account.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
dataLakeStoreAccountName - The name of the Data Lake Store account to retrieve.
context - The context to associate with this operation.

Returns:

the specified Data Lake Store account details in the specified Data Lake Analytics account along with Response<T>.

listByAccount

public abstract PagedIterable<DataLakeStoreAccountInformationInner> listByAccount(String resourceGroupName, String accountName)

Gets the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account. The response includes a link to the next page, if any.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.

Returns:

the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account as paginated response with PagedIterable<T>.

listByAccount

public abstract PagedIterable<DataLakeStoreAccountInformationInner> listByAccount(String resourceGroupName, String accountName, String filter, Integer top, Integer skip, String select, String orderby, Boolean count, Context context)

Gets the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account. The response includes a link to the next page, if any.

Parameters:

resourceGroupName - The name of the Azure resource group.
accountName - The name of the Data Lake Analytics account.
filter - OData filter. Optional.
top - The number of items to return. Optional.
skip - The number of items to skip over before returning elements. Optional.
select - OData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional.
orderby - OrderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. Optional.
count - The Boolean value of true or false to request a count of the matching resources included with the resources in the response, e.g. Categories?$count=true. Optional.
context - The context to associate with this operation.

Returns:

the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account as paginated response with PagedIterable<T>.

Applies to