/** * $Id: $ * $Date: $ * */ package org.xmlsh.aws; import java.io.IOException; import java.util.List; import javax.xml.stream.XMLStreamException; import org.xmlsh.annotations.Command; import org.xmlsh.aws.util.AWSASCommand; import org.xmlsh.core.CoreException; import org.xmlsh.core.Options; import org.xmlsh.core.SafeXMLStreamWriter; import org.xmlsh.core.UnexpectedException; import org.xmlsh.core.XValue; import org.xmlsh.core.io.OutputPort; import org.xmlsh.util.Util; import com.amazonaws.services.autoscaling.model.ResumeProcessesRequest; import net.sf.saxon.s9api.SaxonApiException; @Command("as-resume-processes") public class asResumeProcesses extends AWSASCommand { @Override public int run(List<XValue> args) throws Exception { Options opts = getOptions(); opts.parse(args); args = opts.getRemainingArgs(); if(args.size() < 2) usage("as-resume-processes group process..."); String group = args.remove(0).toString(); setSerializeOpts(this.getSerializeOpts(opts)); setSerializeOpts(this.getSerializeOpts(opts)); try { getASClient(opts); } catch (UnexpectedException e) { usage(e.getLocalizedMessage()); return 1; } int ret = resume(group, Util.toStringList(args)); return ret; } private int resume(String group, List<String> list) throws IOException, XMLStreamException, SaxonApiException, CoreException { OutputPort stdout = this.getStdout(); mWriter = new SafeXMLStreamWriter( stdout.asXMLStreamWriter(getSerializeOpts())); startDocument(); startElement(this.getName()); ResumeProcessesRequest request = new ResumeProcessesRequest() .withAutoScalingGroupName(group).withScalingProcesses(list); traceCall("resumeProcesses"); getAWSClient().resumeProcesses(request); endElement(); endDocument(); return 0; } } /* * Copyright (C) 2008-2014 David A. Lee. * * The contents of this file are subject to the "Simplified BSD License" (the * "License"); * you may not use this file except in compliance with the License. You may * obtain a copy of the * License at http://www.opensource.org/licenses/bsd-license.php * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. * See the License for the specific language governing rights and limitations * under the License. * * The Original Code is: all this file. * * The Initial Developer of the Original Code is David A. Lee * * Portions created by (your name) are Copyright (C) (your legal entity). All * Rights Reserved. * * Contributor(s): David A. Lee * */