/// <summary>
 /// Return basic information about releases.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='ownerName'>
 /// The name of the owner
 /// </param>
 /// <param name='appName'>
 /// The name of the application
 /// </param>
 /// <param name='publishedOnly'>
 /// when *true*, filters out releases that were uploaded but were never
 /// distributed. Releases that under deleted distribution groups will not be
 /// filtered out.
 /// </param>
 public static IList <BasicReleaseDetailsResponse> List(this IReleases operations, string ownerName, string appName, bool?publishedOnly = default(bool?))
 {
     return(operations.ListAsync(ownerName, appName, publishedOnly).GetAwaiter().GetResult());
 }