Class PriorityLevelConfigurationSpec
- java.lang.Object
-
- com.pulumi.kubernetes.flowcontrol.v1alpha1.outputs.PriorityLevelConfigurationSpec
-
public final class PriorityLevelConfigurationSpec extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PriorityLevelConfigurationSpec.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PriorityLevelConfigurationSpec.Builder
builder()
static PriorityLevelConfigurationSpec.Builder
builder(PriorityLevelConfigurationSpec defaults)
java.util.Optional<LimitedPriorityLevelConfiguration>
limited()
java.lang.String
type()
-
-
-
Method Detail
-
limited
public java.util.Optional<LimitedPriorityLevelConfiguration> limited()
- Returns:
- `limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `"Limited"`.
-
type
public java.lang.String type()
- Returns:
- `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.
-
builder
public static PriorityLevelConfigurationSpec.Builder builder()
-
builder
public static PriorityLevelConfigurationSpec.Builder builder(PriorityLevelConfigurationSpec defaults)
-
-