*/
public List<Command> addCommandsToCluster(
final String id,
final List<Command> commands) throws GenieException {
if (StringUtils.isBlank(id)) {
throw new GeniePreconditionException("Missing required parameter: id");
}
if (commands == null || commands.isEmpty()) {
throw new GeniePreconditionException("Missing required parameter: commands");
}
final HttpRequest request = BaseGenieClient.buildRequest(
Verb.POST,
StringUtils.join(