Package org.jclouds.dynect.v3.features
Interface GeoServiceApi
@Path("/Geo")
public interface GeoServiceApi
- See Also:
-
Method Details
-
list
@Named("ListGeoServiceNames") @GET com.google.common.collect.FluentIterable<String> list() throws DynECTExceptions.JobStillRunningExceptionLists all geo service names.- Throws:
DynECTExceptions.JobStillRunningException
- if a different job in the session is still running
-
get
@Named("GetGeoService") @GET @Path("/{serviceName}") @Nullable GeoService get(@PathParam("serviceName") String serviceName) throws DynECTExceptions.JobStillRunningException Retrieves information about the specified geo service.- Parameters:
serviceName
- name of the service to get information about. exapi-prod
- Returns:
- null if not found
- Throws:
DynECTExceptions.JobStillRunningException
- if a different job in the session is still running
-