> +
> +/**
> + * Autoscale Group.
> + * This domain object contains information about an autoscaling group.
> + *
> + * @author Zack Shoylev
> + */
> +
> +public class Group {
> + private final String id;
> + private final ImmutableList<Link> links;
> + private final ImmutableList<ScalingPolicyResponse> scalingPolicy;
> + private final GroupConfiguration groupConfiguration;
> + private final LaunchConfiguration launchConfiguration;
> +
> + protected Group(String id, ImmutableList<Link> links,
> ImmutableList<ScalingPolicyResponse> scalingPolicy, GroupConfiguration
> groupConfiguration, LaunchConfiguration launchConfiguration) {
Technically, no (because of the response parser). It is not built directly by
gson (which is why I think the contructor properties are needed?). Should I add
those anyways?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/22/files#r6023388