> +   @Consumes(MediaType.APPLICATION_JSON)
> +   @Fallback(NullOnNotFoundOr404.class)
> +   @MapBinder(BindCreateGroupToJson.class)
> +   @ResponseParser(ParseGroupResponse.class)
> +   Group create(@PayloadParam("groupConfiguration") GroupConfiguration 
> groupConfiguration, 
> +         @PayloadParam("launchConfiguration") LaunchConfiguration 
> launchConfiguration,
> +         @PayloadParam("scalingPolicies") List<ScalingPolicy> 
> scalingPolicies);
> +
> +   /**
> +    * This operation pauses the specified Autoscaling Group
> +    *
> +    * @param groupId The id for the specified Group.
> +    * @return true if successful.
> +    * @see GroupApi#resume(String)
> +    */
> +   @Named("Groups:pause/{id}")

This is the name of the property used to configure the timeout for this method, 
and AFAIK, the `{id}` is not substituted in this annotation. Do we want users 
to configure something like `jclouds.timeouts.Groups:pause/{id} = 1000`, or 
should the `{id}` be removed from the name?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/22/files#r6019318

Reply via email to