Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.92 KB

File metadata and controls

41 lines (32 loc) · 1.92 KB

V0043AssocSharesObjWrap

Properties

Name Type Description Notes
id int Association ID [optional]
cluster str Cluster name [optional]
name str Share name [optional]
parent str Parent name [optional]
partition str Partition name [optional]
shares_normalized V0043Float64NoValStruct [optional]
shares V0043Uint32NoValStruct [optional]
tres V0043AssocSharesObjWrapTres [optional]
effective_usage V0043Float64NoValStruct [optional]
usage_normalized V0043Float64NoValStruct [optional]
usage int Measure of tresbillableunits usage [optional]
fairshare V0043AssocSharesObjWrapFairshare [optional]
type List[str] User or account association [optional]

Example

from slurmrest_python.models.v0043_assoc_shares_obj_wrap import V0043AssocSharesObjWrap

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

# convert the object into a dict
v0043_assoc_shares_obj_wrap_dict = v0043_assoc_shares_obj_wrap_instance.to_dict()
# create an instance of V0043AssocSharesObjWrap from a dict
v0043_assoc_shares_obj_wrap_from_dict = V0043AssocSharesObjWrap.from_dict(v0043_assoc_shares_obj_wrap_dict)

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