Beispiel #1
0
 /// <summary>
 /// Returns a list of refreshables for all capacities of which the user has
 /// access to.
 /// </summary>
 /// <remarks>
 /// &lt;br/&gt;**Required scope**: Capacity.Read.All or Capacity.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='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline, receives a comma-separated list of data
 /// types. Supported: capacities and groups
 /// </param>
 /// <param name='filter'>
 /// Filters the results based on a boolean condition
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results. Use with top to fetch results beyond the first
 /// 1000.
 /// </param>
 public static Refreshables GetRefreshables(this ICapacitiesOperations operations, int top, string expand = default(string), string filter = default(string), int?skip = default(int?))
 {
     return(operations.GetRefreshablesAsync(top, expand, filter, skip).GetAwaiter().GetResult());
 }