Skip to content

Latest commit

 

History

History
75 lines (66 loc) · 4.33 KB

File metadata and controls

75 lines (66 loc) · 4.33 KB

V0043Job

Properties

Name Type Description Notes
account str Account the job ran under [optional]
comment V0041OpenapiSlurmdbdJobsRespJobsInnerComment [optional]
allocation_nodes int List of nodes allocated to the job [optional]
array V0043JobArray [optional]
association V0043AssocShort [optional]
block str The name of the block to be used (used with Blue Gene systems) [optional]
cluster str Cluster name [optional]
constraints str Feature(s) the job requested as a constraint [optional]
container str Absolute path to OCI container bundle [optional]
derived_exit_code V0043ProcessExitCodeVerbose [optional]
time V0043JobTime [optional]
exit_code V0043ProcessExitCodeVerbose [optional]
extra str Arbitrary string used for node filtering if extra constraints are enabled [optional]
failed_node str Name of node that caused job failure [optional]
flags List[str] Flags associated with this job [optional]
group str Group ID of the user that owns the job [optional]
het V0043JobHet [optional]
job_id int Job ID [optional]
name str Job name [optional]
licenses str License(s) required by the job [optional]
mcs V0041OpenapiSlurmdbdJobsRespJobsInnerMcs [optional]
nodes str Node(s) allocated to the job [optional]
partition str Partition assigned to the job [optional]
hold bool Hold (true) or release (false) job (Job held) [optional]
priority V0043Uint32NoValStruct [optional]
qos str Quality of Service assigned to the job [optional]
qosreq str Requested QOS [optional]
required V0043JobRequired [optional]
kill_request_user str User ID that requested termination of the job [optional]
restart_cnt int How many times this job has been requeued/restarted [optional]
reservation V0044JobReservation [optional]
script str Job batch script; only the first component in a HetJob is populated or honored [optional]
segment_size int Requested segment size [optional]
stdin_expanded str Job stdin with expanded fields [optional]
stdout_expanded str Job stdout with expanded fields [optional]
stderr_expanded str Job stderr with expanded fields [optional]
stdout str Path to stdout file [optional]
stderr str Path to stderr file [optional]
stdin str Path to stdin file [optional]
state V0041OpenapiSlurmdbdJobsRespJobsInnerState [optional]
steps List[V0043Step] [optional]
submit_line str Command used to submit the job [optional]
tres V0043JobTres [optional]
used_gres str Generic resources used by job [optional]
user str User that owns the job [optional]
wckey V0043WckeyTagStruct [optional]
working_directory str Path to current working directory [optional]

Example

from slurmrest_python.models.v0043_job import V0043Job

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

# convert the object into a dict
v0043_job_dict = v0043_job_instance.to_dict()
# create an instance of V0043Job from a dict
v0043_job_from_dict = V0043Job.from_dict(v0043_job_dict)

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