| Name |
Type |
Description |
Notes |
| count |
int |
Number of nodes in the job step |
[optional] |
| range |
str |
Node(s) allocated to the job step |
[optional] |
| list |
List[str] |
|
[optional] |
from slurmrest_python.models.v0044_step_nodes import V0044StepNodes
# TODO update the JSON string below
json = "{}"
# create an instance of V0044StepNodes from a JSON string
v0044_step_nodes_instance = V0044StepNodes.from_json(json)
# print the JSON string representation of the object
print(V0044StepNodes.to_json())
# convert the object into a dict
v0044_step_nodes_dict = v0044_step_nodes_instance.to_dict()
# create an instance of V0044StepNodes from a dict
v0044_step_nodes_from_dict = V0044StepNodes.from_dict(v0044_step_nodes_dict)
[Back to Model list] [Back to API list] [Back to README]