/// <summary>
 /// Clones the specified tile from **"My Workspace"**.
 /// </summary>
 /// <remarks>
 /// &lt;br/&gt;If target report id and target dataset are not specified, the
 /// following can occur:&lt;li&gt;When a tile clone is performed within the
 /// same workspace, the report and dataset links will be cloned from the source
 /// tile.&lt;/li&gt;&lt;li&gt;When cloning a tile within a different workspace,
 /// report and dataset links will be rested, and the tile will be
 /// broken.&lt;/li&gt;&lt;br/&gt;**Note:** When a tile is cloned to another
 /// workspace and bound to another report and dataset, it is cloned as is with
 /// its underlying query containing the original report
 /// filters.&lt;br/&gt;&lt;br/&gt;**Required scope**: Dashboard.ReadWrite.All
 /// &lt;br/&gt;To set the permissions scope, see [Register an
 /// app](https://docs.microsoft.com/power-bi/developer/register-app).
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='dashboardId'>
 /// The dashboard id
 /// </param>
 /// <param name='tileId'>
 /// The tile id
 /// </param>
 /// <param name='requestParameters'>
 /// Clone tile parameters
 /// </param>
 public static Tile CloneTile(this IDashboardsOperations operations, System.Guid dashboardId, System.Guid tileId, CloneTileRequest requestParameters)
 {
     return(operations.CloneTileAsync(dashboardId, tileId, requestParameters).GetAwaiter().GetResult());
 }