/// <summary>
 /// Add apps to distribution group in an org
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='orgName'>
 /// The organization's name
 /// </param>
 /// <param name='distributionGroupName'>
 /// The name of the distribution group
 /// </param>
 /// <param name='apps'>
 /// The name of the apps to be added to the distribution group. The apps have
 /// to be owned by the organization.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task AddAppsAsync(this IDistributionGroups operations, string orgName, string distributionGroupName, DistributionGroupAppAddRequest apps, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.AddAppsWithHttpMessagesAsync(orgName, distributionGroupName, apps, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
 /// <summary>
 /// Add apps to distribution group in an org
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='orgName'>
 /// The organization's name
 /// </param>
 /// <param name='distributionGroupName'>
 /// The name of the distribution group
 /// </param>
 /// <param name='apps'>
 /// The name of the apps to be added to the distribution group. The apps have
 /// to be owned by the organization.
 /// </param>
 public static void AddApps(this IDistributionGroups operations, string orgName, string distributionGroupName, DistributionGroupAppAddRequest apps)
 {
     operations.AddAppsAsync(orgName, distributionGroupName, apps).GetAwaiter().GetResult();
 }