Example #1
0
        public virtual Pageable <AfdSecretResource> GetAll(CancellationToken cancellationToken = default)
        {
            Page <AfdSecretResource> FirstPageFunc(int?pageSizeHint)
            {
                using var scope = _afdSecretClientDiagnostics.CreateScope("AfdSecretCollection.GetAll");
                scope.Start();
                try
                {
                    var response = _afdSecretRestClient.ListByProfile(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken);
                    return(Page.FromValues(response.Value.Value.Select(value => new AfdSecretResource(Client, value)), response.Value.NextLink, response.GetRawResponse()));
                }
                catch (Exception e)
                {
                    scope.Failed(e);
                    throw;
                }
            }

            Page <AfdSecretResource> NextPageFunc(string nextLink, int?pageSizeHint)
            {
                using var scope = _afdSecretClientDiagnostics.CreateScope("AfdSecretCollection.GetAll");
                scope.Start();
                try
                {
                    var response = _afdSecretRestClient.ListByProfileNextPage(nextLink, Id.SubscriptionId, Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken);
                    return(Page.FromValues(response.Value.Value.Select(value => new AfdSecretResource(Client, value)), response.Value.NextLink, response.GetRawResponse()));
                }
                catch (Exception e)
                {
                    scope.Failed(e);
                    throw;
                }
            }

            return(PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc));
        }