KustoDatabaseCollection.GetAllAsync 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
GetAllAsync(CancellationToken) |
Returns the list of databases of the given Kusto cluster.
|
GetAllAsync(Nullable<Int32>, String, CancellationToken) |
Returns the list of databases of the given Kusto cluster.
|
GetAllAsync(CancellationToken)
- Source:
- KustoDatabaseCollection.cs
Returns the list of databases of the given Kusto cluster.
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases
- Operation Id: Databases_ListByCluster
public virtual Azure.AsyncPageable<Azure.ResourceManager.Kusto.KustoDatabaseResource> GetAllAsync (System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.GetAllAsync : System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function GetAllAsync (Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of KustoDatabaseResource)
Parameters
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
An async collection of KustoDatabaseResource that may take multiple service requests to iterate over.
Applies to
GetAllAsync(Nullable<Int32>, String, CancellationToken)
- Source:
- KustoDatabaseCollection.cs
Returns the list of databases of the given Kusto cluster.
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases
- Operation Id: Databases_ListByCluster
public virtual Azure.AsyncPageable<Azure.ResourceManager.Kusto.KustoDatabaseResource> GetAllAsync (int? top, string skiptoken, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function GetAllAsync (top As Nullable(Of Integer), skiptoken As String, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of KustoDatabaseResource)
Parameters
- skiptoken
- String
Skiptoken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skiptoken parameter that specifies a starting point to use for subsequent calls.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
An async collection of KustoDatabaseResource that may take multiple service requests to iterate over.
Applies to
Azure SDK for .NET