Package org.cdk8s.plus23.k8s
Interface RunAsGroupStrategyOptionsV1Beta1
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RunAsGroupStrategyOptionsV1Beta1.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.652Z") @Stability(Stable) public interface RunAsGroupStrategyOptionsV1Beta1 extends software.amazon.jsii.JsiiSerializable
RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
RunAsGroupStrategyOptionsV1Beta1.Builder
A builder forRunAsGroupStrategyOptionsV1Beta1
static class
RunAsGroupStrategyOptionsV1Beta1.Jsii$Proxy
An implementation forRunAsGroupStrategyOptionsV1Beta1
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static RunAsGroupStrategyOptionsV1Beta1.Builder
builder()
default List<IdRangeV1Beta1>
getRanges()
ranges are the allowed ranges of gids that may be used.String
getRule()
rule is the strategy that will dictate the allowable RunAsGroup values that may be set.
-
-
-
Method Detail
-
getRule
@Stability(Stable) @NotNull String getRule()
rule is the strategy that will dictate the allowable RunAsGroup values that may be set.
-
getRanges
@Stability(Stable) @Nullable default List<IdRangeV1Beta1> getRanges()
ranges are the allowed ranges of gids that may be used.If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.
-
builder
@Stability(Stable) static RunAsGroupStrategyOptionsV1Beta1.Builder builder()
-
-