mirror of https://github.com/apache/jclouds.git
add ability to reset as opposed to always append to ResourceRecordSet.values
This commit is contained in:
parent
c76c599f77
commit
2095ef5973
|
@ -342,6 +342,16 @@ public class ResourceRecordSet {
|
|||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* replaces current values
|
||||
*
|
||||
* @see ResourceRecordSet#getValues()
|
||||
*/
|
||||
public Builder values(Iterable<String> values) {
|
||||
this.values = ImmutableList.<String> builder().addAll(values);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see ResourceRecordSet#getValues()
|
||||
*/
|
||||
|
@ -385,7 +395,7 @@ public class ResourceRecordSet {
|
|||
} else if (in instanceof Latency) {
|
||||
region(Latency.class.cast(in).region);
|
||||
}
|
||||
return this.name(in.name).type(in.type).ttl(in.ttl.orNull()).addAll(in.values)
|
||||
return this.name(in.name).type(in.type).ttl(in.ttl.orNull()).values(in.values)
|
||||
.aliasTarget(in.aliasTarget.orNull());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue