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

com.quali.cloudshell.service.SandboxAPIService Maven / Gradle / Ivy

The newest version!
package com.quali.cloudshell.service;


import com.quali.cloudshell.api.*;
import com.quali.cloudshell.qsExceptions.SandboxApiException;

import java.io.IOException;

public interface SandboxAPIService
{
      ResponseData login() throws RuntimeException, IOException, SandboxApiException;
      ResponseData getBlueprints() throws RuntimeException, IOException, SandboxApiException;
      ResponseData createSandbox(String blueprintId, CreateSandboxRequest sandboxRequest) throws RuntimeException, IOException, SandboxApiException;
      void stopSandbox(String sandboxId) throws RuntimeException, IOException, SandboxApiException;
      ResponseData getSandbox(String sandboxId) throws RuntimeException, IOException, SandboxApiException;
      ResponseData getSandboxActivity(String sandboxId, Integer tail , Long from_event_id, String since, Boolean error_only) throws RuntimeException, IOException, SandboxApiException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy