KustoDatabaseResource.UpdateAsync Method

Definition

Overloads

UpdateAsync(WaitUntil, KustoDatabaseData, CancellationToken)

Updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_Update
UpdateAsync(WaitUntil, KustoDatabaseData, Nullable<KustoDatabaseCallerRole>, CancellationToken)

Updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_Update

UpdateAsync(WaitUntil, KustoDatabaseData, CancellationToken)

Source:
KustoDatabaseResource.cs

Updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_Update
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>> UpdateAsync (Azure.WaitUntil waitUntil, Azure.ResourceManager.Kusto.KustoDatabaseData data, System.Threading.CancellationToken cancellationToken);
abstract member UpdateAsync : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>>
override this.UpdateAsync : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>>
Public Overridable Function UpdateAsync (waitUntil As WaitUntil, data As KustoDatabaseData, cancellationToken As CancellationToken) As Task(Of ArmOperation(Of KustoDatabaseResource))

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

data
KustoDatabaseData

The database parameters supplied to the Update operation.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

data is null.

Applies to

UpdateAsync(WaitUntil, KustoDatabaseData, Nullable<KustoDatabaseCallerRole>, CancellationToken)

Source:
KustoDatabaseResource.cs

Updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_Update
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>> UpdateAsync (Azure.WaitUntil waitUntil, Azure.ResourceManager.Kusto.KustoDatabaseData data, Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole? callerRole = default, System.Threading.CancellationToken cancellationToken = default);
abstract member UpdateAsync : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * Nullable<Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>>
override this.UpdateAsync : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * Nullable<Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>>
Public Overridable Function UpdateAsync (waitUntil As WaitUntil, data As KustoDatabaseData, Optional callerRole As Nullable(Of KustoDatabaseCallerRole) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ArmOperation(Of KustoDatabaseResource))

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

data
KustoDatabaseData

The database parameters supplied to the Update operation.

callerRole
Nullable<KustoDatabaseCallerRole>

By default, any user who run operation on a database become an Admin on it. This property allows the caller to exclude the caller from Admins list.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

data is null.

Applies to