Share via


MySqlServerCollection.CreateOrUpdateAsync Method

Definition

Creates a new server or updates an existing server. The update action will overwrite the existing server.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}
  • Operation Id: Servers_Create
  • Default Api Version: 2017-12-01
  • Resource: MySqlServerResource
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.MySql.MySqlServerResource>> CreateOrUpdateAsync (Azure.WaitUntil waitUntil, string serverName, Azure.ResourceManager.MySql.Models.MySqlServerCreateOrUpdateContent content, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.MySql.Models.MySqlServerCreateOrUpdateContent * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.MySql.MySqlServerResource>>
override this.CreateOrUpdateAsync : Azure.WaitUntil * string * Azure.ResourceManager.MySql.Models.MySqlServerCreateOrUpdateContent * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.MySql.MySqlServerResource>>
Public Overridable Function CreateOrUpdateAsync (waitUntil As WaitUntil, serverName As String, content As MySqlServerCreateOrUpdateContent, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ArmOperation(Of MySqlServerResource))

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.

serverName
String

The name of the server.

content
MySqlServerCreateOrUpdateContent

The required parameters for creating or updating a server.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

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

serverName or content is null.

Applies to