Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

V0044JobResNode

Properties

Name Type Description Notes
index int Node index
name str Node name
cpus V0041OpenapiJobInfoRespJobsInnerJobResourcesNodesAllocationInnerCpus [optional]
memory V0041OpenapiJobInfoRespJobsInnerJobResourcesNodesAllocationInnerMemory [optional]
sockets List[V0044JobResSocket]

Example

from slurmrest_python.models.v0044_job_res_node import V0044JobResNode

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

# convert the object into a dict
v0044_job_res_node_dict = v0044_job_res_node_instance.to_dict()
# create an instance of V0044JobResNode from a dict
v0044_job_res_node_from_dict = V0044JobResNode.from_dict(v0044_job_res_node_dict)

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