Package org.cdk8s.plus24.k8s
Interface RunAsUserStrategyOptionsV1Beta1
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RunAsUserStrategyOptionsV1Beta1.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-07-08T00:25:14.647Z") @Stability(Stable) public interface RunAsUserStrategyOptionsV1Beta1 extends software.amazon.jsii.JsiiSerializable
RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
RunAsUserStrategyOptionsV1Beta1.Builder
A builder forRunAsUserStrategyOptionsV1Beta1
static class
RunAsUserStrategyOptionsV1Beta1.Jsii$Proxy
An implementation forRunAsUserStrategyOptionsV1Beta1
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static RunAsUserStrategyOptionsV1Beta1.Builder
builder()
default List<IdRangeV1Beta1>
getRanges()
ranges are the allowed ranges of uids that may be used.String
getRule()
rule is the strategy that will dictate the allowable RunAsUser values that may be set.
-
-
-
Method Detail
-
getRule
@Stability(Stable) @NotNull String getRule()
rule is the strategy that will dictate the allowable RunAsUser values that may be set.
-
getRanges
@Stability(Stable) @Nullable default List<IdRangeV1Beta1> getRanges()
ranges are the allowed ranges of uids that may be used.If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.
-
builder
@Stability(Stable) static RunAsUserStrategyOptionsV1Beta1.Builder builder()
-
-