Package org.cdk8s.plus24.k8s
Interface StatefulSetUpdateStrategy
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
StatefulSetUpdateStrategy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.79.0 (build b22f628)", date="2023-03-31T02:28:42.054Z") @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 class
StatefulSetUpdateStrategy.Builder
A builder forStatefulSetUpdateStrategy
static class
StatefulSetUpdateStrategy.Jsii$Proxy
An implementation forStatefulSetUpdateStrategy
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static StatefulSetUpdateStrategy.Builder
builder()
default RollingUpdateStatefulSetStrategy
getRollingUpdate()
RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.default String
getType()
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.Builder
ofStatefulSetUpdateStrategy
-
-