KustoDatabaseCollection.CreateOrUpdateAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateOrUpdateAsync(WaitUntil, String, KustoDatabaseData, CancellationToken) |
Creates or updates a database.
|
CreateOrUpdateAsync(WaitUntil, String, KustoDatabaseData, Nullable<KustoDatabaseCallerRole>, CancellationToken) |
Creates or updates a database.
|
CreateOrUpdateAsync(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 System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>> CreateOrUpdateAsync (Azure.WaitUntil waitUntil, string databaseName, Azure.ResourceManager.Kusto.KustoDatabaseData data, System.Threading.CancellationToken cancellationToken);
abstract member CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>>
override this.CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.Kusto.KustoDatabaseData * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>>
Public Overridable Function CreateOrUpdateAsync (waitUntil As WaitUntil, databaseName As String, 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.
- 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
CreateOrUpdateAsync(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 System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Kusto.KustoDatabaseResource>> CreateOrUpdateAsync (Azure.WaitUntil waitUntil, string databaseName, Azure.ResourceManager.Kusto.KustoDatabaseData data, Azure.ResourceManager.Kusto.Models.KustoDatabaseCallerRole? callerRole = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdateAsync : Azure.WaitUntil * string * 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.CreateOrUpdateAsync : Azure.WaitUntil * string * 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 CreateOrUpdateAsync (waitUntil As WaitUntil, databaseName As String, 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.
- 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
Azure SDK for .NET