Package org.cdk8s.plus25.k8s
Class PodFailurePolicyOnExitCodesRequirement.Builder
- java.lang.Object
-
- org.cdk8s.plus25.k8s.PodFailurePolicyOnExitCodesRequirement.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<PodFailurePolicyOnExitCodesRequirement>
- Enclosing interface:
- PodFailurePolicyOnExitCodesRequirement
@Stability(Stable) public static final class PodFailurePolicyOnExitCodesRequirement.Builder extends Object implements software.amazon.jsii.Builder<PodFailurePolicyOnExitCodesRequirement>
A builder forPodFailurePolicyOnExitCodesRequirement
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PodFailurePolicyOnExitCodesRequirementbuild()Builds the configured instance.PodFailurePolicyOnExitCodesRequirement.BuildercontainerName(String containerName)Sets the value ofPodFailurePolicyOnExitCodesRequirement.getContainerName()PodFailurePolicyOnExitCodesRequirement.Builderoperator(String operator)Sets the value ofPodFailurePolicyOnExitCodesRequirement.getOperator()PodFailurePolicyOnExitCodesRequirement.Buildervalues(List<? extends Number> values)Sets the value ofPodFailurePolicyOnExitCodesRequirement.getValues()
-
-
-
Method Detail
-
operator
@Stability(Stable) public PodFailurePolicyOnExitCodesRequirement.Builder operator(String operator)
Sets the value ofPodFailurePolicyOnExitCodesRequirement.getOperator()- Parameters:
operator- Represents the relationship between the container exit code(s) and the specified values. This parameter is required. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are: - In: the requirement is satisfied if at least one container exit code (might be multiple if there are multiple containers not restricted by the 'containerName' field) is in the set of specified values.- NotIn: the requirement is satisfied if at least one container exit code (might be multiple if there are multiple containers not restricted by the 'containerName' field) is not in the set of specified values. Additional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied.
- Returns:
this
-
values
@Stability(Stable) public PodFailurePolicyOnExitCodesRequirement.Builder values(List<? extends Number> values)
Sets the value ofPodFailurePolicyOnExitCodesRequirement.getValues()- Parameters:
values- Specifies the set of values. This parameter is required. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value '0' cannot be used for the In operator. At least one element is required. At most 255 elements are allowed.- Returns:
this
-
containerName
@Stability(Stable) public PodFailurePolicyOnExitCodesRequirement.Builder containerName(String containerName)
Sets the value ofPodFailurePolicyOnExitCodesRequirement.getContainerName()- Parameters:
containerName- Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template.- Returns:
this
-
build
@Stability(Stable) public PodFailurePolicyOnExitCodesRequirement build()
Builds the configured instance.- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<PodFailurePolicyOnExitCodesRequirement>- Returns:
- a new instance of
PodFailurePolicyOnExitCodesRequirement - Throws:
NullPointerException- if any required attribute was not provided
-
-