public interface IRuntimeManagement
| Modifier and Type | Method and Description |
|---|---|
String |
startApplication(String appRef,
Map<String,String> inputParameters)
Starts a new application.
|
String |
startVM(String flavourRef,
String vmImageRef,
Map<String,String> inputParameters)
Starts a new virtual machine using a Flavour.
|
boolean |
stopApplication(String appInstanceRef,
Map<String,String> inputParameters)
Stops a running application.
|
boolean |
stopVM(String vmRef,
Map<String,String> inputParameters)
Stops a running virtual machine.
|
String startVM(String flavourRef, String vmImageRef, Map<String,String> inputParameters)
flavourRef - UUID of the CACTOS Flavour to boot.vmImageRef - UUID of the CACTOS VMImage to boot.inputParameters - Input parameters, e.g. tenant id.null if not successful.String startApplication(String appRef, Map<String,String> inputParameters)
appRef - UUID of the application.inputParameters - Input parameters, e.g. tenant id.null if not successful.boolean stopVM(String vmRef, Map<String,String> inputParameters)
vmRef - UUID of the CACTOS Virtual Machine to remove.inputParameters - Input parameters, e.g. tenant id.true if successful, false otherwise.boolean stopApplication(String appInstanceRef, Map<String,String> inputParameters)
appInstanceRef - UUID of the application instance.inputParameters - Input parameters, e.g. tenant id.true if successful, false otherwise.