public virtual Pageable <DdosProtectionPlan> GetAll(CancellationToken cancellationToken = default) { Page <DdosProtectionPlan> FirstPageFunc(int?pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("DdosProtectionPlanCollection.GetAll"); scope.Start(); try { var response = _restClient.GetAllByResourceGroup(Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new DdosProtectionPlan(Parent, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } Page <DdosProtectionPlan> NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("DdosProtectionPlanCollection.GetAll"); scope.Start(); try { var response = _restClient.GetAllByResourceGroupNextPage(nextLink, Id.ResourceGroupName, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value.Select(value => new DdosProtectionPlan(Parent, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } return(PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc)); }