All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spotinst.sdkjava.model.SpotinstElastigroupClient Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model;

import com.spotinst.sdkjava.client.http.UserAgentConfig;
import com.spotinst.sdkjava.client.response.BaseSpotinstService;
import com.spotinst.sdkjava.enums.EventsLogsSeverityEnum;
import com.spotinst.sdkjava.enums.ProcessNameEnum;
import com.spotinst.sdkjava.exception.HttpError;
import com.spotinst.sdkjava.exception.SpotinstHttpException;
import com.spotinst.sdkjava.model.bl.elastigroup.aws.*;
import com.spotinst.sdkjava.model.requests.elastigroup.ElastigroupInstanceLockRequest;
import com.spotinst.sdkjava.model.requests.elastigroup.ElastigroupInstanceUnLockRequest;
import com.spotinst.sdkjava.model.requests.elastigroup.aws.*;
import com.spotinst.sdkjava.utils.TimeUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.LinkedList;
import java.util.List;
import java.util.Objects;

/**
 * Created by talzur on 11/01/2017.
 */
public class SpotinstElastigroupClient {
    private static final Logger                                      LOGGER =
            LoggerFactory.getLogger(SpotinstElastigroupClient.class);
    //region Members
    private              String                                      authToken;
    private              String                                      account;
    private              ISpotinstElastigroupRepo                    spotinstElastigroupRepo;
    private              ISpotinstElastigroupActiveInstanceRepo      spotinstElastigroupActiveInstanceRepo;
    private              ISpotinstElastigroupInstanceHealthinessRepo spotinstElastigroupInstanceHealthinessRepo;
    private              ISpotinstEventsLogsRepo                     spotinstElastigroupEventLogRepo;
    //endregion

    public ISpotinstElastigroupRepo getSpotinstElastigroupRepo() {
        return this.spotinstElastigroupRepo;
    }

    public void setSpotinstElastigroupRepo() {
        this.spotinstElastigroupRepo = SpotinstRepoManager.getInstance().getSpotinstElastigroupRepo();
    }

    public ISpotinstElastigroupActiveInstanceRepo getSpotinstElastigroupActiveInstanceRepo() {
        return this.spotinstElastigroupActiveInstanceRepo;
    }

    public void setSpotinstElastigroupActiveInstanceRepo() {
        this.spotinstElastigroupActiveInstanceRepo =
                SpotinstRepoManager.getInstance().getSpotinstElastigroupActiveInstanceRepo();
    }

    public ISpotinstElastigroupInstanceHealthinessRepo getSpotinstElastigroupInstanceHealthinessRepo() {
        return this.spotinstElastigroupInstanceHealthinessRepo;
    }

    public void setInstanceHealthinessRepo() {
        this.spotinstElastigroupInstanceHealthinessRepo =
                SpotinstRepoManager.getInstance().getSpotinstInstanceHealthinessRepo();
    }

    public ISpotinstEventsLogsRepo getSpotinstElastigroupEventLogRepo() {
        return this.spotinstElastigroupEventLogRepo;
    }

    public void setSpotinstElastigroupEventLogRepo() {
        this.spotinstElastigroupEventLogRepo = SpotinstRepoManager.getInstance().getSpotinstElastigroupEventLogRepo();
    }

    //region Constructor
    public SpotinstElastigroupClient(String authToken, String account) {
        this(authToken, account, null);
    }

    public SpotinstElastigroupClient(String authToken, String account, List userAgentConfigurations) {
        this.authToken = authToken;
        this.account = account;

        setSpotinstElastigroupRepo();
        setSpotinstElastigroupActiveInstanceRepo();
        setInstanceHealthinessRepo();
        setSpotinstElastigroupEventLogRepo();

        if (userAgentConfigurations != null) {
            LOGGER.info(String.format("Adding custom user agents: %s", userAgentConfigurations));
            BaseSpotinstService.addCustomUserAgents(userAgentConfigurations);
        }
    }

    //endregion

    //region Methods
    public Elastigroup createElastigroup(ElastigroupCreationRequest elastigroupCreationRequest) {

        Elastigroup retVal;

        Elastigroup elastigroupToCreate = elastigroupCreationRequest.getElastigroup();

        RepoGenericResponse creationResponse =
                getSpotinstElastigroupRepo().create(elastigroupToCreate, authToken, account);

        if (creationResponse.isRequestSucceed()) {
            retVal = creationResponse.getValue();
        }
        else {
            List httpExceptions = creationResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to create elastigroup. Code: %s. Message: %s.",
                                  httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }
        return retVal;
    }

    public Boolean updateElastigroup(ElastigroupUpdateRequest elastigroupUpdateRequest, String elastigroupId) {

        Boolean retVal;

        Elastigroup elastigroupToUpdate = elastigroupUpdateRequest.getElastigroup();
        RepoGenericResponse updateResponse =
                getSpotinstElastigroupRepo().update(elastigroupId, elastigroupToUpdate, authToken, account);

        if (updateResponse.isRequestSucceed()) {
            retVal = updateResponse.getValue();
        }
        else {
            List httpExceptions = updateResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to update elastigroup. Code: %s. Message: %s.",
                                  httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }
        return retVal;
    }

