Package org.jclouds.dynect.v3.features
Interface GeoServiceApi
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeoServiceget(String serviceName)Retrieves information about the specified geo service.com.google.common.collect.FluentIterable<String>list()Lists all geo service names. 
 - 
 
- 
- 
Method Detail
- 
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.JobStillRunningExceptionRetrieves 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
 
 - 
 
 -