/// <summary> /// Lists the Data Lake Store accounts within a specific resource group. The /// response includes a link to the next page of results, if any. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure resource group. /// </param> /// <param name='odataQuery'> /// OData parameters to apply to the operation. /// </param> /// <param name='select'> /// OData Select statement. Limits the properties on each entry to just those /// requested, e.g. Categories?$select=CategoryName,Description. Optional. /// </param> /// <param name='count'> /// A Boolean value of true or false to request a count of the matching /// resources included with the resources in the response, e.g. /// Categories?$count=true. Optional. /// </param> public static IPage <DataLakeStoreAccountBasic> ListByResourceGroup(this IAccountsOperations operations, string resourceGroupName, ODataQuery <DataLakeStoreAccountBasic> odataQuery = default(ODataQuery <DataLakeStoreAccountBasic>), string select = default(string), bool?count = default(bool?)) { return(operations.ListByResourceGroupAsync(resourceGroupName, odataQuery, select, count).GetAwaiter().GetResult()); }
/// <summary> /// Returns all the resources of a particular type belonging to a resource /// group /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. The name is case insensitive. /// </param> public static IPage <Account> ListByResourceGroup(this IAccountsOperations operations, string resourceGroupName) { return(operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult()); }
/// <summary> /// Get all Location Based Services Accounts in a Resource Group /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the Azure Resource Group. /// </param> public static IEnumerable <LocationBasedServicesAccount> ListByResourceGroup(this IAccountsOperations operations, string resourceGroupName) { return(operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult()); }