Interface SatelliteService
@Path("/satellite")
@Produces({"text/xml","application/xml","application/json"})
public interface SatelliteService
Services related to XL Satellites and hosts attached to them.
-
Method Summary
Modifier and TypeMethodDescriptioncountHosts
(String ciId, String name) Returns information about the configuration of the satellite.Returns information about the configuration of the satellite.listHosts
(String ciId, String name, com.xebialabs.deployit.engine.api.dto.Paging paging, com.xebialabs.deployit.engine.api.dto.Ordering order)
-
Method Details
-
getInfo
Returns information about the configuration of the satellite. For example: version.- Returns:
- an information object.
-
getInfos
Returns information about the configuration of the satellite. For example: version.- Returns:
- an list of information objects.
-
listHosts
@GET @Path("hosts/{id:.+}") List<ConfigurationItemId> listHosts(@PathParam("id") String ciId, @QueryParam("name") String name, @BeanParam com.xebialabs.deployit.engine.api.dto.Paging paging, @QueryParam("order") com.xebialabs.deployit.engine.api.dto.Ordering order) -
countHosts
-