Package org.cdk8s.plus24.k8s
Interface PriorityLevelConfigurationSpecV1Beta1
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PriorityLevelConfigurationSpecV1Beta1.Jsii$Proxy
@Generated(value="jsii-pacmak/1.68.0 (build b45f2f6)", date="2022-09-25T03:33:25.807Z") @Stability(Stable) public interface PriorityLevelConfigurationSpecV1Beta1 extends software.amazon.jsii.JsiiSerializable
PriorityLevelConfigurationSpec specifies the configuration of a priority level.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PriorityLevelConfigurationSpecV1Beta1.Builder
A builder forPriorityLevelConfigurationSpecV1Beta1
static class
PriorityLevelConfigurationSpecV1Beta1.Jsii$Proxy
An implementation forPriorityLevelConfigurationSpecV1Beta1
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static PriorityLevelConfigurationSpecV1Beta1.Builder
builder()
default LimitedPriorityLevelConfigurationV1Beta1
getLimited()
`limited` specifies how requests are handled for a Limited priority level.String
getType()
`type` indicates whether this priority level is subject to limitation on request execution.
-
-
-
Method Detail
-
getType
@Stability(Stable) @NotNull String getType()
`type` indicates whether this priority level is subject to limitation on request execution.A value of
"Exempt"
means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of"Limited"
means that (a) requests of this priority level are subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.
-
getLimited
@Stability(Stable) @Nullable default LimitedPriorityLevelConfigurationV1Beta1 getLimited()
`limited` specifies how requests are handled for a Limited priority level.This field must be non-empty if and only if
type
is"Limited"
.
-
builder
@Stability(Stable) static PriorityLevelConfigurationSpecV1Beta1.Builder builder()
-
-