Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

V0042JobResNodes

Properties

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

Example

from slurmrest_python.models.v0042_job_res_nodes import V0042JobResNodes

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

# convert the object into a dict
v0042_job_res_nodes_dict = v0042_job_res_nodes_instance.to_dict()
# create an instance of V0042JobResNodes from a dict
v0042_job_res_nodes_from_dict = V0042JobResNodes.from_dict(v0042_job_res_nodes_dict)

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