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