/// <summary>
 /// Returns a list of datasets from the specified workspace for an organization
 /// with an administrative scope.
 /// </summary>
 /// <remarks>
 /// &lt;br/&gt;**Required scope**: Tenant.Read.All or
 /// Tenant.ReadWrite.All&lt;br/&gt;Application only and delegated permissions
 /// are supported.&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='groupId'>
 /// The workspace id
 /// </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 ODataResponseListDataset GetDatasetsAsAdmin(this IDatasets operations, string groupId, string filter = default(string), int?top = default(int?), int?skip = default(int?))
 {
     return(operations.GetDatasetsInGroupAsAdminAsync(groupId, filter, top, skip).GetAwaiter().GetResult());
 }