Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.89 KB

File metadata and controls

38 lines (29 loc) · 1.89 KB

V0042PartitionInfoMaximums

Properties

Name Type Description Notes
cpus_per_node V0042Uint32NoValStruct [optional]
cpus_per_socket V0042Uint32NoValStruct [optional]
memory_per_cpu int MaxMemPerCPU or MaxMemPerNode [optional]
partition_memory_per_cpu V0042Uint64NoValStruct [optional]
partition_memory_per_node V0042Uint64NoValStruct [optional]
nodes V0042Uint32NoValStruct [optional]
shares int OverSubscribe [optional]
oversubscribe V0042PartitionInfoMaximumsOversubscribe [optional]
time V0042Uint32NoValStruct [optional]
over_time_limit V0042Uint16NoValStruct [optional]

Example

from slurmrest_python.models.v0042_partition_info_maximums import V0042PartitionInfoMaximums

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

# convert the object into a dict
v0042_partition_info_maximums_dict = v0042_partition_info_maximums_instance.to_dict()
# create an instance of V0042PartitionInfoMaximums from a dict
v0042_partition_info_maximums_from_dict = V0042PartitionInfoMaximums.from_dict(v0042_partition_info_maximums_dict)

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