DataLakeStoreAccountInformationCollection.GetAll Method

Definition

Overloads

GetAll(DataLakeStoreAccountInformationCollectionGetAllOptions, CancellationToken)

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.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/dataLakeStoreAccounts
  • Operation Id: DataLakeStoreAccounts_ListByAccount
GetAll(String, Nullable<Int32>, Nullable<Int32>, String, String, Nullable<Boolean>, CancellationToken)

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.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/dataLakeStoreAccounts
  • Operation Id: DataLakeStoreAccounts_ListByAccount

GetAll(DataLakeStoreAccountInformationCollectionGetAllOptions, CancellationToken)

Source:
DataLakeStoreAccountInformationCollection.cs
Source:
DataLakeStoreAccountInformationCollection.cs

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.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/dataLakeStoreAccounts
  • Operation Id: DataLakeStoreAccounts_ListByAccount
public virtual Azure.Pageable<Azure.ResourceManager.DataLakeAnalytics.DataLakeStoreAccountInformationResource> GetAll (Azure.ResourceManager.DataLakeAnalytics.Models.DataLakeStoreAccountInformationCollectionGetAllOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Azure.ResourceManager.DataLakeAnalytics.Models.DataLakeStoreAccountInformationCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeAnalytics.DataLakeStoreAccountInformationResource>
override this.GetAll : Azure.ResourceManager.DataLakeAnalytics.Models.DataLakeStoreAccountInformationCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeAnalytics.DataLakeStoreAccountInformationResource>
Public Overridable Function GetAll (options As DataLakeStoreAccountInformationCollectionGetAllOptions, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of DataLakeStoreAccountInformationResource)

Parameters

options
DataLakeStoreAccountInformationCollectionGetAllOptions

A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of DataLakeStoreAccountInformationResource that may take multiple service requests to iterate over.

Applies to

GetAll(String, Nullable<Int32>, Nullable<Int32>, String, String, Nullable<Boolean>, CancellationToken)

Source:
DataLakeStoreAccountInformationCollection.cs
Source:
DataLakeStoreAccountInformationCollection.cs

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.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/dataLakeStoreAccounts
  • Operation Id: DataLakeStoreAccounts_ListByAccount
public virtual Azure.Pageable<Azure.ResourceManager.DataLakeAnalytics.DataLakeStoreAccountInformationResource> GetAll (string filter = default, int? top = default, int? skip = default, string select = default, string orderby = default, bool? count = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeAnalytics.DataLakeStoreAccountInformationResource>
override this.GetAll : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeAnalytics.DataLakeStoreAccountInformationResource>
Public Overridable Function GetAll (Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional select As String = Nothing, Optional orderby As String = Nothing, Optional count As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of DataLakeStoreAccountInformationResource)

Parameters

filter
String

OData filter. Optional.

top
Nullable<Int32>

The number of items to return. Optional.

skip
Nullable<Int32>

The number of items to skip over before returning elements. Optional.

select
String

OData Select statement. Limits the properties on each entry to just those requested, e.g. Categories?$select=CategoryName,Description. Optional.

orderby
String

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
Nullable<Boolean>

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.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of DataLakeStoreAccountInformationResource that may take multiple service requests to iterate over.

Applies to