/// <summary>
 /// Returns a list of dashboards for the organization.
 /// </summary>
 /// <remarks>
 /// **Note:** The user must have administrator rights (such as Office 365
 /// Global Administrator or Power BI Service Administrator) to call this API or
 /// authenticate via service principal. &lt;br/&gt;This API allows 200 requests
 /// per hour at maximum. &lt;br/&gt;&lt;br/&gt;**Required scope**:
 /// Tenant.Read.All or Tenant.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='expand'>
 /// Expands related entities inline, receives a comma-separated list of data
 /// types. Supported: tiles
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a boolean condition
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results
 /// </param>
 public static Dashboards GetDashboardsAsAdmin(this IDashboardsOperations operations, string expand = default(string), string filter = default(string), int?top = default(int?), int?skip = default(int?))
 {
     return(operations.GetDashboardsAsAdminAsync(expand, filter, top, skip).GetAwaiter().GetResult());
 }