Share via


MySqlServerCollection.CreateOrUpdate 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 Azure.ResourceManager.ArmOperation<Azure.ResourceManager.MySql.MySqlServerResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string serverName, Azure.ResourceManager.MySql.Models.MySqlServerCreateOrUpdateContent content, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.MySql.Models.MySqlServerCreateOrUpdateContent * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.MySql.MySqlServerResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.MySql.Models.MySqlServerCreateOrUpdateContent * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.MySql.MySqlServerResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, serverName As String, content As MySqlServerCreateOrUpdateContent, Optional cancellationToken As CancellationToken = Nothing) As 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