/// <summary>
 /// Gets available SKUs for API Management service
 /// </summary>
 /// <remarks>
 /// Gets all available SKU for a given API Management service
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the API Management service.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <ResourceSkuResult> > ListAvailableServiceSkusAsync(this IApiManagementServiceSkusOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListAvailableServiceSkusWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Gets available SKUs for API Management service
 /// </summary>
 /// <remarks>
 /// Gets all available SKU for a given API Management service
 /// </remarks>
 /// <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 <ResourceSkuResult> ListAvailableServiceSkusNext(this IApiManagementServiceSkusOperations operations, string nextPageLink)
 {
     return(operations.ListAvailableServiceSkusNextAsync(nextPageLink).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Gets available SKUs for API Management service
 /// </summary>
 /// <remarks>
 /// Gets all available SKU for a given API Management service
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the API Management service.
 /// </param>
 public static IPage <ResourceSkuResult> ListAvailableServiceSkus(this IApiManagementServiceSkusOperations operations, string resourceGroupName, string serviceName)
 {
     return(operations.ListAvailableServiceSkusAsync(resourceGroupName, serviceName).GetAwaiter().GetResult());
 }