Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.58 KB

File metadata and controls

50 lines (41 loc) · 2.58 KB

V0042AssocRecSet

Properties

Name Type Description Notes
comment str Arbitrary comment [optional]
defaultqos str Default QOS [optional]
grpjobs V0042Uint32NoValStruct [optional]
grpjobsaccrue V0042Uint32NoValStruct [optional]
grpsubmitjobs V0042Uint32NoValStruct [optional]
grptres List[V0042Tres] [optional]
grptresmins List[V0042Tres] [optional]
grptresrunmins List[V0042Tres] [optional]
grpwall V0042Uint32NoValStruct [optional]
maxjobs V0042Uint32NoValStruct [optional]
maxjobsaccrue V0042Uint32NoValStruct [optional]
maxsubmitjobs V0042Uint32NoValStruct [optional]
maxtresminsperjob List[V0042Tres] [optional]
maxtresrunmins List[V0042Tres] [optional]
maxtresperjob List[V0042Tres] [optional]
maxtrespernode List[V0042Tres] [optional]
maxwalldurationperjob V0042Uint32NoValStruct [optional]
minpriothresh V0042Uint32NoValStruct [optional]
parent str Name of parent account [optional]
priority V0042Uint32NoValStruct [optional]
qoslevel List[str] List of QOS names [optional]
fairshare int Allocated shares used for fairshare calculation [optional]

Example

from slurmrest_python.models.v0042_assoc_rec_set import V0042AssocRecSet

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

# convert the object into a dict
v0042_assoc_rec_set_dict = v0042_assoc_rec_set_instance.to_dict()
# create an instance of V0042AssocRecSet from a dict
v0042_assoc_rec_set_from_dict = V0042AssocRecSet.from_dict(v0042_assoc_rec_set_dict)

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