> + @Path("/global/operations/{operation}")
> + @OAuthScopes(COMPUTE_SCOPE)
> + @Fallback(NullOnNotFoundOr404.class)
> + void delete(@PathParam("operation") String operationName);
> +
> + /**
> + * @see
> org.jclouds.googlecomputeengine.features.GlobalOperationApi#listAtMarker(String,
> org.jclouds.googlecomputeengine.options.ListOptions)
> + */
> + @Named("GlobalOperations:list")
> + @GET
> + @Path("/global/operations")
> + @OAuthScopes(COMPUTE_READONLY_SCOPE)
> + @Consumes(MediaType.APPLICATION_JSON)
> + @ResponseParser(ParseGlobalOperations.class)
> + @Fallback(EmptyIterableWithMarkerOnNotFoundOr404.class)
> + ListPage<Operation> listFirstPage();
What's the difference between this and `listAtMarker` with a `null` marker
(sorry, didn't look in the impl)?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/16/files#r5362737