com.quali.cloudshell.service.SandboxAPIService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandbox-api Show documentation
Show all versions of sandbox-api Show documentation
CloudShell Sandbox java gateway project
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;
}