Package com.yahoo.config.provision.zone
Record Class UpgradePolicy
java.lang.Object
java.lang.Record
com.yahoo.config.provision.zone.UpgradePolicy
This class declares the steps (zones) to follow when upgrading a system. If a step contains multiple zones, those
will be upgraded in parallel.
- Author:
- mpolden
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final record
static final record
An upgrade step, consisting of one or more zones. -
Constructor Summary
ConstructorDescriptionUpgradePolicy
(List<UpgradePolicy.Step> steps) Creates an instance of aUpgradePolicy
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic UpgradePolicy.Builder
builder()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.inverted()
Returns a copy of this with the step order invertedsteps()
Returns the value of thesteps
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
UpgradePolicy
Creates an instance of aUpgradePolicy
record class.- Parameters:
steps
- the value for thesteps
record component
-
-
Method Details
-
inverted
Returns a copy of this with the step order inverted -
builder
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
steps
Returns the value of thesteps
record component.- Returns:
- the value of the
steps
record component
-