共用方式為


KustoDatabaseCollection.GetAllAsync Method

Definition

Overloads

GetAllAsync(CancellationToken)

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
GetAllAsync(Nullable<Int32>, String, CancellationToken)

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

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

top
Nullable<Int32>

limit the number of results.

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