Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.41 KB

File metadata and controls

37 lines (28 loc) · 1.41 KB

V0043Qos

Properties

Name Type Description Notes
description str Arbitrary description [optional]
flags List[str] Flags, to avoid modifying current values specify NOT_SET [optional]
id int Unique ID [optional]
limits V0043QosLimits [optional]
name str Name [optional]
preempt V0043QosPreempt [optional]
priority V0043Uint32NoValStruct [optional]
usage_factor V0043Float64NoValStruct [optional]
usage_threshold V0043Float64NoValStruct [optional]

Example

from slurmrest_python.models.v0043_qos import V0043Qos

# TODO update the JSON string below
json = "{}"
# create an instance of V0043Qos from a JSON string
v0043_qos_instance = V0043Qos.from_json(json)
# print the JSON string representation of the object
print(V0043Qos.to_json())

# convert the object into a dict
v0043_qos_dict = v0043_qos_instance.to_dict()
# create an instance of V0043Qos from a dict
v0043_qos_from_dict = V0043Qos.from_dict(v0043_qos_dict)

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