/// <summary>
 /// Return list of software update configuration machine runs
 /// <see href="http://aka.ms/azureautomationsdk/softwareupdateconfigurationoperations" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of an Azure Resource group.
 /// </param>
 /// <param name='automationAccountName'>
 /// The name of the automation account.
 /// </param>
 /// <param name='clientRequestId'>
 /// Identifies this specific client request.
 /// </param>
 /// <param name='filter'>
 /// The filter to apply on the operation. You can use the following filters:
 /// 'properties/osType', 'properties/status', 'properties/startTime', and
 /// 'properties/softwareUpdateConfiguration/name'
 /// </param>
 /// <param name='skip'>
 /// number of entries you skip before returning results
 /// </param>
 /// <param name='top'>
 /// Maximum number of entries returned in the results collection
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <SoftwareUpdateConfigurationMachineRunListResult> ListAsync(this ISoftwareUpdateConfigurationMachineRunsOperations operations, string resourceGroupName, string automationAccountName, string clientRequestId = default(string), string filter = default(string), string skip = default(string), string top = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, automationAccountName, clientRequestId, filter, skip, top, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }