| Name |
Type |
Description |
Notes |
| billing_weights |
str |
TRESBillingWeights - Billing weights of each tracked TRES type that will be used in calculating the usage of a job |
[optional] |
| configured |
str |
TRES - Number of each applicable TRES type available in this partition |
[optional] |
from slurmrest_python.models.v0044_partition_info_tres import V0044PartitionInfoTres
# TODO update the JSON string below
json = "{}"
# create an instance of V0044PartitionInfoTres from a JSON string
v0044_partition_info_tres_instance = V0044PartitionInfoTres.from_json(json)
# print the JSON string representation of the object
print(V0044PartitionInfoTres.to_json())
# convert the object into a dict
v0044_partition_info_tres_dict = v0044_partition_info_tres_instance.to_dict()
# create an instance of V0044PartitionInfoTres from a dict
v0044_partition_info_tres_from_dict = V0044PartitionInfoTres.from_dict(v0044_partition_info_tres_dict)
[Back to Model list] [Back to API list] [Back to README]