Пример #1
0
 /// <summary>
 /// Return list of software update configuration machine runs corresponding to the software update configuration run with the given correlation id
 /// <see href="http://aka.ms/azureautomationsdk/softwareupdateconfigurationoperations" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='correlationId'>
 /// Id of the parent software update configuration run
 /// </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>
 public static SoftwareUpdateConfigurationMachineRunListResult ListByCorrelationId(
     this ISoftwareUpdateConfigurationMachineRunsOperations operations,
     string resourceGroupName, string automationAccountName, Guid correlationId,
     string clientRequestId = default(string), string skip = default(string), string top = default(string))
 {
     return(operations.ListByCorrelationIdAsync(resourceGroupName, automationAccountName, correlationId, clientRequestId, skip, top).GetAwaiter().GetResult());
 }