PriorityLevelConfigurationSpec specifies the configuration of a priority level.
| Name | Type | Description | Notes |
|---|---|---|---|
| exempt | V1ExemptPriorityLevelConfiguration | [optional] | |
| limited | V1LimitedPriorityLevelConfiguration | [optional] | |
| type | str | `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. |
from kubernetes.client.models.v1_priority_level_configuration_spec import V1PriorityLevelConfigurationSpec
# TODO update the JSON string below
json = "{}"
# create an instance of V1PriorityLevelConfigurationSpec from a JSON string
v1_priority_level_configuration_spec_instance = V1PriorityLevelConfigurationSpec.from_json(json)
# print the JSON string representation of the object
print(V1PriorityLevelConfigurationSpec.to_json())
# convert the object into a dict
v1_priority_level_configuration_spec_dict = v1_priority_level_configuration_spec_instance.to_dict()
# create an instance of V1PriorityLevelConfigurationSpec from a dict
v1_priority_level_configuration_spec_from_dict = V1PriorityLevelConfigurationSpec.from_dict(v1_priority_level_configuration_spec_dict)