Dela via


KustoDatabaseCollection.CreateOrUpdate Method

Definition

Overloads

CreateOrUpdate(WaitUntil, String, KustoDatabaseData, CancellationToken)

Creates or updates a database.

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

Creates or updates a database.

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

CreateOrUpdate(WaitUntil, String, KustoDatabaseData, CancellationToken)

Source:
KustoDatabaseCollection.cs

Creates or updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_CreateOrUpdate
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string databaseName, Azure.ResourceManager.Kusto.KustoDatabaseData data, System.Threading.CancellationToken cancellationToken);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, databaseName As String, 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.

databaseName
String

The name of the database in the Kusto cluster.

data
KustoDatabaseData

The database parameters supplied to the CreateOrUpdate operation.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

databaseName is an empty string, and was expected to be non-empty.

databaseName or data is null.

Applies to

CreateOrUpdate(WaitUntil, String, KustoDatabaseData, Nullable<KustoDatabaseCallerRole>, CancellationToken)

Source:
KustoDatabaseCollection.cs

Creates or updates a database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}
  • Operation Id: Databases_CreateOrUpdate
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string databaseName, Azure.ResourceManager.Kusto.KustoDatabaseData data, Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole? callerRole = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Kusto.KustoDatabaseData * Nullable<Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole> * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Kusto.KustoDatabaseData * Nullable<Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole> * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, databaseName As String, 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.

databaseName
String

The name of the database in the Kusto cluster.

data
KustoDatabaseData

The database parameters supplied to the CreateOrUpdate 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

databaseName is an empty string, and was expected to be non-empty.

databaseName or data is null.

Applies to