> + * > + * @see <a > href="https://msdn.microsoft.com/en-us/library/azure/dn790546.aspx">docs</a> > + */ > +@Path("/subscriptions/{subscriptionid}") > + > +@QueryParams(keys = "api-version", values = "2015-01-01") > +@RequestFilters(OAuthFilter.class) > +@Consumes(MediaType.APPLICATION_JSON) > +public interface ResourceGroupApi extends Closeable{ > + > + @Named("resourcegroup:list") > + @Path("resourcegroups") > + @SelectJson("value") > + @GET > + @Fallback(EmptyListOnNotFoundOr404.class) > + List<ResourceGroup> list();
I think this operation supports options. jclouds follows this pattern to support paginations and options. For an example see https://github.com/jclouds/jclouds/blob/master/providers/digitalocean2/src/main/java/org/jclouds/digitalocean2/features/DropletApi.java#L81-L116 --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/250/files/f7cc1b437f11378e105bba552e3cfee9d7491872#r57514378
