KustoDatabaseCollection.GetAll Method

Definition

Overloads

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

GetAll(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.Pageable<Azure.ResourceManager.Kusto.KustoDatabaseResource> GetAll (int? top, string skiptoken, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.GetAll : Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function GetAll (top As Nullable(Of Integer), skiptoken As String, Optional cancellationToken As CancellationToken = Nothing) As Pageable(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

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

Applies to

GetAll(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.Pageable<Azure.ResourceManager.Kusto.KustoDatabaseResource> GetAll (System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.GetAll : System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function GetAll (Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of KustoDatabaseResource)

Parameters

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Applies to