public virtual AsyncPageable <VirtualMachine> GetAllAsync(CancellationToken cancellationToken = default) { async Task <Page <VirtualMachine> > FirstPageFunc(int?pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("VirtualMachineContainer.GetAll"); scope.Start(); try { var response = await _restClient.GetAllAsync(Id.ResourceGroupName, cancellationToken : cancellationToken).ConfigureAwait(false); return(Page.FromValues(response.Value.Value.Select(value => new VirtualMachine(Parent, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } async Task <Page <VirtualMachine> > NextPageFunc(string nextLink, int?pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("VirtualMachineContainer.GetAll"); scope.Start(); try { var response = await _restClient.GetAllNextPageAsync(nextLink, Id.ResourceGroupName, cancellationToken : cancellationToken).ConfigureAwait(false); return(Page.FromValues(response.Value.Value.Select(value => new VirtualMachine(Parent, value)), response.Value.NextLink, response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } } return(PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc)); }