Package org.cdk8s.plus25.k8s
Interface StatefulSetUpdateStrategy
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
StatefulSetUpdateStrategy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.822Z") @Stability(Stable) public interface StatefulSetUpdateStrategy extends software.amazon.jsii.JsiiSerializable
StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates.It includes any additional parameters necessary to perform the update for the indicated strategy.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classStatefulSetUpdateStrategy.BuilderA builder forStatefulSetUpdateStrategystatic classStatefulSetUpdateStrategy.Jsii$ProxyAn implementation forStatefulSetUpdateStrategy
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static StatefulSetUpdateStrategy.Builderbuilder()default RollingUpdateStatefulSetStrategygetRollingUpdate()RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.default StringgetType()Type indicates the type of the StatefulSetUpdateStrategy.
-
-
-
Method Detail
-
getRollingUpdate
@Stability(Stable) @Nullable default RollingUpdateStatefulSetStrategy getRollingUpdate()
RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
-
getType
@Stability(Stable) @Nullable default String getType()
Type indicates the type of the StatefulSetUpdateStrategy.Default is RollingUpdate.
Default: RollingUpdate.
-
builder
@Stability(Stable) static StatefulSetUpdateStrategy.Builder builder()
- Returns:
- a
StatefulSetUpdateStrategy.BuilderofStatefulSetUpdateStrategy
-
-