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

V0044AssocSharesObjWrap

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 V0044Float64NoValStruct [optional]
shares V0044Uint32NoValStruct [optional]
tres V0044AssocSharesObjWrapTres [optional]
effective_usage V0044Float64NoValStruct [optional]
usage_normalized V0044Float64NoValStruct [optional]
usage int Measure of tresbillableunits usage [optional]
fairshare V0044AssocSharesObjWrapFairshare [optional]
type List[str] User or account association [optional]

Example

from slurmrest_python.models.v0044_assoc_shares_obj_wrap import V0044AssocSharesObjWrap

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

# convert the object into a dict
v0044_assoc_shares_obj_wrap_dict = v0044_assoc_shares_obj_wrap_instance.to_dict()
# create an instance of V0044AssocSharesObjWrap from a dict
v0044_assoc_shares_obj_wrap_from_dict = V0044AssocSharesObjWrap.from_dict(v0044_assoc_shares_obj_wrap_dict)

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