AccountOperationsExtensions.BeginCreatingAsync Method (IAccountOperations, String, String, BatchAccountCreateParameters)
Begin creating the batch account.To determine whether the operation has finished processing the request, call GetLongRunningOperationStatus.
Namespace: Microsoft.Azure.Management.Batch
Assembly: Microsoft.Azure.Management.Batch (in Microsoft.Azure.Management.Batch.dll)
Syntax
public static Task<BatchAccountCreateResponse> BeginCreatingAsync(
this IAccountOperations operations,
string resourceGroupName,
string accountName,
BatchAccountCreateParameters parameters
)
public:
[ExtensionAttribute]
static Task<BatchAccountCreateResponse^>^ BeginCreatingAsync(
IAccountOperations^ operations,
String^ resourceGroupName,
String^ accountName,
BatchAccountCreateParameters^ parameters
)
static member BeginCreatingAsync :
operations:IAccountOperations *
resourceGroupName:string *
accountName:string *
parameters:BatchAccountCreateParameters -> Task<BatchAccountCreateResponse>
<ExtensionAttribute>
Public Shared Function BeginCreatingAsync (
operations As IAccountOperations,
resourceGroupName As String,
accountName As String,
parameters As BatchAccountCreateParameters
) As Task(Of BatchAccountCreateResponse)
Parameters
operations
Type: Microsoft.Azure.Management.Batch.IAccountOperationsReference to the Microsoft.Azure.Management.Batch.IAccountOperations.
resourceGroupName
Type: System.StringRequired. The name of the resource group that contains the new Batch account.
accountName
Type: System.StringRequired. A name for the Batch account which must be unique within Azure. Batch account names must be between 3 and 24 characters in length and must use only numbers and lower-case letters. This name is used as part of the DNS name that is used to access the batch service in the region in which the account is created. For example: https://AccountName.batch.core.windows.net/.
parameters
Type: Microsoft.Azure.Management.Batch.Models.BatchAccountCreateParametersRequired. Additional parameters for account creation
Return Value
Type: System.Threading.Tasks.Task<BatchAccountCreateResponse>
Values returned by the Create operation.
See Also
AccountOperationsExtensions Class
Microsoft.Azure.Management.Batch Namespace
Return to top