> */
> @RequestFilters(BasicAuthentication.class)
> @Path("/v{jclouds.api-version}")
> public interface AccountApi {
>
> + public static String GUEST_MASK =
> "children.blockDevices.diskImage.softwareReferences.softwareDescription";
> + public static String LIST_GUEST_MASK =
> "powerState;operatingSystem.passwords;datacenter;billingItem;blockDevices" +
> + ".diskImage;tagReferences";
> +
> + /**
> + * @return an account's associated virtual guest objects.
> + */
> + @Named("Account:listVirtualGuest")
> + @GET
> + @Path("/SoftLayer_Account/VirtualGuests")
> + @QueryParams(keys = "objectMask", values = LIST_GUEST_MASK)
> + @Consumes(MediaType.APPLICATION_JSON)
If all methods use the same media types, move the `@Consumes` annotation to
class level.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r12882748