/// <summary>
 /// List build service agent pool.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the Service resource.
 /// </param>
 /// <param name='buildServiceName'>
 /// The name of the build service resource.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <BuildServiceAgentPoolResource> > ListAsync(this IBuildServiceAgentPoolOperations operations, string resourceGroupName, string serviceName, string buildServiceName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, buildServiceName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Get build service agent pool.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the Service resource.
 /// </param>
 /// <param name='buildServiceName'>
 /// The name of the build service resource.
 /// </param>
 /// <param name='agentPoolName'>
 /// The name of the build service agent pool resource.
 /// </param>
 public static BuildServiceAgentPoolResource Get(this IBuildServiceAgentPoolOperations operations, string resourceGroupName, string serviceName, string buildServiceName, string agentPoolName)
 {
     return(operations.GetAsync(resourceGroupName, serviceName, buildServiceName, agentPoolName).GetAwaiter().GetResult());
 }
 /// <summary>
 /// List build service agent pool.
 /// </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 <BuildServiceAgentPoolResource> ListNext(this IBuildServiceAgentPoolOperations operations, string nextPageLink)
 {
     return(operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult());
 }