Package org.cdk8s.plus24.k8s
Interface RuntimeClassStrategyOptionsV1Beta1
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RuntimeClassStrategyOptionsV1Beta1.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-06T02:54:45.998Z") @Stability(Stable) public interface RuntimeClassStrategyOptionsV1Beta1 extends software.amazon.jsii.JsiiSerializable
RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRuntimeClassStrategyOptionsV1Beta1.BuilderA builder forRuntimeClassStrategyOptionsV1Beta1static classRuntimeClassStrategyOptionsV1Beta1.Jsii$ProxyAn implementation forRuntimeClassStrategyOptionsV1Beta1
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static RuntimeClassStrategyOptionsV1Beta1.Builderbuilder()List<String>getAllowedRuntimeClassNames()allowedRuntimeClassNames is an allowlist of RuntimeClass names that may be specified on a pod.default StringgetDefaultRuntimeClassName()defaultRuntimeClassName is the default RuntimeClassName to set on the pod.
-
-
-
Method Detail
-
getAllowedRuntimeClassNames
@Stability(Stable) @NotNull List<String> getAllowedRuntimeClassNames()
allowedRuntimeClassNames is an allowlist of RuntimeClass names that may be specified on a pod.A value of "*" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.
-
getDefaultRuntimeClassName
@Stability(Stable) @Nullable default String getDefaultRuntimeClassName()
defaultRuntimeClassName is the default RuntimeClassName to set on the pod.The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.
-
builder
@Stability(Stable) static RuntimeClassStrategyOptionsV1Beta1.Builder builder()
-
-