Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.09 KB

File metadata and controls

37 lines (28 loc) · 2.09 KB

V0041OpenapiSlurmdbdConfigRespQosInner

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 V0041OpenapiSlurmdbdConfigRespQosInnerLimits [optional]
name str Name [optional]
preempt V0041OpenapiSlurmdbdConfigRespQosInnerPreempt [optional]
priority V0041OpenapiSlurmdbdConfigRespQosInnerPriority [optional]
usage_factor V0041OpenapiSlurmdbdConfigRespQosInnerUsageFactor [optional]
usage_threshold V0041OpenapiSlurmdbdConfigRespQosInnerUsageThreshold [optional]

Example

from slurmrest_python.models.v0041_openapi_slurmdbd_config_resp_qos_inner import V0041OpenapiSlurmdbdConfigRespQosInner

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

# convert the object into a dict
v0041_openapi_slurmdbd_config_resp_qos_inner_dict = v0041_openapi_slurmdbd_config_resp_qos_inner_instance.to_dict()
# create an instance of V0041OpenapiSlurmdbdConfigRespQosInner from a dict
v0041_openapi_slurmdbd_config_resp_qos_inner_from_dict = V0041OpenapiSlurmdbdConfigRespQosInner.from_dict(v0041_openapi_slurmdbd_config_resp_qos_inner_dict)

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