/// <summary>
 /// Change details for a specific user.  Ability to change information is
 /// limited by role.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='client'>
 /// Client short name
 /// </param>
 /// <param name='id'>
 /// Id for the account
 /// </param>
 /// <param name='account'>
 /// Details for account to update
 /// </param>
 public static void PostUpsertAccount(this IAccounts operations, string client, string id, PublicAccount account)
 {
     operations.PostUpsertAccountAsync(client, id, account).GetAwaiter().GetResult();
 }