Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

V0044JobResNodes

Properties

Name Type Description Notes
count int Number of allocated nodes [optional]
select_type List[str] Node scheduling selection method [optional]
list str Node(s) allocated to the job [optional]
whole bool Whether whole nodes were allocated [optional]
allocation List[V0044JobResNode] Job resources for a node [optional]

Example

from slurmrest_python.models.v0044_job_res_nodes import V0044JobResNodes

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

# convert the object into a dict
v0044_job_res_nodes_dict = v0044_job_res_nodes_instance.to_dict()
# create an instance of V0044JobResNodes from a dict
v0044_job_res_nodes_from_dict = V0044JobResNodes.from_dict(v0044_job_res_nodes_dict)

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