Ejemplo n.º 1
0
 /// <summary>
 /// Asynchronously creates a new storage account with the specified parameters.
 /// If an account is already created and a subsequent create request is issued
 /// with different properties, the account properties will be updated. If an
 /// account is already created and a subsequent create or update request is
 /// issued with the exact same set of properties, the request will succeed.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group within the user's subscription. The name is
 /// case insensitive.
 /// </param>
 /// <param name='accountName'>
 /// The name of the storage account within the specified resource group.
 /// Storage account names must be between 3 and 24 characters in length and use
 /// numbers and lower-case letters only.
 /// </param>
 /// <param name='parameters'>
 /// The parameters to provide for the created account.
 /// </param>
 public static StorageAccount BeginCreate(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, StorageAccountCreateParameters parameters)
 {
     return(operations.BeginCreateAsync(resourceGroupName, accountName, parameters).GetAwaiter().GetResult());
 }