Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.92 KB

File metadata and controls

45 lines (36 loc) · 1.92 KB

V0042Assoc

Properties

Name Type Description Notes
accounting List[V0042Accounting] [optional]
account str Account name [optional]
cluster str Cluster name [optional]
comment str Arbitrary comment [optional]
default V0041OpenapiSlurmdbdConfigRespAssociationsInnerDefault [optional]
flags List[str] [optional]
max V0042AssocMax [optional]
id int Unique ID [optional]
is_default bool Is default association for user [optional]
lineage str Complete path up the hierarchy to the root association [optional]
min V0042AssocMin [optional]
parent_account str Name of parent account [optional]
partition str Partition name [optional]
priority V0042Uint32NoValStruct [optional]
qos List[str] List of QOS names [optional]
shares_raw int Allocated shares used for fairshare calculation [optional]
user str User name

Example

from slurmrest_python.models.v0042_assoc import V0042Assoc

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

# convert the object into a dict
v0042_assoc_dict = v0042_assoc_instance.to_dict()
# create an instance of V0042Assoc from a dict
v0042_assoc_from_dict = V0042Assoc.from_dict(v0042_assoc_dict)

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