/// <summary>
 /// Lists Private endpoint connections
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 public static IPage <PrivateEndpointConnectionResource> ListByFactoryNext(this IPrivateEndPointConnectionsOperations operations, string nextPageLink)
 {
     return(operations.ListByFactoryNextAsync(nextPageLink).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Lists Private endpoint connections
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <PrivateEndpointConnectionResource> > ListByFactoryNextAsync(this IPrivateEndPointConnectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListByFactoryNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Lists Private endpoint connections
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The resource group name.
 /// </param>
 /// <param name='factoryName'>
 /// The factory name.
 /// </param>
 public static IPage <PrivateEndpointConnectionResource> ListByFactory(this IPrivateEndPointConnectionsOperations operations, string resourceGroupName, string factoryName)
 {
     return(operations.ListByFactoryAsync(resourceGroupName, factoryName).GetAwaiter().GetResult());
 }