/************************************************************************* * Copyright 2009-2016 Eucalyptus Systems, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/. * * Please contact Eucalyptus Systems, Inc., 6755 Hollister Ave., Goleta * CA 93117, USA or visit http://www.eucalyptus.com/licenses/ if you need * additional information or have any questions. ************************************************************************/ package com.eucalyptus.loadbalancing.workflow; import java.util.List; import com.amazonaws.services.simpleworkflow.flow.annotations.Execute; import com.amazonaws.services.simpleworkflow.flow.annotations.GetState; import com.amazonaws.services.simpleworkflow.flow.annotations.Workflow; import com.amazonaws.services.simpleworkflow.flow.annotations.WorkflowRegistrationOptions; /** * @author Sang-Min Park (sangmin.park@hpe.com) * */ @Workflow @WorkflowRegistrationOptions(defaultExecutionStartToCloseTimeoutSeconds = 120, defaultTaskStartToCloseTimeoutSeconds = 60) public interface DisableAvailabilityZoneWorkflow { @Execute(name = "DisableAvailabilityZone", version = "1.0") void disableAvailabilityZone(final String accountId, final String loadbalancer, final List<String> availabilityZones); @GetState ElbWorkflowState getState(); }