/// <summary> /// Imports database files to target database. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. /// </param> /// <param name='clusterName'> /// The name of the RedisEnterprise cluster. /// </param> /// <param name='databaseName'> /// The name of the database. /// </param> /// <param name='sasUris'> /// SAS URIs for the target blobs to import from /// </param> public static void Import(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, IList <string> sasUris) { operations.ImportAsync(resourceGroupName, clusterName, databaseName, sasUris).GetAwaiter().GetResult(); }