DataLakeStoreAccountCollection.GetAllAsync Method

Definition

Overloads

GetAllAsync(DataLakeStoreAccountCollectionGetAllOptions, CancellationToken)

Lists the Data Lake Store accounts within a specific resource group. The response includes a link to the next page of results, if any.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeStore/accounts
  • Operation Id: Accounts_ListByResourceGroup
GetAllAsync(String, Nullable<Int32>, Nullable<Int32>, String, String, Nullable<Boolean>, CancellationToken)

Lists the Data Lake Store accounts within a specific resource group. The response includes a link to the next page of results, if any.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeStore/accounts
  • Operation Id: Accounts_ListByResourceGroup

GetAllAsync(DataLakeStoreAccountCollectionGetAllOptions, CancellationToken)

Source:
DataLakeStoreAccountCollection.cs
Source:
DataLakeStoreAccountCollection.cs

Lists the Data Lake Store accounts within a specific resource group. The response includes a link to the next page of results, if any.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeStore/accounts
  • Operation Id: Accounts_ListByResourceGroup
public virtual Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData> GetAllAsync (Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountCollectionGetAllOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
override this.GetAllAsync : Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
Public Overridable Function GetAllAsync (options As DataLakeStoreAccountCollectionGetAllOptions, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of DataLakeStoreAccountBasicData)

Parameters

options
DataLakeStoreAccountCollectionGetAllOptions

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

An async collection of DataLakeStoreAccountBasicData that may take multiple service requests to iterate over.

Applies to

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

Source:
DataLakeStoreAccountCollection.cs
Source:
DataLakeStoreAccountCollection.cs

Lists the Data Lake Store accounts within a specific resource group. The response includes a link to the next page of results, if any.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeStore/accounts
  • Operation Id: Accounts_ListByResourceGroup
public virtual Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData> GetAllAsync (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 GetAllAsync : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
override this.GetAllAsync : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
Public Overridable Function GetAllAsync (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 AsyncPageable(Of DataLakeStoreAccountBasicData)

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>

A 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

An async collection of DataLakeStoreAccountBasicData that may take multiple service requests to iterate over.

Applies to