public virtual Pageable <string> GetAssociatedResources(CancellationToken cancellationToken = default) { Page <string> FirstPageFunc(int?pageSizeHint) { using var scope = _diskEncryptionSetClientDiagnostics.CreateScope("DiskEncryptionSet.GetAssociatedResources"); scope.Start(); try { var response = _diskEncryptionSetRestClient.ListAssociatedResources(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } Page <string> NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _diskEncryptionSetClientDiagnostics.CreateScope("DiskEncryptionSet.GetAssociatedResources"); scope.Start(); try { var response = _diskEncryptionSetRestClient.ListAssociatedResourcesNextPage(nextLink, Id.SubscriptionId, Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken); return(Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } return(PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc)); }