    public Elastigroup cloneElastigroup(ElastigroupCloneRequest elastigroupCloneRequest, String elastigroupId) {
        Elastigroup retVal = null;

        Elastigroup elastigroupModifications = elastigroupCloneRequest.getElastigroup();
        RepoGenericResponse cloneResponse =
                getSpotinstElastigroupRepo().clone(elastigroupId, elastigroupModifications, authToken, account);

        if (cloneResponse.isRequestSucceed()) {
            retVal = cloneResponse.getValue();
        }
        else {
            String errorMessage = "Error encountered while attempting to clone elastigroup";
            handleFailure(cloneResponse, errorMessage);
        }

        return retVal;
    }

    public Boolean enterInstanceStandby(String instanceId) {
        Boolean retVal;

        RepoGenericResponse elastigroupStandbyResponse =
                getSpotinstElastigroupRepo().enterInstanceStandby(instanceId, authToken, account);
        if (elastigroupStandbyResponse.isRequestSucceed()) {
            retVal = elastigroupStandbyResponse.getValue();
        }
        else {
            List httpExceptions = elastigroupStandbyResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(String.format(
                    "Error encountered while attempting to enter instance standby mode. Code: %s. Message: %s.",
                    httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public Boolean exitInstanceStandby(String instanceId) {
        Boolean retVal;

        RepoGenericResponse elastigroupStandbyResponse =
                getSpotinstElastigroupRepo().exitInstanceStandby(instanceId, authToken, account);
        if (elastigroupStandbyResponse.isRequestSucceed()) {
            retVal = elastigroupStandbyResponse.getValue();
        }
        else {
            List httpExceptions = elastigroupStandbyResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(String.format(
                    "Error encountered while attempting to exit instance standby mode. Code: %s. Message: %s.",
                    httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public Boolean deleteElastigroup(ElastigroupDeletionRequest elastigroupDeletionRequest) {

        Boolean               retVal;
        String                elastigroupToDeleteId = elastigroupDeletionRequest.getElastigroupId();
        ApiDeleteGroupRequest deleteRequest         = elastigroupDeletionRequest.getDeleteRequest();
        RepoGenericResponse elastigroupDeletionResponse =
                getSpotinstElastigroupRepo().delete(elastigroupToDeleteId, authToken, account, deleteRequest);

        if (elastigroupDeletionResponse.isRequestSucceed()) {
            retVal = elastigroupDeletionResponse.getValue();
        }
        else {
            List httpExceptions = elastigroupDeletionResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to delete elastigroup. Code: %s. Message: %s.",
                                  httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public Boolean detachInstances(ElastigroupDetachInstancesRequest detachRequest, String elastigroupId) {

        Boolean retVal = null;

        if (detachRequest.getInstancesToDetach().size() > 0) {
            RepoGenericResponse detachResponse =
                    getSpotinstElastigroupRepo().detachInstances(elastigroupId, detachRequest, authToken, account);
            if (detachResponse.isRequestSucceed()) {
                retVal = detachResponse.getValue();
            }
            else {
                List httpExceptions = detachResponse.getHttpExceptions();
                HttpError       httpException  = httpExceptions.get(0);
                LOGGER.error(
                        String.format("Error encountered while attempting to detach instances. Code: %s. Message: %s.",
                                      httpException.getCode(), httpException.getMessage()));
                throw new SpotinstHttpException(httpException.getMessage());
            }
        }
        else {
            LOGGER.error("No instances to detach.");
        }

        return retVal;
    }

    public Boolean lockInstance(ElastigroupInstanceLockRequest lockRequest, String instanceId) {

        Boolean retVal;

        RepoGenericResponse lockResponse = getSpotinstElastigroupRepo().lockInstance(lockRequest, authToken, instanceId);

        if (lockResponse.isRequestSucceed()) {
            retVal = lockResponse.getValue();
        }
        else {
            List httpExceptions = lockResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to lock instance. Code: %s. Message: %s.",
                            httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public Boolean unlockInstance(ElastigroupInstanceUnLockRequest unlockRequest, String instanceId) {

        Boolean retVal;

        RepoGenericResponse unlockResponse = getSpotinstElastigroupRepo().unlockInstance(unlockRequest, authToken, instanceId);

        if (unlockResponse.isRequestSucceed()) {
            retVal = unlockResponse.getValue();
        }
        else {
            List httpExceptions = unlockResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to unlock instance. Code: %s. Message: %s.",
                            httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public Boolean simulateInstanceInterruption(List instanceIds) {

        Boolean retVal;

        RepoGenericResponse interruptionResponse = getSpotinstElastigroupRepo().simulateInstanceInterruption(authToken, account, instanceIds);

        if (interruptionResponse.isRequestSucceed()) {
            retVal = interruptionResponse.getValue();
        }
        else {
            List httpExceptions = interruptionResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to interrupt instance. Code: %s. Message: %s.",
                            httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public List getActiveInstances(
            ElastigroupGetActiveInstancesRequest elastigroupGetActiveInstancesRequest) {

        List retVal;

        String elastigroupId = elastigroupGetActiveInstancesRequest.getElastigroupId();

        ActiveInstanceFilter filter = new ActiveInstanceFilter();
        filter.setElastigroupId(elastigroupId);
        RepoGenericResponse> instancesResponse =
                getSpotinstElastigroupActiveInstanceRepo().getAll(filter, authToken, account);

        if (instancesResponse.isRequestSucceed()) {
            retVal = instancesResponse.getValue();
        }
        else {
            List httpExceptions = instancesResponse.getHttpExceptions();
            HttpError       httpException  = httpExceptions.get(0);
            LOGGER.error(
                    String.format("Error encountered while attempting to get active instances. Code: %s. Message: %s.",
                                  httpException.getCode(), httpException.getMessage()));
            throw new SpotinstHttpException(httpException.getMessage());
        }

        return retVal;
    }

    public List getInstanceHealthiness(
            ElastigroupGetInstanceHealthinessRequest elastigroupGetInstanceHealthinessRequest) {
        List retVal = new LinkedList<>();

        String elastigroupId = elastigroupGetInstanceHealthinessRequest.getElastigroupId();

        RepoGenericResponse> instancesHealthinessResponse =
                getSpotinstElastigroupInstanceHealthinessRepo().getAll(elastigroupId, authToken, account);

        if (instancesHealthinessResponse.isRequestSucceed()) {
            retVal = instancesHealthinessResponse.getValue();
        }
        else {
            String errorMessage = "Error encountered while attempting to get instance healthiness of elastigroup";
            handleFailure(instancesHealthinessResponse, errorMessage);
        }

        return retVal;
    }

    /**
     * Describe all the Elastigroups in your account and their full JSON
     * 

* This route accepts a combination of parameters in the request object: * either “minCreatedAt” and “maxCreatedAt or “activeFrom” and “activeTo”. * A combination of the two types together is not supported. * * @param elastigroupGetAllRequest - a request that defines which elastigroups to fetch * @return List of Elastigroups which correspond to the given filters */ public List getAllElastigroups(ElastigroupGetAllRequest elastigroupGetAllRequest) { List retVal; GroupFilter filter = new GroupFilter(); filter.setMaxCreatedAt(TimeUtils.convertDateToISO8601(elastigroupGetAllRequest.getMaxCreatedAt())); filter.setMinCreatedAt(TimeUtils.convertDateToISO8601(elastigroupGetAllRequest.getMinCreatedAt())); filter.setActiveFrom(TimeUtils.convertDateToISO8601(elastigroupGetAllRequest.getActiveFrom())); filter.setActiveTo(TimeUtils.convertDateToISO8601(elastigroupGetAllRequest.getActiveTo())); filter.setName(elastigroupGetAllRequest.getName()); filter.setIncludeDeleted(elastigroupGetAllRequest.getIncludeDeleted()); RepoGenericResponse> elastigroupsRepoGenericResponse = getSpotinstElastigroupRepo().getAll(filter, authToken, account); if (elastigroupsRepoGenericResponse.isRequestSucceed()) { retVal = elastigroupsRepoGenericResponse.getValue(); } else { List httpExceptions = elastigroupsRepoGenericResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to get all elastigroups. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Elastigroup getElastigroup(ElastigroupGetRequest elastigroupGetRequest) { Elastigroup retVal; String elastigroupId = elastigroupGetRequest.getElastigroupId(); RepoGenericResponse elastigroupRepoGenericResponse = getSpotinstElastigroupRepo().get(elastigroupId, authToken, account); if (elastigroupRepoGenericResponse.isRequestSucceed()) { retVal = elastigroupRepoGenericResponse.getValue(); } else { List httpExceptions = elastigroupRepoGenericResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to get elastigroup. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } /** * This function is used to scale up an Elastigroup by taking an ElastigroupScalingRequest that is sent by the user and sending it to * ISpotinstElastigroupRepo.scaleUp(). * * @param elastigroupScalingRequest ElastigroupScalingRequest object that can be converted to a JSON to send as a request * @return ElastigroupScalingResponse Object that is returned from the scale down request from ISpotinstElastigroupRepo.scaleUp() */ public ElastigroupScalingResponse scaleGroupUp(ElastigroupScalingRequest elastigroupScalingRequest) { ElastigroupScalingResponse retVal; String elastigroupId = elastigroupScalingRequest.getElastigroupId(); ActiveInstanceFilter filter = new ActiveInstanceFilter(); filter.setElastigroupId(elastigroupId); RepoGenericResponse elastigroupScalingResponse = getSpotinstElastigroupRepo().scaleUp(elastigroupScalingRequest, authToken, account); if (elastigroupScalingResponse.isRequestSucceed()) { retVal = elastigroupScalingResponse.getValue(); } else { List httpExceptions = elastigroupScalingResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to scale group up. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } /** * This function is used to scale down an Elastigroup by takingin an ElastigroupScalingRequest that is sent by the user and sending it to * ISpotinstElastigroupRepo.scaleDown(). * * @param elastigroupScalingRequest ElastigroupScalingRequest object that can be converted to a JSON to send as a request * @return ElastigroupScalingResponse Object that is returned from the scale down request from ISpotinstElastigroupRepo.scaleDown() */ public ElastigroupScalingResponse scaleGroupDown(ElastigroupScalingRequest elastigroupScalingRequest) { ElastigroupScalingResponse retVal; String elastigroupId = elastigroupScalingRequest.getElastigroupId(); ActiveInstanceFilter filter = new ActiveInstanceFilter(); filter.setElastigroupId(elastigroupId); RepoGenericResponse elastigroupScalingResponse = getSpotinstElastigroupRepo().scaleDown(elastigroupScalingRequest, authToken, account); if (elastigroupScalingResponse.isRequestSucceed()) { retVal = elastigroupScalingResponse.getValue(); } else { List httpExceptions = elastigroupScalingResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to scale group down. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public SuspendedProcesses suspendProcess(ElastigroupSuspendProcessesRequest suspendProcessesRequest) { SuspendedProcesses retVal; String elastigroupId = suspendProcessesRequest.getElastigroupId(); List suspensions = suspendProcessesRequest.getSuspensions(); RepoGenericResponse suspendProcessesResponse = getSpotinstElastigroupRepo().suspendProcesses(elastigroupId, suspensions, authToken, account); if (suspendProcessesResponse.isRequestSucceed()) { retVal = suspendProcessesResponse.getValue(); } else { List httpExceptions = suspendProcessesResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to suspend processes. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public SuspendedProcesses removeSuspensions(ElastigroupRemoveSuspensionsRequest request) { SuspendedProcesses retVal; String elastigroupId = request.getElastigroupId(); List processNames = request.getProcesses(); RepoGenericResponse removeSuspensionsResponse = getSpotinstElastigroupRepo().removeSuspensions(elastigroupId, processNames, authToken, account); if (removeSuspensionsResponse.isRequestSucceed()) { retVal = removeSuspensionsResponse.getValue(); } else { List httpExceptions = removeSuspensionsResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to remove process suspensions. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public SuspendedProcesses getSuspendedProcesses(ElastigroupGetSuspensionsRequest request) { SuspendedProcesses retVal; String elastigroupId = request.getElastigroupId(); RepoGenericResponse suspendedProcessesResponse = getSpotinstElastigroupRepo().getSuspendedProcesses(elastigroupId, authToken, account); if (suspendedProcessesResponse.isRequestSucceed()) { retVal = suspendedProcessesResponse.getValue(); } else { List httpExceptions = suspendedProcessesResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get process suspensions. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public List getEventsLogs(GetEventsLogsRequest getEventsLogsRequest) { List retVal = null; String fromDate = getEventsLogsRequest.getFromDate(); String toDate = getEventsLogsRequest.getToDate(); EventsLogsSeverityEnum logsSeverity = getEventsLogsRequest.getSeverity(); String resourceId = getEventsLogsRequest.getResourceId(); String limit = getEventsLogsRequest.getLimit(); String elastigroupId = getEventsLogsRequest.getElastigroupId(); EventsLogsFilter filter = new EventsLogsFilter(); filter.setFromDate(fromDate); filter.setToDate(toDate); if (Objects.nonNull(logsSeverity)) { filter.setSeverity(logsSeverity.getName()); } else { filter.setSeverity(null); } filter.setResourceId(resourceId); filter.setLimit(limit); filter.setElastigroupId(elastigroupId); RepoGenericResponse> eventsLogsResponse = getSpotinstElastigroupEventLogRepo().getAll(filter, authToken, account); if (eventsLogsResponse.isRequestSucceed()) { retVal = eventsLogsResponse.getValue(); } else { String errorMessage = "Error encountered while attempting to get events logs"; handleFailure(eventsLogsResponse, errorMessage); } return retVal; } //endregion //Private Methods private void handleFailure(RepoGenericResponse response, String errorMessage) { List httpExceptions = response.getHttpExceptions(); LOGGER.error(String.format("%s. Errors: %s", errorMessage, httpExceptions)); throw new SpotinstHttpException(httpExceptions.get(0).getMessage()); } //endregion public SuspendedScalingPolicy suspendScalingPolicies( ElastigroupSuspendScalingPoliciesRequest suspendScalingPoliciesRequest) { SuspendedScalingPolicy retVal; String elastigroupId = suspendScalingPoliciesRequest.getGroupId(); String policyName = suspendScalingPoliciesRequest.getPolicyName(); ScalingPolicySuspension suspensions = suspendScalingPoliciesRequest.getSuspension(); RepoGenericResponse suspendScalingPoliciesResponse = getSpotinstElastigroupRepo() .suspendScalingPolicies(elastigroupId, policyName, suspensions, authToken, account); if (suspendScalingPoliciesResponse.isRequestSucceed()) { retVal = suspendScalingPoliciesResponse.getValue(); } else { List httpExceptions = suspendScalingPoliciesResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to suspend scaling policies. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean removeSuspendedScalingPolicies( ElastigroupSuspendScalingPoliciesRequest suspendScalingPoliciesRequest) { Boolean retVal; String elastigroupId = suspendScalingPoliciesRequest.getGroupId(); String policyName = suspendScalingPoliciesRequest.getPolicyName(); RepoGenericResponse removeResponse = getSpotinstElastigroupRepo() .removeSuspendedScalingPolicies(elastigroupId, policyName, authToken, account); if (removeResponse.isRequestSucceed()) { retVal = removeResponse.getValue(); } else { List httpExceptions = removeResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to remove suspended scaling policies. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public List getAllSuspendedScalingPolicies( ElastigroupSuspendScalingPoliciesRequest suspendScalingPoliciesRequest) { List retVal; String elastigroupId = suspendScalingPoliciesRequest.getGroupId(); RepoGenericResponse getAllResponse = getSpotinstElastigroupRepo().getAllSuspendedScalingPolicies(elastigroupId, authToken, account); if (getAllResponse.isRequestSucceed()) { retVal = getAllResponse.getValue().getScalePolicySuspensions(); } else { List httpExceptions = getAllResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to list suspended scaling policies. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupStartDeploymentResponse startDeployment(ElastigroupStartDeploymentRequest startDeploymentRequest, String elastigroupId) { ElastigroupStartDeploymentResponse isDeploymentStarted; ElastigroupStartDeployment elastigroupStartDeploymentRequest = startDeploymentRequest.getElastigroupDeployment(); RepoGenericResponse startDeploymentResponse = getSpotinstElastigroupRepo().startDeployment(elastigroupId, elastigroupStartDeploymentRequest, authToken, account); if(startDeploymentResponse.isRequestSucceed()){ isDeploymentStarted =startDeploymentResponse.getValue(); } else { List httpExceptions = startDeploymentResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to start deployment. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return isDeploymentStarted; } public ElastigroupStopDeploymentResponse stopDeployment(ElastigroupStopDeploymentRequest stopDeploymentRequest, String elastigroupId, String deploymentId) { ElastigroupStopDeploymentResponse isDeploymentStopped; //ElastigroupStopDeploymentRequest elastigroupStopDeploymentRequest = stopDeploymentRequest.getStopDeployment(); RepoGenericResponse stopDeploymentResponse = getSpotinstElastigroupRepo().stopDeployment(stopDeploymentRequest, elastigroupId , deploymentId , authToken, account); if(stopDeploymentResponse.isRequestSucceed()){ isDeploymentStopped = stopDeploymentResponse.getValue(); } else { List httpExceptions = stopDeploymentResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to stop deployment. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return isDeploymentStopped; } public ElastigroupGetDeploymentStatusResponse getDeploymentStatus(String elastigroupId, String deploymentId) { ElastigroupGetDeploymentStatusResponse getDeploymentResponse; RepoGenericResponse getDeploymentStatusResponse = getSpotinstElastigroupRepo().getDeploymentStatus(elastigroupId, deploymentId , authToken, account); if(getDeploymentStatusResponse.isRequestSucceed()){ getDeploymentResponse =getDeploymentStatusResponse.getValue(); } else { List httpExceptions = getDeploymentStatusResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get deployment status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return getDeploymentResponse; } public List getGroupDeploymentStatus(String elastigroupId) { List getGroupDeploymentResponse; RepoGenericResponse> getGroupDeploymentStatusResponse = getSpotinstElastigroupRepo().getGroupDeploymentStatus(elastigroupId, authToken, account); if(getGroupDeploymentStatusResponse.isRequestSucceed()){ getGroupDeploymentResponse =getGroupDeploymentStatusResponse.getValue(); } else { List httpExceptions = getGroupDeploymentStatusResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to group deployment status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return getGroupDeploymentResponse; } public ElastigroupGetDeploymentActionResponse applyDeploymentAction( ElastigroupGetDeploymentActionRequest getDeploymentActionRequest, String elastigroupId, String deploymentId) { ElastigroupGetDeploymentActionResponse getGroupDeploymentResponse; ElastigroupDeploymentStrategyOnFailure getDeploymentActionRequestBody = getDeploymentActionRequest.getElastigroupDeploymentAction(); RepoGenericResponse getDeploymentActionResponse = getSpotinstElastigroupRepo().applyDeploymentAction(getDeploymentActionRequestBody, elastigroupId,deploymentId, authToken, account); if(getDeploymentActionResponse.isRequestSucceed()){ getGroupDeploymentResponse =getDeploymentActionResponse.getValue(); } else { List httpExceptions = getDeploymentActionResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to apply deployment status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return getGroupDeploymentResponse; } public List getItfMigrationRulesStatus( String elastigroupId) { List retVal; RepoGenericResponse> getAllResponse = getSpotinstElastigroupRepo().getItfMigrationRulesStatus(elastigroupId, authToken, account); if (getAllResponse.isRequestSucceed()) { retVal = getAllResponse.getValue(); } else { List httpExceptions = getAllResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get ITF migration rules status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean retryItfMigration( RetryItfMigrationRequest retryRequest) { Boolean retVal; String elastigroupId = retryRequest.getGroupId(); RepoGenericResponse getResponse = getSpotinstElastigroupRepo().retryItfMigration(elastigroupId, retryRequest,authToken, account); if (getResponse.isRequestSucceed()) { retVal = getResponse.getValue(); } else { List httpExceptions = getResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to retry ITF migration. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean updateCapacity(ElastigroupUpdateCapacityRequest updateCapacityRequest, String elastigroupId) { Boolean updateCapacity; ElastigroupUpdateCapacityConfiguration elastigroupUpdateCapacityRequest = updateCapacityRequest.getElastigroupUpdateCapacity(); RepoGenericResponse updateCapacityResponse = getSpotinstElastigroupRepo().updateCapacity(elastigroupId, elastigroupUpdateCapacityRequest, authToken, account); if(updateCapacityResponse.isRequestSucceed()){ updateCapacity =updateCapacityResponse.getValue(); } else { List httpExceptions = updateCapacityResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to update capacity. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return updateCapacity; } public Elastigroup importEC2Instance(ElastigroupImportEC2InstanceRequest importEC2InstanceRequest, String instanceId, String region) { Elastigroup importEC2Instance; ElastigroupImportEC2Instance elastigroupImportEC2Instance = importEC2InstanceRequest.getElastigroupImportEC2Instance(); RepoGenericResponse importEC2InstanceResponse = getSpotinstElastigroupRepo().importEC2Instance(elastigroupImportEC2Instance, instanceId, region, authToken, account); if(importEC2InstanceResponse.isRequestSucceed()){ importEC2Instance =importEC2InstanceResponse.getValue(); } else { List httpExceptions = importEC2InstanceResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to import EC2 instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return importEC2Instance; } public Boolean pauseStatefulInstance(String elastigroupId, String statefulInstanceId) { Boolean retVal; RepoGenericResponse pauseStatefulInstanceResponse = getSpotinstElastigroupRepo().pauseStatefulInstance(elastigroupId, statefulInstanceId, authToken, account); if (pauseStatefulInstanceResponse.isRequestSucceed()) { retVal = pauseStatefulInstanceResponse.getValue(); } else { List httpExceptions = pauseStatefulInstanceResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to pause the stateful instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean resumeStatefulInstance(String elastigroupId, String statefulInstanceId) { Boolean retVal; RepoGenericResponse resumeStatefulInstanceResponse = getSpotinstElastigroupRepo().resumeStatefulInstance(elastigroupId, statefulInstanceId, authToken, account); if (resumeStatefulInstanceResponse.isRequestSucceed()) { retVal = resumeStatefulInstanceResponse.getValue(); } else { List httpExceptions = resumeStatefulInstanceResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to resume the stateful instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean recycleStatefulInstance(String elastigroupId, String statefulInstanceId) { Boolean retVal; RepoGenericResponse recycleStatefulInstanceResponse = getSpotinstElastigroupRepo().recycleStatefulInstance(elastigroupId, statefulInstanceId, authToken, account); if (recycleStatefulInstanceResponse.isRequestSucceed()) { retVal = recycleStatefulInstanceResponse.getValue(); } else { List httpExceptions = recycleStatefulInstanceResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to recycle the stateful instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean deallocateStatefulInstance(String elastigroupId, String statefulInstanceId) { Boolean retVal; RepoGenericResponse deallocateStatefulInstanceResponse = getSpotinstElastigroupRepo().deallocateStatefulInstance(elastigroupId, statefulInstanceId, authToken, account); if (deallocateStatefulInstanceResponse.isRequestSucceed()) { retVal = deallocateStatefulInstanceResponse.getValue(); } else { List httpExceptions = deallocateStatefulInstanceResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to deallocate the stateful instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public List listStatefulInstances(String elastigroupId) { List listStatefulInstances; RepoGenericResponse > listStatefulInstancesResponse = getSpotinstElastigroupRepo().listStatefulInstances(elastigroupId, authToken, account); if(listStatefulInstancesResponse.isRequestSucceed()){ listStatefulInstances =listStatefulInstancesResponse.getValue(); } else { List httpExceptions = listStatefulInstancesResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to list the stateful instances. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return listStatefulInstances; } public Boolean deleteVolumeInStatefulInstance(String elastigroupId, String statefulInstanceId, String volumeId) { Boolean retVal; RepoGenericResponse deleteVolumeInStatefulInstanceResponse = getSpotinstElastigroupRepo().deleteVolumeInStatefulInstance(elastigroupId, statefulInstanceId, volumeId, authToken, account); if (deleteVolumeInStatefulInstanceResponse.isRequestSucceed()) { retVal = deleteVolumeInStatefulInstanceResponse.getValue(); } else { List httpExceptions = deleteVolumeInStatefulInstanceResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to delete the volume in stateful instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public List getElastilog(ElastigroupGetElastilogRequest elastigroupGetElastilogRequest, String elastigroupId) { List getLogs; RepoGenericResponse > getLogsResponse = getSpotinstElastigroupRepo().getElastilog(elastigroupGetElastilogRequest, elastigroupId, authToken); if(getLogsResponse.isRequestSucceed()){ getLogs =getLogsResponse.getValue(); } else { List httpExceptions = getLogsResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get the Elastilog. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return getLogs; } public Elastigroup importASG(ImportASGRequest importASGRequest) { Elastigroup elastigroup; RepoGenericResponse importASGResponse = getSpotinstElastigroupRepo().importASG(importASGRequest, authToken); if(importASGResponse.isRequestSucceed()){ elastigroup = importASGResponse.getValue(); } else { List httpExceptions = importASGResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to import ASG. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return elastigroup; } public List getInstanceTypesByRegion(String region) { List getInstanceTypesByRegionResponse; RepoGenericResponse > getInstanceTypesResponse = getSpotinstElastigroupRepo().getInstanceTypesByRegion(region, authToken, account); if(getInstanceTypesResponse.isRequestSucceed()){ getInstanceTypesByRegionResponse = getInstanceTypesResponse.getValue(); } else { List httpExceptions = getInstanceTypesResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get the instance types by region. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return getInstanceTypesByRegionResponse; } public List getSuggestedInstanceTypes(GetSuggestedInstanceTypeRequest suggestedInstanceTypeRequest) { List getInstanceTypesByRegionResponse; RepoGenericResponse > getInstanceTypesResponse = getSpotinstElastigroupRepo().getSuggestedInstanceTypes(suggestedInstanceTypeRequest, authToken, account); if(getInstanceTypesResponse.isRequestSucceed()){ getInstanceTypesByRegionResponse = getInstanceTypesResponse.getValue(); } else { List httpExceptions = getInstanceTypesResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get the suggested instance types. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return getInstanceTypesByRegionResponse; } public ElastigroupEcsClusterRollResponse initiateClusterRollInEGWithECS(ElastigroupEcsInitiateRoll initiateRollRequest, String groupId) { ElastigroupEcsClusterRollResponse retVal; RepoGenericResponse initiateRollResponse = getSpotinstElastigroupRepo().initiateClusterRollInEGWithECS(initiateRollRequest, groupId, authToken, account); if (initiateRollResponse.isRequestSucceed()) { retVal = initiateRollResponse.getValue(); } else { List httpExceptions = initiateRollResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to Initiate Roll for Elastigroup with ECS. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public List listECSClusterRollsPerEG(String groupId) { List retVal; RepoGenericResponse> listRollsResponse = getSpotinstElastigroupRepo().listECSClusterRollsPerEG(groupId, authToken, account); if (listRollsResponse.isRequestSucceed()) { retVal = listRollsResponse.getValue(); } else { List httpExceptions = listRollsResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to list all the Rolls in the cluster. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupEcsClusterRollResponse getECSClusterRollinEG(String groupId, String rollId) { ElastigroupEcsClusterRollResponse retVal; RepoGenericResponse getRollResponse = getSpotinstElastigroupRepo().getECSClusterRollinEG(groupId, rollId, authToken, account); if (getRollResponse.isRequestSucceed()) { retVal = getRollResponse.getValue(); } else { List httpExceptions = getRollResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to get the requested Roll details for the cluster. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupEcsClusterRollResponse updateECSClusterRollinEG(ElastigroupEcsUpdateRollRequest updateRollRequest, String groupId) { ElastigroupEcsClusterRollResponse retVal; RepoGenericResponse updateRollResponse = getSpotinstElastigroupRepo().updateECSClusterRollinEG(updateRollRequest, groupId, authToken, account); if (updateRollResponse.isRequestSucceed()) { retVal = updateRollResponse.getValue(); } else { List httpExceptions = updateRollResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to update the roll status to Stopped. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupImportStatefulInstanceResponse importStatefulInstance(ElastigroupImportStatefulInstance importRequest) { ElastigroupImportStatefulInstanceResponse retVal; RepoGenericResponse importResponse = getSpotinstElastigroupRepo().importStatefulInstance(importRequest, authToken, account); if(importResponse.isRequestSucceed()){ retVal = importResponse.getValue(); } else { List httpExceptions = importResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to import Stateful Instance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupGetImportStatefulStatusResponse getStatefulImportStatus(String statefulMigrationGroupID) { ElastigroupGetImportStatefulStatusResponse listStatefulInstances; RepoGenericResponse getStatefulImportStatusResponse = getSpotinstElastigroupRepo().getStatefulImportStatus(statefulMigrationGroupID, authToken, account); if(getStatefulImportStatusResponse.isRequestSucceed()){ listStatefulInstances =getStatefulImportStatusResponse.getValue(); } else { List httpExceptions = getStatefulImportStatusResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format( "Error encountered while attempting to get the stateful import status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return listStatefulInstances; } public ElastigroupTerminateStatefulInstanceImportResponse terminateStatefulInstanceImport(ElastigroupTerminateStatefulInstanceImportRequest updateRequest, String statefulMigrationGroupID) { ElastigroupTerminateStatefulInstanceImportResponse retVal; RepoGenericResponse updateResponse = getSpotinstElastigroupRepo().terminateStatefulInstanceImport(updateRequest, statefulMigrationGroupID, authToken, account); if (updateResponse.isRequestSucceed()) { retVal = updateResponse.getValue(); } else { List httpExceptions = updateResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to terminate the stateful instance during import process. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupTerminateStatefulInstanceImportResponse deleteStatefulInstanceImport(String statefulMigrationGroupID) { ElastigroupTerminateStatefulInstanceImportResponse retVal; RepoGenericResponse updateResponse = getSpotinstElastigroupRepo().deleteStatefulInstanceImport(statefulMigrationGroupID, authToken, account); if (updateResponse.isRequestSucceed()) { retVal = updateResponse.getValue(); } else { List httpExceptions = updateResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to delete the stateful instance import. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean createInstanceSignal(ElastigroupCreateInstanceSignal elastigroupCreateInstanceSignalReq) { Boolean retVal; RepoGenericResponse elastigroupCreateInstanceSignalResponse = getSpotinstElastigroupRepo().createInstanceSignal(elastigroupCreateInstanceSignalReq, authToken, account); if (elastigroupCreateInstanceSignalResponse.isRequestSucceed()) { retVal = elastigroupCreateInstanceSignalResponse.getValue(); } else { List httpExceptions = elastigroupCreateInstanceSignalResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to create instance signal. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupGetInstanceStatusResponse getInstanceStatus(String instanceId) { ElastigroupGetInstanceStatusResponse retVal; RepoGenericResponse elastigroupRepoGenericResponse = getSpotinstElastigroupRepo().getInstanceStatus(instanceId, authToken, account); if (elastigroupRepoGenericResponse.isRequestSucceed()) { retVal = elastigroupRepoGenericResponse.getValue(); } else { List httpExceptions = elastigroupRepoGenericResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to get instance status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean startBeanstalkMaintenance(String groupId) { Boolean retVal; RepoGenericResponse response = getSpotinstElastigroupRepo().startBeanstalkMaintenance(groupId, authToken, account); if (response.isRequestSucceed()) { retVal = response.getValue(); } else { List httpExceptions = response.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to start beanstalk maintenance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean finishBeanstalkMaintenance(String groupId) { Boolean retVal; RepoGenericResponse response = getSpotinstElastigroupRepo().finishBeanstalkMaintenance(groupId, authToken, account); if (response.isRequestSucceed()) { retVal = response.getValue(); } else { List httpExceptions = response.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while attempting to start beanstalk maintenance. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public ElastigroupGetBeanstalkMaintenanceStatusResponse getBeanstalkMaintenanceStatus(String groupId) { ElastigroupGetBeanstalkMaintenanceStatusResponse retVal; RepoGenericResponse status = getSpotinstElastigroupRepo().getBeanstalkMaintenanceStatus(groupId, authToken, account); if (status.isRequestSucceed()) { retVal = status.getValue(); } else { List httpExceptions = status.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to get beanstalk maintenance status. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Elastigroup getBeanstalkConfig(String environmentId, String region) { Elastigroup retVal; RepoGenericResponse config = getSpotinstElastigroupRepo().getBeanstalkConfig(environmentId, region, authToken, account); if (config.isRequestSucceed()) { retVal = config.getValue(); } else { List httpExceptions = config.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to get beanstalk configuration. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Elastigroup beanstalkReimport(String groupId) { Elastigroup retVal; RepoGenericResponse response = getSpotinstElastigroupRepo().beanstalkReimport(groupId, authToken, account); if (response.isRequestSucceed()) { retVal = response.getValue(); } else { List httpExceptions = response.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error(String.format("Error encountered while attempting to reimport beanstalk. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } public Boolean amiBackup(String groupId) { Boolean retVal; RepoGenericResponse amiBackupResponse = getSpotinstElastigroupRepo().amiBackup(groupId, authToken, account); if (amiBackupResponse.isRequestSucceed()) { retVal = amiBackupResponse.getValue(); } else { List httpExceptions = amiBackupResponse.getHttpExceptions(); HttpError httpException = httpExceptions.get(0); LOGGER.error( String.format("Error encountered while taking AMI Backup. Code: %s. Message: %s.", httpException.getCode(), httpException.getMessage())); throw new SpotinstHttpException(httpException.getMessage()); } return retVal; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy