Package org.openstack4j.api.murano.v1
Interface MuranoDeploymentService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
MuranoDeploymentServiceImpl
public interface MuranoDeploymentService extends RestService
- Author:
- Nikolay Mahotkin.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends Deployment>list(String environmentId)List all the deployments of the environment.List<? extends Report>reports(String environmentId, String deploymentId)List<? extends Report>reports(String environmentId, String deploymentId, List<String> serviceIds)Get the reports (deployment logs) of the specified deployment.
-
-
-
Method Detail
-
list
List<? extends Deployment> list(String environmentId)
List all the deployments of the environment.- Parameters:
environmentId- The environment id.- Returns:
- Deployment list.
-
reports
List<? extends Report> reports(String environmentId, String deploymentId, List<String> serviceIds)
Get the reports (deployment logs) of the specified deployment.- Parameters:
environmentId- environment id.deploymentId- deployment id.serviceIds- (optional) list of service ids.- Returns:
- Report list.
-
-