Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.94 KB

File metadata and controls

30 lines (23 loc) · 1.94 KB

V1PriorityLevelConfigurationSpec

PriorityLevelConfigurationSpec specifies the configuration of a priority level.

Properties

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.

Example

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)

[Back to Model list] [Back to API list] [Back to README]