MockableDataLakeStoreSubscriptionResource.GetAccountsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetAccountsAsync(SubscriptionResourceGetAccountsOptions, CancellationToken) |
Lists the Data Lake Store accounts within the subscription. The response includes a link to the next page of results, if any.
|
GetAccountsAsync(String, Nullable<Int32>, Nullable<Int32>, String, String, Nullable<Boolean>, CancellationToken) |
Lists the Data Lake Store accounts within the subscription. The response includes a link to the next page of results, if any.
|
GetAccountsAsync(SubscriptionResourceGetAccountsOptions, CancellationToken)
Lists the Data Lake Store accounts within the subscription. The response includes a link to the next page of results, if any.
- Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.DataLakeStore/accounts
- Operation Id: Accounts_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData> GetAccountsAsync (Azure.ResourceManager.DataLakeStore.Models.SubscriptionResourceGetAccountsOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAccountsAsync : Azure.ResourceManager.DataLakeStore.Models.SubscriptionResourceGetAccountsOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
override this.GetAccountsAsync : Azure.ResourceManager.DataLakeStore.Models.SubscriptionResourceGetAccountsOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
Public Overridable Function GetAccountsAsync (options As SubscriptionResourceGetAccountsOptions, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of DataLakeStoreAccountBasicData)
Parameters
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
GetAccountsAsync(String, Nullable<Int32>, Nullable<Int32>, String, String, Nullable<Boolean>, CancellationToken)
Lists the Data Lake Store accounts within the subscription. The response includes a link to the next page of results, if any.
- Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.DataLakeStore/accounts
- Operation Id: Accounts_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData> GetAccountsAsync (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 GetAccountsAsync : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
override this.GetAccountsAsync : string * Nullable<int> * Nullable<int> * string * string * Nullable<bool> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.DataLakeStore.Models.DataLakeStoreAccountBasicData>
Public Overridable Function GetAccountsAsync (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.
- 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.
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
An async collection of DataLakeStoreAccountBasicData that may take multiple service requests to iterate over.
Applies to
Azure SDK for .NET