public static Task <Models.Environment> UpdateEnvironmentDescription(this IInfrastructureClient client, string organization, string id, string description)
 {
     return(client.UpdateEnvironment(organization, id, new EnvironmentUpdate
     {
         Description = description
     }));
 }
 public static Task <Models.Environment> UpdateEnvironmentProductionFlag(this IInfrastructureClient client, string organization, string id, bool isProduction)
 {
     return(client.UpdateEnvironment(organization, id, new EnvironmentUpdate
     {
         IsProduction = isProduction
     }));
 }
 public static Task <Models.Environment> UpdateEnvironmentId(this IInfrastructureClient client, string organization, string existingId, string newId)
 {
     return(client.UpdateEnvironment(organization, existingId, new EnvironmentUpdate
     {
         Id = newId
     }));
 }