示例#1
0
 /// <summary>
 /// Swaps the packages of two spaces, i.e. the packages from source space go into the target space and vice versa.
 /// </summary>
 /// <param name="sourceSpace">The first space to swap the package from.</param>
 /// <param name="syncImportedPackages">After import sanchronize the package data from the new data source.</param>
 /// <param name="targetSpace">The second space to swap the package with.</param>
 /// <returns>Returns a Birst job ID which can be used to query if the job is complete.</returns>
 public string SwapSpaceForPackages(string sourceSpace, string targetSpace, bool syncImportedPackages)
 {
     return(_webService.swapSpaceForPackages(LoginToken, sourceSpace, targetSpace, syncImportedPackages));
 }