Condividi tramite


BatchAccountOperationsExtensions.CreateAsync Metodo

Definizione

Crea un nuovo account Batch con i parametri specificati. Gli account esistenti non possono essere aggiornati con questa API e devono invece essere aggiornati con l'API Update Batch Account.

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Batch.Models.BatchAccount> CreateAsync (this Microsoft.Azure.Management.Batch.IBatchAccountOperations operations, string resourceGroupName, string accountName, Microsoft.Azure.Management.Batch.Models.BatchAccountCreateParameters parameters, System.Threading.CancellationToken cancellationToken = default);
static member CreateAsync : Microsoft.Azure.Management.Batch.IBatchAccountOperations * string * string * Microsoft.Azure.Management.Batch.Models.BatchAccountCreateParameters * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Batch.Models.BatchAccount>
<Extension()>
Public Function CreateAsync (operations As IBatchAccountOperations, resourceGroupName As String, accountName As String, parameters As BatchAccountCreateParameters, Optional cancellationToken As CancellationToken = Nothing) As Task(Of BatchAccount)

Parametri

operations
IBatchAccountOperations

Gruppo di operazioni per questo metodo di estensione.

resourceGroupName
String

Nome del gruppo di risorse contenente l'account Batch.

accountName
String

Nome dell'account Batch che deve essere univoco all'interno dell'area. I nomi dell'account batch devono essere compresi tra 3 e 24 caratteri di lunghezza e devono usare solo numeri e lettere minuscole. Questo nome viene usato come parte del nome DNS usato per accedere al servizio Batch nell'area in cui viene creato l'account. Ad esempio: http://accountname.region.batch.azure.com/.

parameters
BatchAccountCreateParameters

Parametri aggiuntivi per la creazione dell'account.

cancellationToken
CancellationToken

Token di annullamento.

Restituisce

Si applica a