Class PriorityLevelConfigurationSpec
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.PriorityLevelConfigurationSpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<PriorityLevelConfigurationSpecBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class PriorityLevelConfigurationSpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<PriorityLevelConfigurationSpecBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
PriorityLevelConfigurationSpec specifies the configuration of a priority level.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PriorityLevelConfigurationSpec()No args constructor for use in serializationPriorityLevelConfigurationSpec(LimitedPriorityLevelConfiguration limited, String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PriorityLevelConfigurationSpecBuilderedit()Map<String,Object>getAdditionalProperties()LimitedPriorityLevelConfigurationgetLimited()PriorityLevelConfigurationSpec specifies the configuration of a priority level.StringgetType()`type` indicates whether this priority level is subject to limitation on request execution.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetLimited(LimitedPriorityLevelConfiguration limited)PriorityLevelConfigurationSpec specifies the configuration of a priority level.voidsetType(String type)`type` indicates whether this priority level is subject to limitation on request execution.PriorityLevelConfigurationSpecBuildertoBuilder()
-
-
-
Constructor Detail
-
PriorityLevelConfigurationSpec
public PriorityLevelConfigurationSpec()
No args constructor for use in serialization
-
PriorityLevelConfigurationSpec
public PriorityLevelConfigurationSpec(LimitedPriorityLevelConfiguration limited, String type)
-
-
Method Detail
-
getLimited
public LimitedPriorityLevelConfiguration getLimited()
PriorityLevelConfigurationSpec specifies the configuration of a priority level.
-
setLimited
public void setLimited(LimitedPriorityLevelConfiguration limited)
PriorityLevelConfigurationSpec specifies the configuration of a priority level.
-
getType
public 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.
-
setType
public void setType(String type)
`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.
-
edit
public PriorityLevelConfigurationSpecBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<PriorityLevelConfigurationSpecBuilder>
-
toBuilder
public PriorityLevelConfigurationSpecBuilder toBuilder()
-
-