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
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic final recordAn upgrade step, consisting of one or more zones. -
Constructor Summary
ConstructorsConstructorDescriptionUpgradePolicy(List<UpgradePolicy.Step> steps) Creates an instance of aUpgradePolicyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic UpgradePolicy.Builderbuilder()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.inverted()Returns a copy of this with the step order invertedsteps()Returns the value of thestepsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
UpgradePolicy
Creates an instance of aUpgradePolicyrecord class.- Parameters:
steps- the value for thestepsrecord 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 thestepsrecord component.- Returns:
- the value of the
stepsrecord component
-