/// <summary>
 /// Get list of the devices by their subscription.
 /// </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 <Device> > ListNextAsync(this IDevicesForSubscriptionOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Get list of the devices by their subscription.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='limit'>
 /// Limit the number of items returned in a single page
 /// </param>
 /// <param name='skipToken'>
 /// Skip token used for pagination
 /// </param>
 /// <param name='deviceManagementType'>
 /// Get devices only from specific type, Managed or Unmanaged. Possible values
 /// include: 'Managed', 'Unmanaged'
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <Device> > ListAsync(this IDevicesForSubscriptionOperations operations, int?limit = default(int?), string skipToken = default(string), string deviceManagementType = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListWithHttpMessagesAsync(limit, skipToken, deviceManagementType, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Get list of the devices by their subscription.
 /// </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 <Device> ListNext(this IDevicesForSubscriptionOperations operations, string nextPageLink)
 {
     return(operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Get list of the devices by their subscription.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='limit'>
 /// Limit the number of items returned in a single page
 /// </param>
 /// <param name='skipToken'>
 /// Skip token used for pagination
 /// </param>
 /// <param name='deviceManagementType'>
 /// Get devices only from specific type, Managed or Unmanaged. Possible values
 /// include: 'Managed', 'Unmanaged'
 /// </param>
 public static IPage <Device> List(this IDevicesForSubscriptionOperations operations, int?limit = default(int?), string skipToken = default(string), string deviceManagementType = default(string))
 {
     return(operations.ListAsync(limit, skipToken, deviceManagementType).GetAwaiter().GetResult());
 }