> +
> +import org.jclouds.json.SerializedNames;
> +
> +import com.google.auto.value.AutoValue;
> +
> +@AutoValue
> +public abstract class CreateServiceKey {
> +
> + public abstract String description();
> +
> + CreateServiceKey() {
> + }
> +
> + @SerializedNames({ "description" })
> + public static CreateServiceKey create(String description) {
> + if (description == null) description = "";
To generate a service key the description field must be passed and at the very
least its value be set to an empty string. It is what it is...
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/149/files#r26167919