/// <summary> /// Creates a file server. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// Name of the resource group to which the resource belongs. /// </param> /// <param name='fileServerName'> /// The name of the file server within the specified resource group. File /// server names can only contain a combination of alphanumeric characters /// along with dash (-) and underscore (_). The name must be from 1 through 64 /// characters long. /// </param> /// <param name='parameters'> /// The parameters to provide for file server creation. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <FileServerInner> BeginCreateAsync(this IFileServersOperations operations, string resourceGroupName, string fileServerName, FileServerCreateParametersInner parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, fileServerName, parameters, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }