MockableCosmosDBTenantResource.CheckNameExistsDatabaseAccount Method

Definition

Checks that the Azure Cosmos DB account name already exists. A valid account name may contain only lowercase letters, numbers, and the '-' character, and must be between 3 and 50 characters.

  • Request Path: /providers/Microsoft.DocumentDB/databaseAccountNames/{accountName}
  • Operation Id: DatabaseAccounts_CheckNameExists
  • Default Api Version: 2024-05-15-preview
  • Resource: CosmosDBAccountResource
public virtual Azure.Response<bool> CheckNameExistsDatabaseAccount (string accountName, System.Threading.CancellationToken cancellationToken = default);
abstract member CheckNameExistsDatabaseAccount : string * System.Threading.CancellationToken -> Azure.Response<bool>
override this.CheckNameExistsDatabaseAccount : string * System.Threading.CancellationToken -> Azure.Response<bool>
Public Overridable Function CheckNameExistsDatabaseAccount (accountName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of Boolean)

Parameters

accountName
String

Cosmos DB database account name.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

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

accountName is null.

Applies to