DataLakeStoreAccountCollection.GetAll Method

Definition

Overloads

GetAll(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
GetAll(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

GetAll(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.Pageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData> GetAll (Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountCollectionGetAllOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
override this.GetAll : Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountCollectionGetAllOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
Public Overridable Function GetAll (options As DataLakeStoreAccountCollectionGetAllOptions, Optional cancellationToken As CancellationToken = Nothing) As Pageable(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

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

Applies to

GetAll(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.Pageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData> 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.DataLakeStore.Models.DataLakeStoreAccountBasicData>
override this.GetAll : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
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 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

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

Applies to