Share via


KustoDatabaseResource.Update Method

Definition

Overloads

Update(WaitUntil, KustoDatabaseData, CancellationToken)

Updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_Update
Update(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

Update(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 Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource> Update (Azure.WaitUntil waitUntil, Azure.ResourceManager.Kusto.KustoDatabaseData data, System.Threading.CancellationToken cancellationToken);
abstract member Update : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.Update : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function Update (waitUntil As WaitUntil, data As KustoDatabaseData, cancellationToken As CancellationToken) As 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

Update(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 Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource> Update (Azure.WaitUntil waitUntil, Azure.ResourceManager.Kusto.KustoDatabaseData data, Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole? callerRole = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Update : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * Nullable<Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole> * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.Update : Azure.WaitUntil * Azure.ResourceManager.Kusto.KustoDatabaseData * Nullable<Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole> * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function Update (waitUntil As WaitUntil, data As KustoDatabaseData, Optional callerRole As Nullable(Of KustoDatabaseCallerRole) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As 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